From bad0fe6a25e9fe29eb393341f57392d9df8ba11f Mon Sep 17 00:00:00 2001 From: reffy-bot <> Date: Fri, 11 Oct 2024 12:55:22 +0000 Subject: [PATCH] Update of TR report from new reffy run Using reffy commit 17.2.7. --- tr/algorithms/appmanifest.json | 203 +++++++++++--- tr/dfns/appmanifest.json | 266 +++++++++++++++++- tr/dfns/webrtc.json | 265 +++--------------- tr/headings/appmanifest.json | 35 ++- tr/ids/appmanifest.json | 495 ++++++++++++++++++++++----------- tr/index.json | 10 +- tr/links/appmanifest.json | 15 +- tr/refs/appmanifest.json | 10 +- 8 files changed, 852 insertions(+), 447 deletions(-) diff --git a/tr/algorithms/appmanifest.json b/tr/algorithms/appmanifest.json index 46a497444fa0..1b1d9818bcb8 100644 --- a/tr/algorithms/appmanifest.json +++ b/tr/algorithms/appmanifest.json @@ -43,7 +43,7 @@ "html": "If calling IsStructurallyValidLanguageTag\n with json[\"lang\"] returns false, return." }, { - "html": "Set manifest[\"lang\"] to the result of calling the\n CanonicalizeUnicodeLocaleId\n abstract operation with json[\"lang\"]." + "html": "Set manifest[\"lang\"] to the result of calling the\n CanonicalizeUnicodeLocaleId\n abstract operation with json[\"lang\"]." } ] }, @@ -231,7 +231,7 @@ "html": "Let processedShortcuts be a new list." }, { - "html": "Set manifest[\"shortcuts\"] to processedShortcuts." + "html": "Set manifest[\"shortcuts\"] to processedShortcuts." }, { "html": "If json[\"shortcuts\"] doesn't exist or\n json[\"shortcuts\"] is not a list, return." @@ -241,7 +241,7 @@ "rationale": "let", "steps": [ { - "html": "Let shortcut be process a shortcut with\n entry and manifest[\"scope\"]." + "html": "Let shortcut be process a shortcut with\n entry, manifest URL, manifest[\"scope\"], and\n manifest[\"dir\"]." }, { "html": "If shortcut is failure, continue." @@ -253,26 +253,140 @@ } ] }, + { + "name": "process a *_localized text member", + "href": "https://www.w3.org/TR/appmanifest/#dfn-process-a-_localized-text-member", + "html": "To process a *_localized text member, given ordered map json, ordered map map,\n string member, and text-direction\n defaultDirection:", + "rationale": ".algorithm", + "steps": [ + { + "html": "If member does not exist in json, return." + }, + { + "html": "Let languageMap be json[member]." + }, + { + "html": "If languageMap is not an ordered map, return." + }, + { + "html": "Let languageTags be the keys of\n languageMap." + }, + { + "html": "Set map[member] to a new ordered map." + }, + { + "html": "For each languageTag of languageTags, run\n process a localized text object, passing\n languageMap[languageTag], languageTag, map, member, and\n defaultDirection." + } + ] + }, + { + "name": "process a localized text object", + "href": "https://www.w3.org/TR/appmanifest/#dfn-process-a-localized-text-object", + "html": "To process a localized text object, given string or\n ordered map localizedValue, string\n defaultLanguageTag, ordered map map,\n string member, and text-direction\n defaultDirection:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let normalizedValue be an ordered map." + }, + { + "html": "If localizedValue is a string, strip leading and trailing ASCII whitespace from localizedValue and\n set normalizedValue[\"value\"] to localizedValue." + }, + { + "html": "If localizedValue is an ordered map:", + "rationale": "if", + "steps": [ + { + "html": "If \"value\" exists in localizedValue and\n localizedValue[\"value\"] is a string, strip leading and trailing ASCII whitespace from localizedValue[\"value\"] and\n set normalizedValue[\"value\"] to\n localizedValue[\"value\"]." + }, + { + "html": "If \"lang\" exists in localizedValue and\n localizedValue[\"lang\"] is a string, strip leading and trailing ASCII whitespace from localizedValue[\"lang\"] and\n set normalizedValue[\"lang\"] to\n localizedValue[\"lang\"]." + }, + { + "html": "If \"dir\" exists in localizedValue and\n localizedValue[\"dir\"] is a string:", + "rationale": "strip", + "steps": [ + { + "html": "Strip leading and trailing ASCII whitespace from\n localizedValue[\"dir\"]." + }, + { + "html": "If text-direction list contains\n localizedValue[\"dir\"], set\n normalizedValue[\"dir\"] to localizedValue[\"dir\"]." + } + ] + } + ] + }, + { + "html": "If \"value\" does not exist in normalizedValue, return." + }, + { + "html": "If \"lang\" does not exist in normalizedValue,\n set normalizedValue[\"lang\"] to defaultLanguageTag." + }, + { + "html": "If \"dir\" does not exist in normalizedValue,\n set normalizedValue[\"dir\"] to defaultDirection." + }, + { + "html": "If calling IsStructurallyValidLanguageTag\n with normalizedValue[\"lang\"] or calling IsStructurallyValidLanguageTag\n with defaultLanguageTag returns false, return." + }, + { + "html": "Set map[member][defaultLanguageTag] to\n normalizedValue." + } + ] + }, + { + "name": "process a *_localized image resource member", + "href": "https://www.w3.org/TR/appmanifest/#dfn-process-a-_localized-image-resource-member", + "html": "To process a *_localized image resource member, given\n ordered map json, ordered map map, string member, and URL manifest URL:", + "rationale": ".algorithm", + "steps": [ + { + "html": "If member does not exist in json, return." + }, + { + "html": "Let languageMap be json[member]." + }, + { + "html": "If languageMap is not an ordered map, return." + }, + { + "html": "Let languageTags be the keys of\n languageMap." + }, + { + "html": "Set map[member] to a new ordered map." + }, + { + "html": "For each languageTag of languageTags:", + "rationale": "if", + "steps": [ + { + "html": "If calling IsStructurallyValidLanguageTag\n with languageTag returns false, continue." + }, + { + "html": "Run process image resources, passing\n languageMap[languageTag] as the list of image resources, map[member], manifest URL, and languageTag\n as the member." + } + ] + } + ] + }, { "name": "Document/processed manifest", "href": "https://www.w3.org/TR/appmanifest/#dfn-processed-manifest", - "html": "The steps for processing a manifest are given by the following\n algorithm. The algorithm takes a URL document URL, a\n URL manifest URL, and a byte sequence bodyBytes.", + "html": "The steps for processing a manifest are given by the following\n algorithm. The algorithm takes a URL document URL, a\n URL manifest URL, and a byte sequence bodyBytes.", "rationale": ".algorithm", "steps": [ { "html": "Let json be the result of parse JSON bytes to an Infra value passing bodyBytes." }, { - "html": "If the json is a parsing exception, or json is not an\n ordered map:", + "html": "If the json is a parsing exception, or json is not an\n ordered map:", "rationale": "set", "steps": [ { - "html": "Set json to an empty ordered map." + "html": "Set json to an empty ordered map." } ] }, { - "html": "Let manifest be an empty ordered map." + "html": "Let manifest be an empty ordered map." }, { "html": "Process the dir member passing json and manifest." @@ -283,9 +397,15 @@ { "html": "Process a text member passing json, manifest, and\n \"name\"." }, + { + "html": "Process a *_localized text member passing json,\n manifest, \"name_localized\", and manifest[\"dir\"]." + }, { "html": "Process a text member passing json, manifest, and\n \"short_name\"." }, + { + "html": "Process a *_localized text member passing json,\n manifest, \"short_name_localized\", and manifest[\"dir\"]." + }, { "html": "Process the start_url member passing json, manifest,\n manifest URL, and document URL." }, @@ -308,7 +428,10 @@ "html": "Process the display member passing json and manifest." }, { - "html": "Process image resources passing json[\"icons\"],\n manifest, manifest URL, and \"icons\"." + "html": "Process image resources passing json[\"icons\"],\n manifest, manifest URL, and \"icons\"." + }, + { + "html": "Process a *_localized image resource member passing\n json, manifest, \"icons_localized\", and manifest URL." }, { "html": "Process the orientation member passing json,\n manifest." @@ -330,14 +453,14 @@ { "name": "process a color member", "href": "https://www.w3.org/TR/appmanifest/#dfn-process-a-color-member", - "html": "To process a color member, using ordered map\n json, ordered map map, and\n string member:", + "html": "To process a color member, using ordered map\n json, ordered map map, and\n string member:", "rationale": ".algorithm", "steps": [ { - "html": "If json[member] doesn't exist or json[member] is\n not a string, return." + "html": "If json[member] doesn't exist or json[member] is\n not a string, return." }, { - "html": "Strip leading and trailing ASCII whitespace from\n json[member]." + "html": "Strip leading and trailing ASCII whitespace from\n json[member]." }, { "html": "Let color be the result of parsing the value of\n json[member] as a CSS color." @@ -359,14 +482,14 @@ { "name": "process a text member", "href": "https://www.w3.org/TR/appmanifest/#dfn-process-a-text-member", - "html": "To process a text member, given ordered map\n json, ordered map map, and\n string member:", + "html": "To process a text member, given ordered map\n json, ordered map map, and\n string member:", "rationale": ".algorithm", "steps": [ { - "html": "If json[member] doesn't exists or json[member]\n is not a string, return." + "html": "If json[member] doesn't exists or json[member]\n is not a string, return." }, { - "html": "Strip leading and trailing ASCII whitespace from\n json[member]." + "html": "Strip leading and trailing ASCII whitespace from\n json[member]." }, { "html": "Set map[member] to the value of json[member]." @@ -376,11 +499,11 @@ { "name": "determine the purpose of an image", "href": "https://www.w3.org/TR/appmanifest/#dfn-determine-the-purpose-of-an-image", - "html": "To determine the purpose of an image, given ordered map json:", + "html": "To determine the purpose of an image, given ordered map json:", "rationale": ".algorithm", "steps": [ { - "html": "If json[\"purpose\"] doesn't exist or if\n json[\"purpose\"] is not a string:", + "html": "If json[\"purpose\"] doesn't exist or if\n json[\"purpose\"] is not a string:", "rationale": "return", "steps": [ { @@ -395,11 +518,11 @@ "html": "Let purposes be new set." }, { - "html": "For each keyword of \">keywords:", + "html": "For each keyword of \">keywords:", "rationale": "if", "steps": [ { - "html": "If icon purposes list doesn't contain keyword,\n then continue." + "html": "If icon purposes list doesn't contain keyword,\n then continue." }, { "html": "Otherwise, append keyword to purposes." @@ -417,33 +540,33 @@ { "name": "process image resources", "href": "https://www.w3.org/TR/appmanifest/#dfn-process-image-resources", - "html": "To process image resources, given list images,\n ordered map map, manifest URL and string\n member:", + "html": "To process image resources, given list images,\n ordered map map, manifest URL and string\n member:", "rationale": ".algorithm", "steps": [ { - "html": "Let \">imageResources be a new\n list." + "html": "Let \">imageResources be a new\n list." }, { "html": "Set map[member] to \">imageResources." }, { - "html": "If images is not list, return." + "html": "If images is not list, return." }, { - "html": "For each potential image of\n images:", + "html": "For each potential image of\n images:", "rationale": "let", "steps": [ { "html": "Let image be the result of running process an image resource from JSON given potential image and manifest\n URL." }, { - "html": "If image is failure, continue." + "html": "If image is failure, continue." }, { "html": "Let purposes be determine the purpose of an image\n passing potential image." }, { - "html": "If purposes is failure, continue." + "html": "If purposes is failure, continue." }, { "html": "Set image[\"purpose\"] to purposes." @@ -458,14 +581,14 @@ { "name": "process a shortcut", "href": "https://www.w3.org/TR/appmanifest/#dfn-process-a-shortcut", - "html": "To process a shortcut, given ordered map item and scope,:", + "html": "To process a shortcut, given ordered map item, URL manifest URL, URL scope, and\n text-direction defaultDirection:", "rationale": ".algorithm", "steps": [ { - "html": "Return failure if it's the case that:\n " + "html": "Return failure if it's the case that:\n " }, { - "html": "Let url be the result of parsing\n item[\"url\"] with manifest URL as the base URL." + "html": "Let url be the result of parsing\n item[\"url\"] with manifest URL as the base URL." }, { "html": "If url is failure, return failure." @@ -477,7 +600,25 @@ "html": "Let shortcut be ordered map «[ \"url\" → url,\n \"name\" → item[\"name\"] ]»." }, { - "html": "Process image resources passing item[\"icons\"], shortcut,\n manifest URL, and \"icons\"." + "html": "Process a *_localized text member passing item,\n shortcut, \"name_localized\", and defaultDirection." + }, + { + "html": "If \"short_name\" exists in item, and\n item[\"short_name\"] is a string, set\n shortcut[\"short_name\"] to item[\"short_name\"]." + }, + { + "html": "Process a *_localized text member passing item,\n shortcut, \"short_name_localized\", and defaultDirection." + }, + { + "html": "If \"description\" exists in item, and\n item[\"description\"] is a string, set\n shortcut[\"description\"] to item[\"description\"]." + }, + { + "html": "Process a *_localized text member passing item,\n shortcut, \"description_localized\", and defaultDirection." + }, + { + "html": "Process image resources passing item[\"icons\"], shortcut,\n manifest URL, and \"icons\"." + }, + { + "html": "Process a *_localized image resource member passing item,\n shortcut, \"icons_localized\", and manifest URL." }, { "html": "Return shortcut." @@ -510,7 +651,7 @@ { "name": "create a new application context", "href": "https://www.w3.org/TR/appmanifest/#dfn-create-a-new-application-context", - "html": "The steps to create a new application\n context is given by the following algorithm. The algorithm\n takes a processed manifest manifest, an optional URL target URL, an optional POST resource POST resource and returns an application context.", + "html": "The steps to create a new application\n context is given by the following algorithm. The algorithm\n takes a processed manifest manifest, an optional URL target URL, an optional POST resource POST resource and returns an application context.", "rationale": ".algorithm", "steps": [ { @@ -533,7 +674,7 @@ { "name": "URL/within scope", "href": "https://www.w3.org/TR/appmanifest/#dfn-within-scope", - "html": "A URL target is said to be within scope of URL scope if the\n following algorithm returns true:", + "html": "A URL target is said to be within scope of URL scope if the\n following algorithm returns true:", "rationale": ".algorithm", "steps": [ { @@ -563,7 +704,7 @@ "html": "If the user agent supports manifest[\"display\"], then return\n manifest[\"display\"]." }, { - "html": "For each fallback_mode of the fallback chain of\n manifest[\"display\"]:", + "html": "For each fallback_mode of the fallback chain of\n manifest[\"display\"]:", "rationale": "if", "steps": [ { diff --git a/tr/dfns/appmanifest.json b/tr/dfns/appmanifest.json index 86af7cafb540..127a0ff7ad62 100644 --- a/tr/dfns/appmanifest.json +++ b/tr/dfns/appmanifest.json @@ -68,10 +68,10 @@ "definedIn": "prose" }, { - "id": "dfn-localizable-members", - "href": "https://www.w3.org/TR/appmanifest/#dfn-localizable-members", + "id": "dfn-default-direction", + "href": "https://www.w3.org/TR/appmanifest/#dfn-default-direction", "linkingText": [ - "localizable members" + "default direction" ], "localLinkingText": [], "type": "dfn", @@ -804,6 +804,244 @@ }, "definedIn": "prose" }, + { + "id": "dfn-localizable-member", + "href": "https://www.w3.org/TR/appmanifest/#dfn-localizable-member", + "linkingText": [ + "localizable member" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "x_localized-members", + "href": "https://www.w3.org/TR/appmanifest/#x_localized-members", + "title": "*_localized members", + "number": "1.17" + }, + "definedIn": "prose" + }, + { + "id": "dfn-_localized", + "href": "https://www.w3.org/TR/appmanifest/#dfn-_localized", + "linkingText": [ + "*_localized" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "manifest" + ], + "access": "public", + "informative": false, + "heading": { + "id": "x_localized-members", + "href": "https://www.w3.org/TR/appmanifest/#x_localized-members", + "title": "*_localized members", + "number": "1.17" + }, + "definedIn": "prose" + }, + { + "id": "dfn-language-map", + "href": "https://www.w3.org/TR/appmanifest/#dfn-language-map", + "linkingText": [ + "language map" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "x_localized-members", + "href": "https://www.w3.org/TR/appmanifest/#x_localized-members", + "title": "*_localized members", + "number": "1.17" + }, + "definedIn": "prose" + }, + { + "id": "dfn-localized-value", + "href": "https://www.w3.org/TR/appmanifest/#dfn-localized-value", + "linkingText": [ + "localized value" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "x_localized-members", + "href": "https://www.w3.org/TR/appmanifest/#x_localized-members", + "title": "*_localized members", + "number": "1.17" + }, + "definedIn": "prose" + }, + { + "id": "dfn-default-representation", + "href": "https://www.w3.org/TR/appmanifest/#dfn-default-representation", + "linkingText": [ + "default representation" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "localizable member" + ], + "access": "private", + "informative": false, + "heading": { + "id": "x_localized-members", + "href": "https://www.w3.org/TR/appmanifest/#x_localized-members", + "title": "*_localized members", + "number": "1.17" + }, + "definedIn": "prose" + }, + { + "id": "dfn-localized-text-object", + "href": "https://www.w3.org/TR/appmanifest/#dfn-localized-text-object", + "linkingText": [ + "localized text object" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "localizing-text-values", + "href": "https://www.w3.org/TR/appmanifest/#localizing-text-values", + "title": "Localizing text values", + "number": "1.17.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-value", + "href": "https://www.w3.org/TR/appmanifest/#dfn-value", + "linkingText": [ + "value" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "manifest/*_localized" + ], + "access": "public", + "informative": false, + "heading": { + "id": "localizing-text-values", + "href": "https://www.w3.org/TR/appmanifest/#localizing-text-values", + "title": "Localizing text values", + "number": "1.17.1" + }, + "definedIn": "dt" + }, + { + "id": "dfn-dir-0", + "href": "https://www.w3.org/TR/appmanifest/#dfn-dir-0", + "linkingText": [ + "dir" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "manifest/*_localized" + ], + "access": "public", + "informative": false, + "heading": { + "id": "localizing-text-values", + "href": "https://www.w3.org/TR/appmanifest/#localizing-text-values", + "title": "Localizing text values", + "number": "1.17.1" + }, + "definedIn": "dt" + }, + { + "id": "dfn-lang-0", + "href": "https://www.w3.org/TR/appmanifest/#dfn-lang-0", + "linkingText": [ + "lang" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "manifest/*_localized" + ], + "access": "public", + "informative": false, + "heading": { + "id": "localizing-text-values", + "href": "https://www.w3.org/TR/appmanifest/#localizing-text-values", + "title": "Localizing text values", + "number": "1.17.1" + }, + "definedIn": "dt" + }, + { + "id": "dfn-process-a-_localized-text-member", + "href": "https://www.w3.org/TR/appmanifest/#dfn-process-a-_localized-text-member", + "linkingText": [ + "process a *_localized text member" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "localizing-text-values", + "href": "https://www.w3.org/TR/appmanifest/#localizing-text-values", + "title": "Localizing text values", + "number": "1.17.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-process-a-localized-text-object", + "href": "https://www.w3.org/TR/appmanifest/#dfn-process-a-localized-text-object", + "linkingText": [ + "process a localized text object" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "localizing-text-values", + "href": "https://www.w3.org/TR/appmanifest/#localizing-text-values", + "title": "Localizing text values", + "number": "1.17.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-process-a-_localized-image-resource-member", + "href": "https://www.w3.org/TR/appmanifest/#dfn-process-a-_localized-image-resource-member", + "linkingText": [ + "process a *_localized image resource member" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "localizing-image-resources", + "href": "https://www.w3.org/TR/appmanifest/#localizing-image-resources", + "title": "Localizing image resources", + "number": "1.17.2" + }, + "definedIn": "prose" + }, { "id": "dfn-ignore", "href": "https://www.w3.org/TR/appmanifest/#dfn-ignore", @@ -819,7 +1057,7 @@ "id": "processing", "href": "https://www.w3.org/TR/appmanifest/#processing", "title": "Processing the manifest", - "number": "1.17.1" + "number": "1.18.1" }, "definedIn": "prose" }, @@ -840,7 +1078,7 @@ "id": "processing", "href": "https://www.w3.org/TR/appmanifest/#processing", "title": "Processing the manifest", - "number": "1.17.1" + "number": "1.18.1" }, "definedIn": "prose" }, @@ -862,7 +1100,7 @@ "id": "processing", "href": "https://www.w3.org/TR/appmanifest/#processing", "title": "Processing the manifest", - "number": "1.17.1" + "number": "1.18.1" }, "definedIn": "prose" }, @@ -883,7 +1121,7 @@ "id": "processing", "href": "https://www.w3.org/TR/appmanifest/#processing", "title": "Processing the manifest", - "number": "1.17.1" + "number": "1.18.1" }, "definedIn": "prose" }, @@ -902,7 +1140,7 @@ "id": "processing-color-members", "href": "https://www.w3.org/TR/appmanifest/#processing-color-members", "title": "Processing color members", - "number": "1.17.2" + "number": "1.18.2" }, "definedIn": "prose" }, @@ -921,7 +1159,7 @@ "id": "processing-text-members", "href": "https://www.w3.org/TR/appmanifest/#processing-text-members", "title": "Processing text members", - "number": "1.17.3" + "number": "1.18.3" }, "definedIn": "prose" }, @@ -945,7 +1183,7 @@ "id": "applying-the-manifest", "href": "https://www.w3.org/TR/appmanifest/#applying-the-manifest", "title": "Applying the manifest", - "number": "1.17.5" + "number": "1.18.5" }, "definedIn": "prose" }, @@ -964,7 +1202,7 @@ "id": "applying-the-manifest", "href": "https://www.w3.org/TR/appmanifest/#applying-the-manifest", "title": "Applying the manifest", - "number": "1.17.5" + "number": "1.18.5" }, "definedIn": "prose" }, @@ -983,7 +1221,7 @@ "id": "updating", "href": "https://www.w3.org/TR/appmanifest/#updating", "title": "Updating the manifest", - "number": "1.17.6" + "number": "1.18.6" }, "definedIn": "prose" }, @@ -1616,8 +1854,8 @@ "definedIn": "prose" }, { - "id": "dfn-value", - "href": "https://www.w3.org/TR/appmanifest/#dfn-value", + "id": "dfn-value-0", + "href": "https://www.w3.org/TR/appmanifest/#dfn-value-0", "linkingText": [ "value" ], diff --git a/tr/dfns/webrtc.json b/tr/dfns/webrtc.json index 6447ddcf5c14..ce19ac978c9e 100644 --- a/tr/dfns/webrtc.json +++ b/tr/dfns/webrtc.json @@ -164,8 +164,8 @@ "definedIn": "prose" }, { - "id": "dom-rtcconfiguration", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcconfiguration", + "id": "dom-rtcconfiguration-dedup-1", + "href": "https://www.w3.org/TR/webrtc/#dom-rtcconfiguration-dedup-1", "linkingText": [ "RTCConfiguration" ], @@ -175,8 +175,8 @@ "access": "public", "informative": false, "heading": { - "id": "rtcconfiguration-dictionary", - "href": "https://www.w3.org/TR/webrtc/#rtcconfiguration-dictionary", + "id": "x4-2-1-rtcconfiguration-dictionary-dedup-0", + "href": "https://www.w3.org/TR/webrtc/#x4-2-1-rtcconfiguration-dictionary-dedup-0", "title": "RTCConfiguration Dictionary", "number": "4.2.1" }, @@ -303,48 +303,8 @@ "definedIn": "dt" }, { - "id": "dom-rtcicecredentialtype", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcicecredentialtype", - "linkingText": [ - "RTCIceCredentialType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "rtcicecredentialtype-enum-dedup-4", - "href": "https://www.w3.org/TR/webrtc/#rtcicecredentialtype-enum-dedup-4", - "title": "RTCIceCredentialType Enum", - "number": "4.2.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-rtcicecredentialtype-password", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcicecredentialtype-password", - "linkingText": [ - "password" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "RTCIceCredentialType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "rtcicecredentialtype-enum-dedup-4", - "href": "https://www.w3.org/TR/webrtc/#rtcicecredentialtype-enum-dedup-4", - "title": "RTCIceCredentialType Enum", - "number": "4.2.2" - }, - "definedIn": "table" - }, - { - "id": "dom-rtciceserver", - "href": "https://www.w3.org/TR/webrtc/#dom-rtciceserver", + "id": "dom-rtciceserver-dedup-6", + "href": "https://www.w3.org/TR/webrtc/#dom-rtciceserver-dedup-6", "linkingText": [ "RTCIceServer" ], @@ -354,10 +314,10 @@ "access": "public", "informative": false, "heading": { - "id": "rtciceserver-dictionary", - "href": "https://www.w3.org/TR/webrtc/#rtciceserver-dictionary", + "id": "x4-2-2-rtciceserver-dictionary", + "href": "https://www.w3.org/TR/webrtc/#x4-2-2-rtciceserver-dictionary", "title": "RTCIceServer Dictionary", - "number": "4.2.3" + "number": "4.2.2" }, "definedIn": "heading" }, @@ -421,26 +381,6 @@ }, "definedIn": "dt" }, - { - "id": "dom-rtciceserver-credentialtype", - "href": "https://www.w3.org/TR/webrtc/#dom-rtciceserver-credentialtype", - "linkingText": [ - "credentialType" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "RTCIceServer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-rtciceserver-members-dedup-7", - "href": "https://www.w3.org/TR/webrtc/#dictionary-rtciceserver-members-dedup-7", - "title": "Dictionary RTCIceServer Members" - }, - "definedIn": "dt" - }, { "id": "dom-rtcicetransportpolicy", "href": "https://www.w3.org/TR/webrtc/#dom-rtcicetransportpolicy", @@ -946,8 +886,8 @@ "definedIn": "heading" }, { - "id": "dom-rtcpeerconnectionstate-closed", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcpeerconnectionstate-closed", + "id": "dom-rtcpeerconnectionstate-closed-dedup-14", + "href": "https://www.w3.org/TR/webrtc/#dom-rtcpeerconnectionstate-closed-dedup-14", "linkingText": [ "closed" ], @@ -1030,31 +970,10 @@ "definedIn": "table" }, { - "id": "dom-rtcpeerconnectionstate-connecting", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcpeerconnectionstate-connecting", - "linkingText": [ - "connecting" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "RTCPeerConnectionState" - ], - "access": "public", - "informative": false, - "heading": { - "id": "rtcpeerconnectionstate-enum", - "href": "https://www.w3.org/TR/webrtc/#rtcpeerconnectionstate-enum", - "title": "RTCPeerConnectionState Enum", - "number": "4.3.3" - }, - "definedIn": "table" - }, - { - "id": "dom-rtcpeerconnectionstate-connected", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcpeerconnectionstate-connected", + "id": "dom-rtcpeerconnectionstate-connected-dedup-17", + "href": "https://www.w3.org/TR/webrtc/#dom-rtcpeerconnectionstate-connected-dedup-17", "linkingText": [ - "" + "connected" ], "localLinkingText": [], "type": "enum-value", @@ -1072,10 +991,10 @@ "definedIn": "table" }, { - "id": "dom-rtcpeerconnectionstate-connected-dedup-17", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcpeerconnectionstate-connected-dedup-17", + "id": "dom-rtcpeerconnectionstate-connecting-dedup-21", + "href": "https://www.w3.org/TR/webrtc/#dom-rtcpeerconnectionstate-connecting-dedup-21", "linkingText": [ - "connected" + "connecting" ], "localLinkingText": [], "type": "enum-value", @@ -4715,8 +4634,8 @@ "definedIn": "dt" }, { - "id": "dom-rtccertificateexpiration", - "href": "https://www.w3.org/TR/webrtc/#dom-rtccertificateexpiration", + "id": "dom-rtccertificateexpiration-dedup-73", + "href": "https://www.w3.org/TR/webrtc/#dom-rtccertificateexpiration-dedup-73", "linkingText": [ "RTCCertificateExpiration" ], @@ -4726,8 +4645,8 @@ "access": "public", "informative": false, "heading": { - "id": "rtccertificateexpiration-dictionary", - "href": "https://www.w3.org/TR/webrtc/#rtccertificateexpiration-dictionary", + "id": "x4-9-1-rtccertificateexpiration-dictionary-dedup-72", + "href": "https://www.w3.org/TR/webrtc/#x4-9-1-rtccertificateexpiration-dictionary-dedup-72", "title": "RTCCertificateExpiration Dictionary", "number": "4.9.1" }, @@ -4755,8 +4674,8 @@ "definedIn": "dt" }, { - "id": "dom-rtccertificate", - "href": "https://www.w3.org/TR/webrtc/#dom-rtccertificate", + "id": "dom-rtccertificate-dedup-75", + "href": "https://www.w3.org/TR/webrtc/#dom-rtccertificate-dedup-75", "linkingText": [ "RTCCertificate" ], @@ -4766,8 +4685,8 @@ "access": "public", "informative": false, "heading": { - "id": "rtccertificate-interface", - "href": "https://www.w3.org/TR/webrtc/#rtccertificate-interface", + "id": "x4-9-2-rtccertificate-interface-dedup-74", + "href": "https://www.w3.org/TR/webrtc/#x4-9-2-rtccertificate-interface-dedup-74", "title": "RTCCertificate Interface", "number": "4.9.2" }, @@ -6118,25 +6037,6 @@ }, "definedIn": "dt" }, - { - "id": "dom-rtcrtpdecodingparameters", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcrtpdecodingparameters", - "linkingText": [ - "RTCRtpDecodingParameters" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "rtcrtpdecodingparameters-dedup-95", - "href": "https://www.w3.org/TR/webrtc/#rtcrtpdecodingparameters-dedup-95", - "title": "RTCRtpDecodingParameters Dictionary", - "number": "5.2.5" - }, - "definedIn": "heading" - }, { "id": "dom-rtcrtpencodingparameters", "href": "https://www.w3.org/TR/webrtc/#dom-rtcrtpencodingparameters", @@ -6494,8 +6394,8 @@ "definedIn": "dt" }, { - "id": "dom-rtcrtpcodecparameters", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcrtpcodecparameters", + "id": "dom-rtcrtpcodecparameters-dedup-98", + "href": "https://www.w3.org/TR/webrtc/#dom-rtcrtpcodecparameters-dedup-98", "linkingText": [ "RTCRtpCodecParameters" ], @@ -6505,16 +6405,16 @@ "access": "public", "informative": false, "heading": { - "id": "rtcrtpcodecparameters", - "href": "https://www.w3.org/TR/webrtc/#rtcrtpcodecparameters", + "id": "x5-2-9-rtcrtpcodecparameters-dictionary-dedup-97", + "href": "https://www.w3.org/TR/webrtc/#x5-2-9-rtcrtpcodecparameters-dictionary-dedup-97", "title": "RTCRtpCodecParameters Dictionary", "number": "5.2.9" }, "definedIn": "heading" }, { - "id": "dom-rtcrtpcodecparameters-payloadtype", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcrtpcodecparameters-payloadtype", + "id": "dom-rtcrtpcodecparameters-payloadtype-dedup-102", + "href": "https://www.w3.org/TR/webrtc/#dom-rtcrtpcodecparameters-payloadtype-dedup-102", "linkingText": [ "payloadType" ], @@ -6526,88 +6426,8 @@ "access": "public", "informative": false, "heading": { - "id": "dictionary-rtcrtpcodecparameters-members", - "href": "https://www.w3.org/TR/webrtc/#dictionary-rtcrtpcodecparameters-members", - "title": "Dictionary RTCRtpCodecParameters Members" - }, - "definedIn": "dt" - }, - { - "id": "dom-rtcrtpcodecparameters-mimetype", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcrtpcodecparameters-mimetype", - "linkingText": [ - "mimeType" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "RTCRtpCodecParameters" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-rtcrtpcodecparameters-members", - "href": "https://www.w3.org/TR/webrtc/#dictionary-rtcrtpcodecparameters-members", - "title": "Dictionary RTCRtpCodecParameters Members" - }, - "definedIn": "dt" - }, - { - "id": "dom-rtcrtpcodecparameters-clockrate", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcrtpcodecparameters-clockrate", - "linkingText": [ - "clockRate" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "RTCRtpCodecParameters" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-rtcrtpcodecparameters-members", - "href": "https://www.w3.org/TR/webrtc/#dictionary-rtcrtpcodecparameters-members", - "title": "Dictionary RTCRtpCodecParameters Members" - }, - "definedIn": "dt" - }, - { - "id": "dom-rtcrtpcodecparameters-channels", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcrtpcodecparameters-channels", - "linkingText": [ - "channels" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "RTCRtpCodecParameters" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-rtcrtpcodecparameters-members", - "href": "https://www.w3.org/TR/webrtc/#dictionary-rtcrtpcodecparameters-members", - "title": "Dictionary RTCRtpCodecParameters Members" - }, - "definedIn": "dt" - }, - { - "id": "dom-rtcrtpcodecparameters-sdpfmtpline", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcrtpcodecparameters-sdpfmtpline", - "linkingText": [ - "sdpFmtpLine" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "RTCRtpCodecParameters" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-rtcrtpcodecparameters-members", - "href": "https://www.w3.org/TR/webrtc/#dictionary-rtcrtpcodecparameters-members", + "id": "dictionary-rtcrtpcodecparameters-members-dedup-99", + "href": "https://www.w3.org/TR/webrtc/#dictionary-rtcrtpcodecparameters-members-dedup-99", "title": "Dictionary RTCRtpCodecParameters Members" }, "definedIn": "dt" @@ -8779,25 +8599,6 @@ }, "definedIn": "dt" }, - { - "id": "dom-rtcicecandidatepair", - "href": "https://www.w3.org/TR/webrtc/#dom-rtcicecandidatepair", - "linkingText": [ - "RTCIceCandidatePair" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "rtcicecandidatepair", - "href": "https://www.w3.org/TR/webrtc/#rtcicecandidatepair", - "title": "RTCIceCandidatePair Dictionary", - "number": "5.6.2" - }, - "definedIn": "heading" - }, { "id": "dom-rtcicecandidatepair-dedup-163", "href": "https://www.w3.org/TR/webrtc/#dom-rtcicecandidatepair-dedup-163", diff --git a/tr/headings/appmanifest.json b/tr/headings/appmanifest.json index 5a75f337212b..53397f3134ee 100644 --- a/tr/headings/appmanifest.json +++ b/tr/headings/appmanifest.json @@ -177,54 +177,75 @@ "title": "shortcuts member", "number": "1.16" }, + { + "id": "x_localized-members", + "href": "https://www.w3.org/TR/appmanifest/#x_localized-members", + "level": 3, + "title": "*_localized members", + "number": "1.17" + }, + { + "id": "localizing-text-values", + "href": "https://www.w3.org/TR/appmanifest/#localizing-text-values", + "level": 4, + "title": "Localizing text values", + "number": "1.17.1" + }, + { + "id": "localizing-image-resources", + "href": "https://www.w3.org/TR/appmanifest/#localizing-image-resources", + "level": 4, + "title": "Localizing image resources", + "number": "1.17.2" + }, { "id": "manifest-life-cycle", "href": "https://www.w3.org/TR/appmanifest/#manifest-life-cycle", "level": 3, "title": "Manifest life-cycle", - "number": "1.17" + "number": "1.18" }, { "id": "processing", "href": "https://www.w3.org/TR/appmanifest/#processing", "level": 4, "title": "Processing the manifest", - "number": "1.17.1" + "number": "1.18.1" }, { "id": "processing-color-members", "href": "https://www.w3.org/TR/appmanifest/#processing-color-members", "level": 4, "title": "Processing color members", - "number": "1.17.2" + "number": "1.18.2" }, { "id": "processing-text-members", "href": "https://www.w3.org/TR/appmanifest/#processing-text-members", "level": 4, "title": "Processing text members", - "number": "1.17.3" + "number": "1.18.3" }, { "id": "processing-the-manifest-without-a-document", "href": "https://www.w3.org/TR/appmanifest/#processing-the-manifest-without-a-document", "level": 4, "title": "Processing the manifest without a document", - "number": "1.17.4" + "number": "1.18.4" }, { "id": "applying-the-manifest", "href": "https://www.w3.org/TR/appmanifest/#applying-the-manifest", "level": 4, "title": "Applying the manifest", - "number": "1.17.5" + "number": "1.18.5" }, { "id": "updating", "href": "https://www.w3.org/TR/appmanifest/#updating", "level": 4, "title": "Updating the manifest", - "number": "1.17.6" + "number": "1.18.6" }, { "id": "manifest-image-resources", diff --git a/tr/ids/appmanifest.json b/tr/ids/appmanifest.json index 6360941bade8..e8301dad3233 100644 --- a/tr/ids/appmanifest.json +++ b/tr/ids/appmanifest.json @@ -85,21 +85,13 @@ "https://www.w3.org/TR/appmanifest/#x1-2-dir-member", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-4", "https://www.w3.org/TR/appmanifest/#dfn-dir", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-members-1", + "https://www.w3.org/TR/appmanifest/#dfn-default-direction", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-5", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-dir-2", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-text-directions-1", - "https://www.w3.org/TR/appmanifest/#dfn-localizable-members", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-2", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-2", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-1", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-0-1", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-2", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-0-1", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-3", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-description-1", "https://www.w3.org/TR/appmanifest/#dfn-text-directions", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-members-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-2", "https://www.w3.org/TR/appmanifest/#dfn-ltr", "https://www.w3.org/TR/appmanifest/#dfn-rtl", "https://www.w3.org/TR/appmanifest/#dfn-auto", @@ -122,7 +114,7 @@ "https://www.w3.org/TR/appmanifest/#dfn-lang", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-2", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-language-tag-1", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-members-3", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-3", "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-2", "https://www.w3.org/TR/appmanifest/#h-note-1", "https://www.w3.org/TR/appmanifest/#dfn-language-tag", @@ -136,12 +128,15 @@ "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-4", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-strip-leading-and-trailing-ascii-whitespace-2", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-isstructurallyvalidlanguagetag-1", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-for-map-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-canonicalizeunicodelocaleid-1", "https://www.w3.org/TR/appmanifest/#name-member", "https://www.w3.org/TR/appmanifest/#x1-4-name-member", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-7", "https://www.w3.org/TR/appmanifest/#dfn-name", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-5", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-4", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-3", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-accessible-name-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-installed-web-application-1", @@ -155,6 +150,8 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-8", "https://www.w3.org/TR/appmanifest/#dfn-short_name", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-6", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-5", "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-5", "https://www.w3.org/TR/appmanifest/#h-note-4", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processing-a-manifest-2", @@ -183,11 +180,13 @@ "https://www.w3.org/TR/appmanifest/#x1-7-icons-member", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-10", "https://www.w3.org/TR/appmanifest/#dfn-icons", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-icons-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-6", "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-7", "https://www.w3.org/TR/appmanifest/#h-note-6", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processing-a-manifest-3", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-image-resources-1", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-icons-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-icons-3", "https://www.w3.org/TR/appmanifest/#display-member", "https://www.w3.org/TR/appmanifest/#x1-8-display-member", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-11", @@ -382,7 +381,7 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-19", "https://www.w3.org/TR/appmanifest/#dfn-shortcuts", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-4", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-4", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-1", "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-16", "https://www.w3.org/TR/appmanifest/#h-note-15", "https://www.w3.org/TR/appmanifest/#dfn-process-the-shortcuts-member", @@ -390,35 +389,185 @@ "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-18", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-6", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-5", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-for-map-2", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-7", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-6", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-for-each-for-list-2", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-shortcut-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-append-for-list-2", + "https://www.w3.org/TR/appmanifest/#x_localized-members", + "https://www.w3.org/TR/appmanifest/#x1-17-_localized-members", + "https://www.w3.org/TR/appmanifest/#dfn-localizable-member", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-20", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-7", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-21", + "https://www.w3.org/TR/appmanifest/#dfn-_localized", + "https://www.w3.org/TR/appmanifest/#example-7", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-5", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-8", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-_localized-1", + "https://www.w3.org/TR/appmanifest/#dfn-language-map", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-19", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-language-tag-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-value-1", + "https://www.w3.org/TR/appmanifest/#dfn-localized-value", + "https://www.w3.org/TR/appmanifest/#example-localizing-the-application-name", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-9", + "https://www.w3.org/TR/appmanifest/#dfn-default-representation", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-_localized-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-language-map-1", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-value-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-10", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-value-3", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-language-tag-3", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-value-4", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-default-representation-1", + "https://www.w3.org/TR/appmanifest/#localizing-text-values", + "https://www.w3.org/TR/appmanifest/#x1-17-1-localizing-text-values", + "https://www.w3.org/TR/appmanifest/#dfn-localized-text-object", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-20", + "https://www.w3.org/TR/appmanifest/#dfn-value", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-16", + "https://www.w3.org/TR/appmanifest/#dfn-dir-0", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-text-directions-2", + "https://www.w3.org/TR/appmanifest/#dfn-lang-0", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-language-tag-4", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-11", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-17", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-_localized-3", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-language-map-2", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-18", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-text-object-1", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-value-5", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-19", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-dir-0-1", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-text-object-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-default-direction-1", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-dir-3", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-22", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-17", + "https://www.w3.org/TR/appmanifest/#h-note-16", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-dir-0-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-text-object-3", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-default-direction-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-dir-4", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-20", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-lang-0-1", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-text-object-4", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-language-tag-5", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-language-map-3", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-18", + "https://www.w3.org/TR/appmanifest/#h-note-17", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-text-object-5", + "https://www.w3.org/TR/appmanifest/#example-9", + "https://www.w3.org/TR/appmanifest/#dfn-process-a-_localized-text-member", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-21", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-22", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-21", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-text-directions-3", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-8", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-23", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-keys-for-map-1", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-24", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-for-each-for-list-3", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-localized-text-object-1", + "https://www.w3.org/TR/appmanifest/#dfn-process-a-localized-text-object", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-22", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-25", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-23", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-26", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-24", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-text-directions-4", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-27", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-25", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-strip-leading-and-trailing-ascii-whitespace-5", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-for-map-3", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-28", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-9", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-26", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-strip-leading-and-trailing-ascii-whitespace-6", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-for-map-4", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-10", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-27", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-strip-leading-and-trailing-ascii-whitespace-7", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-for-map-5", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-11", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-28", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-strip-leading-and-trailing-ascii-whitespace-8", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-text-direction-list-2", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-contain-for-list-4", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-for-map-6", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-12", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-13", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-for-map-7", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-14", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-for-map-8", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-isstructurallyvalidlanguagetag-2", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-isstructurallyvalidlanguagetag-3", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-for-map-9", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-19", + "https://www.w3.org/TR/appmanifest/#h-note-18", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-localized-text-object-2", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-29", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-text-object-6", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-value-6", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-text-object-7", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-value-1", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-lang-0-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-dir-0-3", + "https://www.w3.org/TR/appmanifest/#localizing-image-resources", + "https://www.w3.org/TR/appmanifest/#x1-17-2-localizing-image-resources", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-12", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-7", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-image-resources-1", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-_localized-4", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-language-map-4", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-8", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-image-resources-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-value-7", + "https://www.w3.org/TR/appmanifest/#example-localizing-the-application-icon", + "https://www.w3.org/TR/appmanifest/#dfn-process-a-_localized-image-resource-member", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-29", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-30", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-30", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-7", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-15", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-31", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-keys-for-map-2", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-for-map-10", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-32", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-for-each-for-list-4", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-isstructurallyvalidlanguagetag-4", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-continue-for-iteration-1", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-image-resources-2", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-9", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-image-resources-3", "https://www.w3.org/TR/appmanifest/#manifest-life-cycle", - "https://www.w3.org/TR/appmanifest/#x1-17-manifest-life-cycle", + "https://www.w3.org/TR/appmanifest/#x1-18-manifest-life-cycle", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processing-a-manifest-6", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-applied-4", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-20", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-23", "https://www.w3.org/TR/appmanifest/#processing", - "https://www.w3.org/TR/appmanifest/#x1-17-1-processing-the-manifest", + "https://www.w3.org/TR/appmanifest/#x1-18-1-processing-the-manifest", "https://www.w3.org/TR/appmanifest/#dfn-ignore", "https://www.w3.org/TR/appmanifest/#dfn-processing-extension-point", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-17", - "https://www.w3.org/TR/appmanifest/#h-note-16", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-20", + "https://www.w3.org/TR/appmanifest/#h-note-19", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processing-extension-point-1", "https://www.w3.org/TR/appmanifest/#dfn-processing-a-manifest", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-7", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-8", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-9", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-byte-sequence-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-parse-json-bytes-to-an-infra-value-1", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-19", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-20", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-21", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-33", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-34", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-35", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-the-dir-member-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-the-lang-member-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-text-member-3", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-_localized-text-member-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-text-member-4", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-_localized-text-member-2", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-the-start_url-member-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-the-id-member-3", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-document-1", @@ -430,7 +579,8 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-color-member-3", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-color-member-4", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-the-display-member-1", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-image-resources-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-image-resources-3", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-_localized-image-resource-member-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-the-orientation-member-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-the-related_applications-member-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-the-shortcuts-member-1", @@ -438,34 +588,34 @@ "https://www.w3.org/TR/appmanifest/#ref-for-index-term-document-5", "https://www.w3.org/TR/appmanifest/#dfn-processed-manifest", "https://www.w3.org/TR/appmanifest/#processing-color-members", - "https://www.w3.org/TR/appmanifest/#x1-17-2-processing-color-members", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-18", - "https://www.w3.org/TR/appmanifest/#h-note-17", + "https://www.w3.org/TR/appmanifest/#x1-18-2-processing-color-members", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-21", + "https://www.w3.org/TR/appmanifest/#h-note-20", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-srgb-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-srgb-2", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-srgb-3", "https://www.w3.org/TR/appmanifest/#dfn-process-a-color-member", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-22", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-23", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-16", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-8", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-17", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-strip-leading-and-trailing-ascii-whitespace-5", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-36", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-37", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-31", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-16", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-32", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-strip-leading-and-trailing-ascii-whitespace-9", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-parsing-for-css-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-srgb-4", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-srgb-5", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-srgb-6", "https://www.w3.org/TR/appmanifest/#processing-text-members", - "https://www.w3.org/TR/appmanifest/#x1-17-3-processing-text-members", + "https://www.w3.org/TR/appmanifest/#x1-18-3-processing-text-members", "https://www.w3.org/TR/appmanifest/#dfn-process-a-text-member", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-24", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-25", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-18", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-9", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-19", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-strip-leading-and-trailing-ascii-whitespace-6", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-38", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-39", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-33", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-17", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-34", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-strip-leading-and-trailing-ascii-whitespace-10", "https://www.w3.org/TR/appmanifest/#processing-the-manifest-without-a-document", - "https://www.w3.org/TR/appmanifest/#x1-17-4-processing-the-manifest-without-a-document", + "https://www.w3.org/TR/appmanifest/#x1-18-4-processing-the-manifest-without-a-document", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processing-a-manifest-7", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-link-element-2", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-document-6", @@ -473,7 +623,7 @@ "https://www.w3.org/TR/appmanifest/#ref-for-index-term-same-origin-3", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-link-element-3", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-rel-attribute-for-link-element-1", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-21", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-24", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-href-attribute-for-link-element-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-same-origin-4", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-fetch-1", @@ -483,8 +633,8 @@ "https://www.w3.org/TR/appmanifest/#ref-for-index-term-credentials-mode-for-request-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-cors-settings-attribute-credentials-mode-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-crossorigin-attribute-for-link-element-1", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-19", - "https://www.w3.org/TR/appmanifest/#h-note-18", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-22", + "https://www.w3.org/TR/appmanifest/#h-note-21", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-cors-protocol-1", "https://www.w3.org/TR/appmanifest/#applying-the-manifest", "https://www.w3.org/TR/appmanifest/#applying", @@ -502,8 +652,8 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-application-context-3", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-navigated-4", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-start-url-5", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-20", - "https://www.w3.org/TR/appmanifest/#h-note-19", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-23", + "https://www.w3.org/TR/appmanifest/#h-note-22", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-start-url-6", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-start_url-9", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-installed-1", @@ -512,27 +662,30 @@ "https://www.w3.org/TR/appmanifest/#ref-for-index-term-navigated-5", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-start-url-7", "https://www.w3.org/TR/appmanifest/#updating", - "https://www.w3.org/TR/appmanifest/#x1-17-6-updating-the-manifest", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-22", + "https://www.w3.org/TR/appmanifest/#x1-18-6-updating-the-manifest", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-25", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processing-a-manifest-8", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-application-context-5", "https://www.w3.org/TR/appmanifest/#dfn-security-sensitive-members", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-4", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-icons-3", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-5", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-icons-4", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-6", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-security-sensitive-members-1", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-express-permission-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-security-sensitive-members-2", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-express-permission-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-security-sensitive-members-3", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-21", - "https://www.w3.org/TR/appmanifest/#h-note-20", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-security-sensitive-members-4", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-security-sensitive-members-5", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-_localized-5", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-24", + "https://www.w3.org/TR/appmanifest/#h-note-23", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-security-sensitive-members-6", "https://www.w3.org/TR/appmanifest/#manifest-image-resources", "https://www.w3.org/TR/appmanifest/#x2-manifest-image-resources", "https://www.w3.org/TR/appmanifest/#dfn-manifest-image-resource", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-image-resource-1", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-image-resources-4", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-image-resource-1", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-image-resource-2", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-image-resources-5", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-purpose-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-image-resource-2", "https://www.w3.org/TR/appmanifest/#purpose-member", @@ -543,8 +696,8 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-image-resource-3", "https://www.w3.org/TR/appmanifest/#dfn-icon", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-icon-purposes-2", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-22", - "https://www.w3.org/TR/appmanifest/#h-note-21", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-25", + "https://www.w3.org/TR/appmanifest/#h-note-24", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-monochrome-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-purpose-2", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-purpose-3", @@ -558,23 +711,23 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-image-resource-4", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-monochrome-2", "https://www.w3.org/TR/appmanifest/#dfn-icon-purposes-list", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-7", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-10", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-monochrome-3", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-maskable-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-any-2", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-23", - "https://www.w3.org/TR/appmanifest/#h-note-22", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-26", + "https://www.w3.org/TR/appmanifest/#h-note-25", "https://www.w3.org/TR/appmanifest/#dfn-determine-the-purpose-of-an-image", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-26", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-10", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-20", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-40", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-18", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-35", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-split-on-ascii-whitespace-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-2", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-for-each-for-list-3", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-for-each-for-list-5", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-icon-purposes-list-1", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-contain-for-list-4", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-continue-for-iteration-1", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-contain-for-list-5", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-continue-for-iteration-2", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-append-for-set-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-is-empty-for-list-1", "https://www.w3.org/TR/appmanifest/#content-security-policy", @@ -588,18 +741,18 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-maskable-2", "https://www.w3.org/TR/appmanifest/#dfn-safe-zone", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-maskable-3", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-24", - "https://www.w3.org/TR/appmanifest/#h-note-23", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-27", + "https://www.w3.org/TR/appmanifest/#h-note-26", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-maskable-4", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-safe-zone-2", "https://www.w3.org/TR/appmanifest/#fig-the-safe-zone-is-a-centrally-positioned-circle-with-radius-2-5-40-of-the-minimum-of-the-icon-s-width-and-height", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-safe-zone-3", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-25", - "https://www.w3.org/TR/appmanifest/#h-note-24", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-28", + "https://www.w3.org/TR/appmanifest/#h-note-27", "https://www.w3.org/TR/appmanifest/#examples-of-masks", "https://www.w3.org/TR/appmanifest/#x2-3-1-examples-of-masks", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-26", - "https://www.w3.org/TR/appmanifest/#h-note-25", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-29", + "https://www.w3.org/TR/appmanifest/#h-note-28", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-safe-zone-4", "https://www.w3.org/TR/appmanifest/#icons-with-maskable-purpose", "https://www.w3.org/TR/appmanifest/#x2-3-1-1-icons-with-maskable-purpose", @@ -615,11 +768,11 @@ "https://www.w3.org/TR/appmanifest/#monochrome-icons-and-solid-fills", "https://www.w3.org/TR/appmanifest/#x2-4-monochrome-icons-and-solid-fills", "https://www.w3.org/TR/appmanifest/#dfn-solid-fill", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-23", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-26", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-monochrome-4", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-monochrome-5", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-27", - "https://www.w3.org/TR/appmanifest/#h-note-26", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-30", + "https://www.w3.org/TR/appmanifest/#h-note-29", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-monochrome-6", "https://www.w3.org/TR/appmanifest/#example-usage-of-monochrome-icons", "https://www.w3.org/TR/appmanifest/#x2-4-1-example-usage-of-monochrome-icons", @@ -631,68 +784,89 @@ "https://www.w3.org/TR/appmanifest/#processing-image-resources", "https://www.w3.org/TR/appmanifest/#x2-5-processing-image-resources", "https://www.w3.org/TR/appmanifest/#dfn-process-image-resources", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-8", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-27", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-21", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-9", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-10", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-for-each-for-list-4", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-11", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-41", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-36", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-12", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-13", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-for-each-for-list-6", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-process-an-image-resource-from-json-1", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-continue-for-iteration-2", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-determine-the-purpose-of-an-image-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-continue-for-iteration-3", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-determine-the-purpose-of-an-image-1", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-continue-for-iteration-4", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-append-for-list-3", "https://www.w3.org/TR/appmanifest/#shortcut-items", "https://www.w3.org/TR/appmanifest/#x3-shortcut-items", "https://www.w3.org/TR/appmanifest/#dfn-shortcut-item", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-28", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-0-2", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-0-2", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-description-2", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-42", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-0-1", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-0-1", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-description-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-url-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-icons-0-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-launching-a-shortcut-1", "https://www.w3.org/TR/appmanifest/#name-member-0", "https://www.w3.org/TR/appmanifest/#x3-1-name-member", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-5", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-2", "https://www.w3.org/TR/appmanifest/#dfn-name-0", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-22", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-37", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-0-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-13", "https://www.w3.org/TR/appmanifest/#short_name-member-0", "https://www.w3.org/TR/appmanifest/#x3-2-short_name-member", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-6", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-3", "https://www.w3.org/TR/appmanifest/#dfn-short_name-0", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-23", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-38", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-0-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-14", "https://www.w3.org/TR/appmanifest/#description-member", "https://www.w3.org/TR/appmanifest/#x3-3-description-member", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-7", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-4", "https://www.w3.org/TR/appmanifest/#dfn-description", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-24", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-39", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-description-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-15", "https://www.w3.org/TR/appmanifest/#url-member", "https://www.w3.org/TR/appmanifest/#x3-4-url-member", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-8", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-5", "https://www.w3.org/TR/appmanifest/#dfn-url", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-within-scope-0-2", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processed-manifest-3", "https://www.w3.org/TR/appmanifest/#icons-member-0", "https://www.w3.org/TR/appmanifest/#x3-5-icons-member", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-9", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-6", "https://www.w3.org/TR/appmanifest/#dfn-icons-0", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-icons-0-2", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-16", "https://www.w3.org/TR/appmanifest/#launching-a-shortcut", "https://www.w3.org/TR/appmanifest/#x3-6-launching-a-shortcut", "https://www.w3.org/TR/appmanifest/#dfn-launching-a-shortcut", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-10", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-shortcut-item-7", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-launching-a-web-application-1", "https://www.w3.org/TR/appmanifest/#processing-shortcut-items", "https://www.w3.org/TR/appmanifest/#x3-7-processing-shortcut-items", "https://www.w3.org/TR/appmanifest/#dfn-process-a-shortcut", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-29", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-30", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-11", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-12", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-25", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-43", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-10", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-11", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-text-directions-5", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-ordered-map-44", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-19", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-20", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-40", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-parser-6", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-within-scope-0-3", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-image-resources-3", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-_localized-text-member-3", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-21", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-41", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-for-map-11", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-_localized-text-member-4", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-exist-for-map-22", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-42", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-set-for-map-12", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-_localized-text-member-5", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-image-resources-4", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-process-a-_localized-image-resource-member-2", "https://www.w3.org/TR/appmanifest/#external-application-resource", "https://www.w3.org/TR/appmanifest/#x4-external-application-resource", "https://www.w3.org/TR/appmanifest/#issue-container-number-956-0", @@ -709,7 +883,7 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-platform-2", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-url-0-2", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-id-0-2", - "https://www.w3.org/TR/appmanifest/#example-8", + "https://www.w3.org/TR/appmanifest/#example-12", "https://www.w3.org/TR/appmanifest/#platform-member", "https://www.w3.org/TR/appmanifest/#x4-1-platform-member", "https://www.w3.org/TR/appmanifest/#dfn-platform", @@ -721,7 +895,7 @@ "https://www.w3.org/TR/appmanifest/#x4-2-url-member", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-external-application-resource-3", "https://www.w3.org/TR/appmanifest/#dfn-url-0", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-9", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-12", "https://www.w3.org/TR/appmanifest/#dfn-process-the-url-member-of-an-application", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-parser-7", "https://www.w3.org/TR/appmanifest/#id-member-0", @@ -732,17 +906,17 @@ "https://www.w3.org/TR/appmanifest/#x4-4-min_version-member", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-external-application-resource-5", "https://www.w3.org/TR/appmanifest/#dfn-min_version", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-26", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-43", "https://www.w3.org/TR/appmanifest/#fingerprints-member", "https://www.w3.org/TR/appmanifest/#x4-5-fingerprints-member", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-external-application-resource-6", "https://www.w3.org/TR/appmanifest/#dfn-fingerprints", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-11", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-14", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-fingerprints-0-1", "https://www.w3.org/TR/appmanifest/#dfn-fingerprints-0", "https://www.w3.org/TR/appmanifest/#dfn-type", - "https://www.w3.org/TR/appmanifest/#dfn-value", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-27", + "https://www.w3.org/TR/appmanifest/#dfn-value-0", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-string-44", "https://www.w3.org/TR/appmanifest/#installable-web-applications", "https://www.w3.org/TR/appmanifest/#x5-installable-web-applications", "https://www.w3.org/TR/appmanifest/#dfn-installed", @@ -751,8 +925,8 @@ "https://www.w3.org/TR/appmanifest/#dfn-installed-web-application", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-top-level-browsing-context-9", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-applied-7", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-28", - "https://www.w3.org/TR/appmanifest/#h-note-27", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-31", + "https://www.w3.org/TR/appmanifest/#h-note-30", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-launching-a-web-application-2", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-applied-8", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-top-level-browsing-context-10", @@ -762,44 +936,45 @@ "https://www.w3.org/TR/appmanifest/#application-s-name", "https://www.w3.org/TR/appmanifest/#x5-1-application-s-name", "https://www.w3.org/TR/appmanifest/#dfn-application-s-name", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-6", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-5", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-7", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-6", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-5", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-_localized-6", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-8", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-6", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-9", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-7", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-8", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-9", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-10", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-11", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-9", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-document-interface-3", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-11", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-12", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-10", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-application-s-name-1", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-12", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-name-13", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-11", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-short_name-12", "https://www.w3.org/TR/appmanifest/#launching-a-web-application", "https://www.w3.org/TR/appmanifest/#x5-2-launching-a-web-application", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-launching-a-web-application-3", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processed-manifest-4", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-29", - "https://www.w3.org/TR/appmanifest/#h-note-28", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-32", + "https://www.w3.org/TR/appmanifest/#h-note-31", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-installed-3", "https://www.w3.org/TR/appmanifest/#dfn-launching-a-web-application", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processed-manifest-5", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-10", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-13", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-post-resource-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-application-context-6", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-within-scope-0-4", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-launching-a-web-application-4", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-30", - "https://www.w3.org/TR/appmanifest/#h-note-29", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-33", + "https://www.w3.org/TR/appmanifest/#h-note-32", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-create-a-new-application-context-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-create-a-new-application-context-2", "https://www.w3.org/TR/appmanifest/#dfn-create-a-new-application-context", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processed-manifest-6", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-11", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-14", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-post-resource-2", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-application-context-7", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-start-url-9", @@ -821,31 +996,31 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-application-context-8", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-navigated-6", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-applied-10", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-31", - "https://www.w3.org/TR/appmanifest/#h-note-30", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-34", + "https://www.w3.org/TR/appmanifest/#h-note-33", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-scope-7", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-start_url-10", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-start_url-11", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-scope-8", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-start_url-12", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-scope-9", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-12", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-15", "https://www.w3.org/TR/appmanifest/#dfn-within-scope", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-13", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-16", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-same-origin-5", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-concatenation-for-string-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-path-for-url-1", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-concatenation-for-string-2", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-path-for-url-2", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-boolean-type-2", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-14", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-17", "https://www.w3.org/TR/appmanifest/#dfn-within-scope-0", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-within-scope-6", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-navigation-scope-2", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-within-scope-7", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-scope-10", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-32", - "https://www.w3.org/TR/appmanifest/#h-note-31", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-35", + "https://www.w3.org/TR/appmanifest/#h-note-34", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-service-workers-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-application-context-9", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-active-document-for-navigable-1", @@ -859,18 +1034,18 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-within-scope-0-6", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-application-context-11", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processed-manifest-9", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-33", - "https://www.w3.org/TR/appmanifest/#h-note-32", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-36", + "https://www.w3.org/TR/appmanifest/#h-note-35", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-application-context-12", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-15", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-18", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-navigation-scope-3", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-24", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-27", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-applied-11", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-top-level-browsing-context-11", "https://www.w3.org/TR/appmanifest/#security-considerations", "https://www.w3.org/TR/appmanifest/#navigation-scope-security-considerations", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-application-context-13", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-16", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-url-19", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-origin-0-2", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-origin-0-3", "https://www.w3.org/TR/appmanifest/#deep-links", @@ -882,8 +1057,8 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-application-context-14", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-deep-link-3", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-deep-link-4", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-34", - "https://www.w3.org/TR/appmanifest/#h-note-33", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-37", + "https://www.w3.org/TR/appmanifest/#h-note-36", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-deep-link-5", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-installed-web-application-4", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-installed-web-application-5", @@ -897,8 +1072,8 @@ "https://www.w3.org/TR/appmanifest/#dfn-minimal-ui", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-standalone-1", "https://www.w3.org/TR/appmanifest/#dfn-browser", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-35", - "https://www.w3.org/TR/appmanifest/#h-note-34", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-38", + "https://www.w3.org/TR/appmanifest/#h-note-37", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-fullscreen-1", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-display-mode-6", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-fullscreen-2", @@ -940,32 +1115,32 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processed-manifest-11", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-display-mode-15", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processing-extension-point-3", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-for-each-for-list-5", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-for-each-for-list-7", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-fallback-chain-2", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-36", - "https://www.w3.org/TR/appmanifest/#h-note-35", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-39", + "https://www.w3.org/TR/appmanifest/#h-note-38", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-browser-7", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-fallback-chain-3", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-browser-8", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-display-mode-16", - "https://www.w3.org/TR/appmanifest/#example-9", + "https://www.w3.org/TR/appmanifest/#example-13", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-display-4", "https://www.w3.org/TR/appmanifest/#dfn-display-modes-list", - "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-12", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-list-15", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-fullscreen-5", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-standalone-4", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-minimal-ui-4", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-browser-9", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-display-mode-17", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-display-mode-for-media-1", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-37", - "https://www.w3.org/TR/appmanifest/#h-note-36", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-40", + "https://www.w3.org/TR/appmanifest/#h-note-39", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-display-mode-for-media-2", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-display-mode-for-media-3", "https://www.w3.org/TR/appmanifest/#priv-sec", "https://www.w3.org/TR/appmanifest/#x8-privacy-and-security-considerations", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-installed-web-application-6", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-25", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-28", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-installed-7", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-start-url-11", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-installed-8", @@ -982,14 +1157,14 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-application-manifest-media-type-2", "https://www.w3.org/TR/appmanifest/#link-relation-type-registration", "https://www.w3.org/TR/appmanifest/#a-2-link-relation-type-registration", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-26", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-29", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-fetch-2", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processing-a-manifest-9", "https://www.w3.org/TR/appmanifest/#conformance", "https://www.w3.org/TR/appmanifest/#b-conformance", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-user-agent-5", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-38", - "https://www.w3.org/TR/appmanifest/#h-note-37", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-41", + "https://www.w3.org/TR/appmanifest/#h-note-40", "https://www.w3.org/TR/appmanifest/#extensibility", "https://www.w3.org/TR/appmanifest/#b-1-extensibility", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processing-extension-point-4", @@ -997,8 +1172,8 @@ "https://www.w3.org/TR/appmanifest/#proprietary-extensions", "https://www.w3.org/TR/appmanifest/#b-1-1-proprietary-manifest-members", "https://www.w3.org/TR/appmanifest/#example-proprietary-extensions", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-39", - "https://www.w3.org/TR/appmanifest/#h-note-38", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-42", + "https://www.w3.org/TR/appmanifest/#h-note-41", "https://www.w3.org/TR/appmanifest/#incubations-0", "https://www.w3.org/TR/appmanifest/#incubations", "https://www.w3.org/TR/appmanifest/#application-information", @@ -1007,11 +1182,16 @@ "https://www.w3.org/TR/appmanifest/#e-relationship-to-html-s-link-and-meta-elements", "https://www.w3.org/TR/appmanifest/#json-schema", "https://www.w3.org/TR/appmanifest/#f-json-schema", - "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-27", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-40", - "https://www.w3.org/TR/appmanifest/#h-note-39", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-30", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-43", + "https://www.w3.org/TR/appmanifest/#h-note-42", "https://www.w3.org/TR/appmanifest/#internationalization", "https://www.w3.org/TR/appmanifest/#g-internationalization", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localized-value-8", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-localizable-member-17", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-31", + "https://www.w3.org/TR/appmanifest/#ref-for-index-term-locale-1", + "https://www.w3.org/TR/appmanifest/#ref-for-dfn-installed-web-application-7", "https://www.w3.org/TR/appmanifest/#use-cases-and-requirements", "https://www.w3.org/TR/appmanifest/#h-use-cases-and-requirements", "https://www.w3.org/TR/appmanifest/#issue-summary", @@ -1056,7 +1236,8 @@ "https://www.w3.org/TR/appmanifest/#index-term-same-origin", "https://www.w3.org/TR/appmanifest/#index-term-top-level-browsing-context", "https://www.w3.org/TR/appmanifest/#index-term-unordered-set-of-unique-space-separated-tokens", - "https://www.w3.org/TR/appmanifest/#index-term-image-resource", + "https://www.w3.org/TR/appmanifest/#index-term-locale", + "https://www.w3.org/TR/appmanifest/#index-term-image-resources", "https://www.w3.org/TR/appmanifest/#index-term-process-an-image-resource-from-json", "https://www.w3.org/TR/appmanifest/#index-term-append-for-list", "https://www.w3.org/TR/appmanifest/#index-term-append-for-set", @@ -1068,10 +1249,12 @@ "https://www.w3.org/TR/appmanifest/#index-term-exist-for-map", "https://www.w3.org/TR/appmanifest/#index-term-for-each-for-list", "https://www.w3.org/TR/appmanifest/#index-term-is-empty-for-list", + "https://www.w3.org/TR/appmanifest/#index-term-keys-for-map", "https://www.w3.org/TR/appmanifest/#index-term-list", "https://www.w3.org/TR/appmanifest/#index-term-ordered-map", "https://www.w3.org/TR/appmanifest/#index-term-parse-json-bytes-to-an-infra-value", "https://www.w3.org/TR/appmanifest/#index-term-set", + "https://www.w3.org/TR/appmanifest/#index-term-set-for-map", "https://www.w3.org/TR/appmanifest/#index-term-split-on-ascii-whitespace", "https://www.w3.org/TR/appmanifest/#index-term-string", "https://www.w3.org/TR/appmanifest/#index-term-strip-leading-and-trailing-ascii-whitespace", @@ -1123,9 +1306,11 @@ "https://www.w3.org/TR/appmanifest/#bib-unicode", "https://www.w3.org/TR/appmanifest/#bib-unicode-security", "https://www.w3.org/TR/appmanifest/#bib-url", + "https://www.w3.org/TR/appmanifest/#bib-uts55", "https://www.w3.org/TR/appmanifest/#informative-references", "https://www.w3.org/TR/appmanifest/#m-2-informative-references", "https://www.w3.org/TR/appmanifest/#bib-fullscreen", + "https://www.w3.org/TR/appmanifest/#bib-i18n-glossary", "https://www.w3.org/TR/appmanifest/#bib-manifest-app-info", "https://www.w3.org/TR/appmanifest/#bib-mimesniff", "https://www.w3.org/TR/appmanifest/#bib-rfc7258", diff --git a/tr/index.json b/tr/index.json index 267f4388eb27..36c757d0c254 100644 --- a/tr/index.json +++ b/tr/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2024-10-11T01:34:36.067Z", + "date": "2024-10-11T12:55:11.888Z", "options": { "fallback": "tr/index.json", "output": "report", @@ -666,7 +666,7 @@ "crawled": 332, "errors": 0 }, - "crawler": "reffy-17.2.6", + "crawler": "reffy-17.2.7", "results": [ { "url": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", @@ -958,11 +958,11 @@ ], "crawled": "https://www.w3.org/TR/appmanifest/", "crawlCacheInfo": { - "lastModified": "Thu, 05 Sep 2024 11:30:54 GMT" + "lastModified": "Fri, 11 Oct 2024 03:44:44 GMT" }, "generator": "respec", - "date": "05 September 2024", - "revision": "3e1fd572e9be9b439d8d00da42a0163f69ee8438", + "date": "11 October 2024", + "revision": "22b225928d1d760c5414f19c67ed595013b7bbad", "algorithms": "algorithms/appmanifest.json", "links": "links/appmanifest.json", "refs": "refs/appmanifest.json", diff --git a/tr/links/appmanifest.json b/tr/links/appmanifest.json index 71ce0d634558..7d03424533d3 100644 --- a/tr/links/appmanifest.json +++ b/tr/links/appmanifest.json @@ -51,6 +51,7 @@ "https://github.com/w3c/manifest/commit/662cc34": {}, "https://github.com/w3c/manifest/commit/6708bc8": {}, "https://github.com/w3c/manifest/commit/72ba21c": {}, + "https://github.com/w3c/manifest/commit/75ae2b4": {}, "https://github.com/w3c/manifest/commit/7d41b99": {}, "https://github.com/w3c/manifest/commit/8102fc5": {}, "https://github.com/w3c/manifest/commit/83fd72b": {}, @@ -75,6 +76,7 @@ "https://github.com/w3c/manifest/pull/1029": {}, "https://github.com/w3c/manifest/pull/1030": {}, "https://github.com/w3c/manifest/pull/1067": {}, + "https://github.com/w3c/manifest/pull/1101": {}, "https://github.com/w3c/manifest/pull/1103": {}, "https://github.com/w3c/manifest/pull/1114": {}, "https://github.com/w3c/manifest/pull/1120": {}, @@ -170,7 +172,8 @@ "https://www.rfc-editor.org/rfc/rfc8174": {}, "https://www.rfc-editor.org/rfc/rfc8259": {}, "https://www.unicode.org/reports/tr36/tr36-15.html": {}, - "https://www.unicode.org/reports/tr9/tr9-48.html": {}, + "https://www.unicode.org/reports/tr55/tr55-5.html": {}, + "https://www.unicode.org/reports/tr9/tr9-50.html": {}, "https://www.unicode.org/versions/latest/": {}, "https://www.w3.org/2019/webapps/": {}, "https://www.w3.org/2020/Process-20200915/": { @@ -188,6 +191,7 @@ "https://www.w3.org/TR/appmanifest/": {}, "https://www.w3.org/TR/css-color-4/": {}, "https://www.w3.org/TR/css-syntax-3/": {}, + "https://www.w3.org/TR/i18n-glossary/": {}, "https://www.w3.org/TR/image-resource/": {}, "https://www.w3.org/TR/manifest-app-info/": {}, "https://www.w3.org/TR/mediaqueries-5/": { @@ -278,14 +282,16 @@ "string", "strip-leading-and-trailing-ascii-whitespace", "list-contain", + "map-set", "list-iterate", "list-append", "boolean", + "map-getting-the-keys", + "iteration-continue", "byte-sequence", "parse-json-bytes-to-an-infra-value", "ordered-set", "split-on-ascii-whitespace", - "iteration-continue", "set-append", "list-is-empty", "string-concatenate", @@ -326,6 +332,11 @@ "css-parse-something-according-to-a-css-grammar" ] }, + "https://www.w3.org/TR/i18n-glossary/": { + "anchors": [ + "dfn-locale" + ] + }, "https://www.w3.org/TR/image-resource/": { "anchors": [ "dfn-image-resource", diff --git a/tr/refs/appmanifest.json b/tr/refs/appmanifest.json index 194d96806afd..d2f8bfd1ab66 100644 --- a/tr/refs/appmanifest.json +++ b/tr/refs/appmanifest.json @@ -91,7 +91,7 @@ }, { "name": "UAX9", - "url": "https://www.unicode.org/reports/tr9/tr9-48.html" + "url": "https://www.unicode.org/reports/tr9/tr9-50.html" }, { "name": "UNICODE", @@ -104,6 +104,10 @@ { "name": "URL", "url": "https://url.spec.whatwg.org/" + }, + { + "name": "UTS55", + "url": "https://www.unicode.org/reports/tr55/tr55-5.html" } ], "informative": [ @@ -111,6 +115,10 @@ "name": "FULLSCREEN", "url": "https://fullscreen.spec.whatwg.org/" }, + { + "name": "i18n-glossary", + "url": "https://www.w3.org/TR/i18n-glossary/" + }, { "name": "manifest-app-info", "url": "https://www.w3.org/TR/manifest-app-info/"