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
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+value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#shadow-offset-x +1 +1 +box-shadow-offset - 1st 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 +value +css-borders-4 +css-borders +4 +current +https://drafts.csswg.org/css-borders-4/#shadow-offset-y +1 +1 +box-shadow-offset - 2nd 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 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 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 - - -type -css-color-4 -css-color -4 -current -https://drafts.csswg.org/css-color-4/#typedef-absolute-color-base -1 -1 -- - -type -css-color-5 -css-color -5 -current -https://drafts.csswg.org/css-color-5/#typedef-absolute-color-base -1 -1 -- - -type -css-color-4 -css-color -4 -snapshot -https://www.w3.org/TR/css-color-4/#typedef-absolute-color-base -1 -1 -- - -type -css-color-4 -css-color + +dfn +mathml4 +mathml 4 current -https://drafts.csswg.org/css-color-4/#typedef-absolute-color-function -1 -1 -- - -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 - - -type -css-color-4 -css-color + +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 - @@ -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 + - 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 + - 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 + - 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 + - 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 + + - 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 + + - 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 + + - 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 + + - 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 + - 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 + - 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 -- - -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 + - 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 -- - -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 + - 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 + - aliceblue dfn @@ -1391,6 +1415,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-aliceblue 1 1 + - 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 +< > - 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 +< > - 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 - -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 - type @@ -179,6 +189,16 @@ https://drafts.csswg.org/css-anchor-position-1/#typedef-anchor-side 1 1 - + +type +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#typedef-anchor-side +1 +1 +- 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 +- + +type +css-anchor-position-1 +css-anchor-position +1 +snapshot +https://www.w3.org/TR/css-anchor-position-1/#typedef-anchor-size +1 +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_and + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_and + 1 - @@ -261,15 +311,24 @@ https://drafts.csswg.org/css-values-4/#angle-value 1 - -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 +- + +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 - value @@ -380,26 +439,6 @@ css-will-change snapshot https://www.w3.org/TR/css-will-change-1/#typedef-animateable-feature 1 -1 -- - -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-annotation-xml - -1 -- - -dfn -mathml-core -mathml-core -1 -snapshot -https://www.w3.org/TR/mathml-core/#dfn-annotation - 1 - @@ -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( ) 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 + +- +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 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 + - antiquewhite dfn @@ -4577,6 +5281,18 @@ https://www.w3.org/TR/css-color-4/#valdef-color-antiquewhite 1 1 + +- +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 @@ + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_apply + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_apply + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_approx + +1 +- + +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 + + - 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 + + - 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 + - aqua value @@ -50,6 +51,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-aqua 1 1 + - aquamarine dfn @@ -71,6 +73,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-aquamarine 1 1 + - aquamarine dfn @@ -92,4 +95,5 @@ https://www.w3.org/TR/css-color-4/#valdef-color-aquamarine 1 1 + - 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() - + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arccos + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arccos + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arccosh + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arccosh + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arccot + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arccot + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arccoth + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arccoth + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arccsc + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arccsc + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arccsch + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arccsch + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arcsec + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arcsec + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arcsech + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arcsech + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arcsin + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arcsin + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arcsinh + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arcsinh + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arctan + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arctan + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arctanh + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_arctanh + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_arg + +1 +- + +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 - +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 -- type css-syntax-3 @@ -70,6 +60,16 @@ https://www.w3.org/TR/css-syntax-3/#typedef-at-keyword-token 1 1 - + +type +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#typedef-at-rule-list +1 +1 +- type css-conditional-values-1 @@ -138,6 +138,16 @@ selectors snapshot https://www.w3.org/TR/selectors-4/#typedef-attr-modifier +1 +- + +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-attr-name +1 1 - @@ -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 +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 + +- +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 - + +type +css-text-4 +css-text +4 +snapshot +https://www.w3.org/TR/css-text-4/#typedef-autospace +1 +1 +- + +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 + +- +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 -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( ) -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( ) -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 + - azure dfn @@ -181,4 +202,5 @@ https://www.w3.org/TR/css-color-4/#valdef-color-azure 1 1 + - 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 + + - 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 + + - 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 + - beige dfn @@ -964,6 +1172,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-beige 1 1 + - 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 - type +css-backgrounds-4 +css-backgrounds +4 +current +https://drafts.csswg.org/css-backgrounds-4/#typedef-bg-position +1 +1 +- + +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 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_bind + +1 +- + +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 + - bisque dfn @@ -1834,38 +2427,27 @@ https://www.w3.org/TR/css-color-4/#valdef-color-bisque 1 1 + - -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 - + +type +css-syntax-3 +css-syntax +3 +current +https://drafts.csswg.org/css-syntax-3/#typedef-block-contents +1 +1 +- + +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 + - black value @@ -863,6 +1052,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-black 1 1 + - black dfn @@ -895,6 +1085,7 @@ https://drafts.csswg.org/css-color-4/#valdef-color-blanchedalmond 1 1 + - blanchedalmond dfn @@ -916,6 +1107,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-blanchedalmond 1 1 + - 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 + - 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 + +- +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 + +- +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 + +- +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 + +- +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 + +- +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 + +- +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 + +- +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 + - blue value @@ -3926,6 +4554,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-blue 1 1 + - 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 + - blueviolet dfn @@ -4043,6 +4695,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-blueviolet 1 1 + - 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 - + +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-bool-and +1 +1 +- + +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-bool-in-parens +1 +1 +- + +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-bool-not +1 +1 +- + +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-bool-or +1 +1 +- + +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-bool-test +1 +1 +- type css-conditional-values-1 @@ -149,6 +211,26 @@ https://drafts.csswg.org/css-conditional-values-1/#typedef-boolean-constant 1 1 - + +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-boolean-without-or +1 +1 +- + +type +css-values-4 +css-values +4 +current +https://drafts.csswg.org/css-values-4/#typedef-boolean +1 +1 +- type css22 @@ -159,6 +241,26 @@ https://drafts.csswg.org/css2/#value-def-border-style 1 1 - + +dfn +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-border-style +1 +1 +- + +dfn +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-border-style +1 +1 +- type css22 @@ -169,6 +271,26 @@ https://drafts.csswg.org/css2/#value-def-border-width 1 1 - + +type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/box.html#value-def-border-width +1 +1 +- + +type +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/box.html#value-def-border-width +1 +1 +- type css22 @@ -192,6 +314,26 @@ clip - type +css2 +css +1 +current +https://www.w3.org/TR/CSS21/visufx.html#value-def-bottom +1 +1 +- + +type +css2 +css +1 +snapshot +https://www.w3.org/TR/CSS21/visufx.html#value-def-bottom +1 +1 +- + +type css-masking-1 css-masking 1 @@ -203,21 +345,41 @@ clip - 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 - type -css-backgrounds-3 -css-backgrounds +css-box-4 +css-box +4 +current +https://drafts.csswg.org/css-box-4/#typedef-box +1 +1 +- + +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 +- + +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 - -- -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 + +- +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 + + + + - border-box value @@ -2363,8 +2907,12 @@ https://drafts.csswg.org/css-box-4/#valdef-box-border-box 1 1 + + + + - border-box value @@ -2498,8 +3046,12 @@ https://www.w3.org/TR/css-box-3/#valdef-box-border-box 1 1 + + + + - border-box value @@ -2511,8 +3063,12 @@ https://www.w3.org/TR/css-box-4/#valdef-box-border-box 1 1 + + + + - 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 + - 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 + +- +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 + - brown dfn @@ -1211,14 +1422,26 @@ https://www.w3.org/TR/css-color-4/#valdef-color-brown 1 1 + - 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 + - burlywood dfn @@ -1748,6 +2038,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-burlywood 1 1 + - 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 + - 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 + - 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 + - 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 + - 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 + + - 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 + + +- +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 + + - 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 + + - 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 + - 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 + - +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 @@ + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_bvar + +1 +- + +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 - - + 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 - - + 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 +- + +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 - + +type +css-values-5 +css-values +5 +current +https://drafts.csswg.org/css-values-5/#typedef-calc-size-basis +1 +1 +- type css-values-3 @@ -227,6 +258,46 @@ css-values snapshot https://www.w3.org/TR/css-values-4/#typedef-calc-value 1 +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_card + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_card + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_cartesianproduct + +1 +- + +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 + - cadetblue dfn @@ -1455,6 +1704,7 @@ https://www.w3.org/TR/css-color-4/#valdef-color-cadetblue 1 1 + - 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 + - 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 + - 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 + - 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 + - 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 +< > - 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 +< > - 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 + +- +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 + + - 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 + + - 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 + + +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_cbytes + +1 +- + +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 - + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_ceiling + +1 +- + +dfn +mathml4 +mathml +4 +snapshot +https://www.w3.org/TR/mathml4/#contm_ceiling + +1 +- + +dfn +mathml4 +mathml +4 +current +https://w3c.github.io/mathml/#contm_cerror + +1 +- + +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 +