From 464a10a26946ac19d084e90efe52f61115be1640 Mon Sep 17 00:00:00 2001 From: reffy-bot <> Date: Tue, 25 Feb 2025 01:35:03 +0000 Subject: [PATCH] Update of TR report from new reffy run Using reffy commit 18.4.0. --- tr/algorithms/event-timing.json | 34 +---- tr/algorithms/paint-timing.json | 21 ++- tr/algorithms/rdf12-semantics.json | 25 ++++ tr/dfns/event-timing.json | 19 --- tr/dfns/paint-timing.json | 100 +++++++------- tr/dfns/rdf12-semantics.json | 57 +++++--- tr/dfns/webrtc-encoded-transform.json | 42 ++++++ tr/headings/paint-timing.json | 35 +++-- tr/headings/rdf12-schema.json | 22 ++- tr/headings/vc-data-model-2.0.json | 144 ++++++++++---------- tr/idl/webrtc-encoded-transform.idl | 2 + tr/ids/event-timing.json | 11 +- tr/ids/paint-timing.json | 40 +++--- tr/ids/rdf12-schema.json | 12 +- tr/ids/rdf12-semantics.json | 6 +- tr/ids/vc-data-model-2.0.json | 180 ++++++++++++------------- tr/ids/webrtc-encoded-transform.json | 16 +++ tr/index.json | 41 +++--- tr/links/event-timing.json | 7 +- tr/links/paint-timing.json | 20 +-- tr/links/webrtc-encoded-transform.json | 8 ++ tr/refs/event-timing.json | 6 +- tr/refs/paint-timing.json | 10 +- tr/refs/webrtc-encoded-transform.json | 4 + 24 files changed, 479 insertions(+), 383 deletions(-) create mode 100644 tr/algorithms/rdf12-semantics.json diff --git a/tr/algorithms/event-timing.json b/tr/algorithms/event-timing.json index 05f2778dd055..d41c4d0eb186 100644 --- a/tr/algorithms/event-timing.json +++ b/tr/algorithms/event-timing.json @@ -116,7 +116,7 @@ "html": "

Let type be event’s type attribute value.

" }, { - "html": "

If type is not one among keyup, compositionstart, input, pointercancel, pointermove, pointerup, or click, return 0.

" + "html": "

If type is not one among keyup, compositionstart, input, pointercancel, pointerup, or click, return 0.

" }, { "html": "

Let window be event’s relevant global object.

" @@ -127,9 +127,6 @@ { "html": "

Let pointerMap be window’s pointer interaction value map.

" }, - { - "html": "

Let pointerIsDragSet be window’s pointer is drag set.

" - }, { "html": "

Let pendingPointerDowns be window’s pending pointer downs.

" }, @@ -209,11 +206,11 @@ ] }, { - "html": "Otherwise (type is pointercancel, pointermove, pointerup, or click):", + "html": "Otherwise (type is pointercancel, pointerup, or click):", "rationale": "let", "steps": [ { - "html": "

Let pointerId be event’s pointerId attribute value.

" + "html": "

Let pointerId be event’s pointerId attribute value.

" }, { "html": "If type is click:", @@ -228,26 +225,11 @@ { "html": "

Remove pointerMap[pointerId].

" }, - { - "html": "

Remove [pointerId] from pointerIsDragSet.

" - }, { "html": "

Return value.

" } ] }, - { - "html": "If type is pointermove:", - "rationale": "add", - "steps": [ - { - "html": "

Add pointerId to pointerIsDragSet.

" - }, - { - "html": "

Return 0.

" - } - ] - }, { "html": "

Assert that type is pointerup or pointercancel.

" }, @@ -262,14 +244,8 @@ }, { "html": "If type is pointerup:", - "rationale": "let", + "rationale": "increase", "steps": [ - { - "html": "

Let interactionType be \"tap\".

" - }, - { - "html": "

If pointerIsDragSet contains [pointerId] exists, set interactionType to \"drag\".

" - }, { "html": "

Increase interaction count on window.

" }, @@ -367,7 +343,7 @@ "html": "

Let pendingPointerDowns be relevantGlobal’s pending pointer downs.

" }, { - "html": "

Let pointerId be event’s pointerId.

" + "html": "

Let pointerId be event’s pointerId.

" }, { "html": "

If pendingPointerDowns[pointerId] exists, append pendingPointerDowns[pointerId] to relevantGlobal’s entries to be queued.

" diff --git a/tr/algorithms/paint-timing.json b/tr/algorithms/paint-timing.json index 83627c6de59a..45dd8af6875f 100644 --- a/tr/algorithms/paint-timing.json +++ b/tr/algorithms/paint-timing.json @@ -14,7 +14,7 @@ "html": "

Let boundingRect be the result of running the getBoundingClientRect() on target.

" }, { - "html": "

Clip boundingRect with the document's scrolling area.

" + "html": "

Clip boundingRect with the document’s scrolling area.

" }, { "html": "

Return boundingRect.

" @@ -47,7 +47,7 @@ { "name": "Should report first contentful paint", "href": "https://www.w3.org/TR/paint-timing/#should-report-first-contentful-paint", - "html": "To know whether Document document should report first contentful paint, perform the following steps:", + "html": "To know whether Document document should report first contentful paint, perform the following steps:", "rationale": ".algorithm", "steps": [ { @@ -63,11 +63,11 @@ }, { "name": "Mark paint timing", - "html": "When asked to mark paint timing given a Document document as input, perform the following steps:", + "html": "When asked to mark paint timing given a Document document as input, perform the following steps:", "rationale": ".algorithm", "steps": [ { - "html": "

If the document's browsing context is not paint-timing eligible, return.

" + "html": "

If the document’s browsing context is not paint-timing eligible, return.

" }, { "html": "

Let paintTimingInfo be a new paint timing info, whose rendering update end time is the current high resolution time given document’s relevant global object.

" @@ -117,6 +117,12 @@ { "html": "

Let reportedPaints be the document’s set of previously reported paints.

" }, + { + "html": "

Let frameTimingInfo be document’s current frame timing info.

" + }, + { + "html": "

Set document’s current frame timing info to null.

" + }, { "html": "Let flushPaintTimings be the following steps:", "rationale": "if", @@ -138,6 +144,9 @@ }, { "html": "

Report element timing given document, paintTimingInfo, paintedImages and paintedTextNodes.

" + }, + { + "html": "

If frameTimingInfo is not null, then queue a long animation frame entry given document, frameTimingInfo, and paintTimingInfo.

" } ] }, @@ -209,14 +218,14 @@ }, { "name": "Exposed for paint timing", - "html": "To determine whether an Element element is exposed for paint timing, given a Document or null document, perform the following steps:", + "html": "To determine whether an Element element is exposed for paint timing, given a Document or null document, perform the following steps:", "rationale": ".algorithm", "steps": [ { "html": "

If element is not connected, return false.

" }, { - "html": "

If document is null, let document be element’s relevant settings object's relevant global object's associated document.

" + "html": "

If document is null, let document be element’s relevant settings object’s relevant global object’s associated document.

" }, { "html": "

If document is not fully active, return false.

" diff --git a/tr/algorithms/rdf12-semantics.json b/tr/algorithms/rdf12-semantics.json new file mode 100644 index 000000000000..e58cd694c695 --- /dev/null +++ b/tr/algorithms/rdf12-semantics.json @@ -0,0 +1,25 @@ +{ + "spec": { + "title": "RDF 1.2 Semantics", + "url": "https://www.w3.org/TR/rdf12-semantics/" + }, + "algorithms": [ + { + "name": "substitution mapping", + "href": "https://www.w3.org/TR/rdf12-semantics/#dfn-substitution-mapping", + "html": "For RDF terms t, x, and y, we define the substitution mapping t[x/y] inductively, as follows:", + "rationale": "if", + "steps": [ + { + "html": "If t = x, then t[x/y] = y." + }, + { + "html": "Otherwise, if t = (s, p, o), then t[x/y] = (s[x/y], p[x/y], o[x/y])." + }, + { + "html": "Otherwise, t[x/y] = t." + } + ] + } + ] +} \ No newline at end of file diff --git a/tr/dfns/event-timing.json b/tr/dfns/event-timing.json index 929ddc93e566..90a24bc1aa9b 100644 --- a/tr/dfns/event-timing.json +++ b/tr/dfns/event-timing.json @@ -404,25 +404,6 @@ }, "definedIn": "prose" }, - { - "id": "pointer-is-drag-set", - "href": "https://www.w3.org/TR/event-timing/#pointer-is-drag-set", - "linkingText": [ - "pointer is drag set" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "sec-modifications-HTML", - "href": "https://www.w3.org/TR/event-timing/#sec-modifications-HTML", - "title": "Modifications to the HTML specification", - "number": "3.2" - }, - "definedIn": "prose" - }, { "id": "pending-pointer-downs", "href": "https://www.w3.org/TR/event-timing/#pending-pointer-downs", diff --git a/tr/dfns/paint-timing.json b/tr/dfns/paint-timing.json index 6ce086d4cf92..234dd6bd0634 100644 --- a/tr/dfns/paint-timing.json +++ b/tr/dfns/paint-timing.json @@ -206,10 +206,10 @@ "access": "public", "informative": false, "heading": { - "id": "sec-terminology", - "href": "https://www.w3.org/TR/paint-timing/#sec-terminology", - "title": "Terminology", - "number": "2" + "id": "sec-PaintTimingMixin", + "href": "https://www.w3.org/TR/paint-timing/#sec-PaintTimingMixin", + "title": "The PaintTimingMixin interface", + "number": "3" }, "definedIn": "pre" }, @@ -227,10 +227,10 @@ "access": "public", "informative": false, "heading": { - "id": "sec-terminology", - "href": "https://www.w3.org/TR/paint-timing/#sec-terminology", - "title": "Terminology", - "number": "2" + "id": "sec-PaintTimingMixin", + "href": "https://www.w3.org/TR/paint-timing/#sec-PaintTimingMixin", + "title": "The PaintTimingMixin interface", + "number": "3" }, "definedIn": "pre" }, @@ -248,10 +248,10 @@ "access": "public", "informative": false, "heading": { - "id": "sec-terminology", - "href": "https://www.w3.org/TR/paint-timing/#sec-terminology", - "title": "Terminology", - "number": "2" + "id": "sec-PaintTimingMixin", + "href": "https://www.w3.org/TR/paint-timing/#sec-PaintTimingMixin", + "title": "The PaintTimingMixin interface", + "number": "3" }, "definedIn": "pre" }, @@ -269,10 +269,10 @@ "access": "private", "informative": false, "heading": { - "id": "sec-terminology", - "href": "https://www.w3.org/TR/paint-timing/#sec-terminology", - "title": "Terminology", - "number": "2" + "id": "sec-PaintTimingMixin", + "href": "https://www.w3.org/TR/paint-timing/#sec-PaintTimingMixin", + "title": "The PaintTimingMixin interface", + "number": "3" }, "definedIn": "prose" }, @@ -288,10 +288,10 @@ "access": "public", "informative": false, "heading": { - "id": "sec-terminology", - "href": "https://www.w3.org/TR/paint-timing/#sec-terminology", - "title": "Terminology", - "number": "2" + "id": "sec-PaintTimingMixin", + "href": "https://www.w3.org/TR/paint-timing/#sec-PaintTimingMixin", + "title": "The PaintTimingMixin interface", + "number": "3" }, "definedIn": "prose" }, @@ -309,10 +309,10 @@ "access": "private", "informative": false, "heading": { - "id": "sec-terminology", - "href": "https://www.w3.org/TR/paint-timing/#sec-terminology", - "title": "Terminology", - "number": "2" + "id": "sec-PaintTimingMixin", + "href": "https://www.w3.org/TR/paint-timing/#sec-PaintTimingMixin", + "title": "The PaintTimingMixin interface", + "number": "3" }, "definedIn": "dt" }, @@ -330,10 +330,10 @@ "access": "private", "informative": false, "heading": { - "id": "sec-terminology", - "href": "https://www.w3.org/TR/paint-timing/#sec-terminology", - "title": "Terminology", - "number": "2" + "id": "sec-PaintTimingMixin", + "href": "https://www.w3.org/TR/paint-timing/#sec-PaintTimingMixin", + "title": "The PaintTimingMixin interface", + "number": "3" }, "definedIn": "dt" }, @@ -349,10 +349,10 @@ "access": "private", "informative": false, "heading": { - "id": "sec-terminology", - "href": "https://www.w3.org/TR/paint-timing/#sec-terminology", - "title": "Terminology", - "number": "2" + "id": "sec-PaintTimingMixin", + "href": "https://www.w3.org/TR/paint-timing/#sec-PaintTimingMixin", + "title": "The PaintTimingMixin interface", + "number": "3" }, "definedIn": "prose" }, @@ -371,7 +371,7 @@ "id": "sec-PerformancePaintTiming", "href": "https://www.w3.org/TR/paint-timing/#sec-PerformancePaintTiming", "title": "The PerformancePaintTiming interface", - "number": "3" + "number": "4" }, "definedIn": "pre" }, @@ -390,7 +390,7 @@ "id": "sec-associated-image-requests", "href": "https://www.w3.org/TR/paint-timing/#sec-associated-image-requests", "title": "Associated Image Requests", - "number": "4.1" + "number": "5.1" }, "definedIn": "prose" }, @@ -409,7 +409,7 @@ "id": "sec-associated-image-requests", "href": "https://www.w3.org/TR/paint-timing/#sec-associated-image-requests", "title": "Associated Image Requests", - "number": "4.1" + "number": "5.1" }, "definedIn": "prose" }, @@ -428,7 +428,7 @@ "id": "sec-recording-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#sec-recording-paint-timing", "title": "Recording paint timing", - "number": "4.2" + "number": "5.2" }, "definedIn": "prose" }, @@ -449,7 +449,7 @@ "id": "sec-recording-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#sec-recording-paint-timing", "title": "Recording paint timing", - "number": "4.2" + "number": "5.2" }, "definedIn": "prose" }, @@ -470,7 +470,7 @@ "id": "sec-recording-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#sec-recording-paint-timing", "title": "Recording paint timing", - "number": "4.2" + "number": "5.2" }, "definedIn": "prose" }, @@ -491,7 +491,7 @@ "id": "sec-recording-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#sec-recording-paint-timing", "title": "Recording paint timing", - "number": "4.2" + "number": "5.2" }, "definedIn": "prose" }, @@ -510,7 +510,7 @@ "id": "sec-recording-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#sec-recording-paint-timing", "title": "Recording paint timing", - "number": "4.2" + "number": "5.2" }, "definedIn": "prose" }, @@ -529,7 +529,7 @@ "id": "sec-recording-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#sec-recording-paint-timing", "title": "Recording paint timing", - "number": "4.2" + "number": "5.2" }, "definedIn": "prose" }, @@ -548,7 +548,7 @@ "id": "sec-recording-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#sec-recording-paint-timing", "title": "Recording paint timing", - "number": "4.2" + "number": "5.2" }, "definedIn": "prose" }, @@ -567,7 +567,7 @@ "id": "sec-recording-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#sec-recording-paint-timing", "title": "Recording paint timing", - "number": "4.2" + "number": "5.2" }, "definedIn": "prose" }, @@ -586,7 +586,7 @@ "id": "process-image-that-finished-loading", "href": "https://www.w3.org/TR/paint-timing/#process-image-that-finished-loading", "title": "Process image that finished loading", - "number": "4.2.3" + "number": "5.2.3" }, "definedIn": "heading" }, @@ -605,7 +605,7 @@ "id": "process-image-that-finished-loading", "href": "https://www.w3.org/TR/paint-timing/#process-image-that-finished-loading", "title": "Process image that finished loading", - "number": "4.2.3" + "number": "5.2.3" }, "definedIn": "prose" }, @@ -624,7 +624,7 @@ "id": "first-contentful-paint", "href": "https://www.w3.org/TR/paint-timing/#first-contentful-paint", "title": "First Contentful Paint", - "number": "4.3.1" + "number": "5.3.1" }, "definedIn": "heading" }, @@ -643,7 +643,7 @@ "id": "first-contentful-paint", "href": "https://www.w3.org/TR/paint-timing/#first-contentful-paint", "title": "First Contentful Paint", - "number": "4.3.1" + "number": "5.3.1" }, "definedIn": "prose" }, @@ -662,7 +662,7 @@ "id": "mark-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#mark-paint-timing", "title": "Mark paint timing", - "number": "4.3.2" + "number": "5.3.2" }, "definedIn": "heading" }, @@ -681,7 +681,7 @@ "id": "report-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#report-paint-timing", "title": "Report paint timing", - "number": "4.3.3" + "number": "5.3.3" }, "definedIn": "heading" }, @@ -700,7 +700,7 @@ "id": "exposed-for-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#exposed-for-paint-timing", "title": "Exposed for paint timing", - "number": "4.4.1" + "number": "5.4.1" }, "definedIn": "heading" } diff --git a/tr/dfns/rdf12-semantics.json b/tr/dfns/rdf12-semantics.json index 489256e0ff47..668f67d551c6 100644 --- a/tr/dfns/rdf12-semantics.json +++ b/tr/dfns/rdf12-semantics.json @@ -273,6 +273,25 @@ }, "definedIn": "prose" }, + { + "id": "dfn-substitution-mapping", + "href": "https://www.w3.org/TR/rdf12-semantics/#dfn-substitution-mapping", + "linkingText": [ + "substitution mapping" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "notation", + "href": "https://www.w3.org/TR/rdf12-semantics/#notation", + "title": "Notation and Terminology", + "number": "4" + }, + "definedIn": "prose" + }, { "id": "dfn-instance", "href": "https://www.w3.org/TR/rdf12-semantics/#dfn-instance", @@ -1020,6 +1039,25 @@ }, "definedIn": "table" }, + { + "id": "dfn-rdfs4", + "href": "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs4", + "linkingText": [ + "rdfs4" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": true, + "heading": { + "id": "rdfs_patterns", + "href": "https://www.w3.org/TR/rdf12-semantics/#rdfs_patterns", + "title": "Patterns of RDFS entailment (Informative)", + "number": "9.2.1" + }, + "definedIn": "table" + }, { "id": "dfn-rdfs5", "href": "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs5", @@ -1191,25 +1229,6 @@ }, "definedIn": "table" }, - { - "id": "dfn-rdfs4", - "href": "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs4", - "linkingText": [ - "rdfs4" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": true, - "heading": { - "id": "rdfs_patterns", - "href": "https://www.w3.org/TR/rdf12-semantics/#rdfs_patterns", - "title": "Patterns of RDFS entailment (Informative)", - "number": "9.2.1" - }, - "definedIn": "table" - }, { "id": "dfn-rdfs14", "href": "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs14", diff --git a/tr/dfns/webrtc-encoded-transform.json b/tr/dfns/webrtc-encoded-transform.json index c14de002395e..aa9f28aefbba 100644 --- a/tr/dfns/webrtc-encoded-transform.json +++ b/tr/dfns/webrtc-encoded-transform.json @@ -1063,6 +1063,27 @@ }, "definedIn": "dt" }, + { + "id": "dom-rtcencodedvideoframemetadata-receivetime", + "href": "https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata-receivetime", + "linkingText": [ + "receiveTime" + ], + "localLinkingText": [], + "type": "dict-member", + "for": [ + "RTCEncodedVideoFrameMetadata" + ], + "access": "public", + "informative": false, + "heading": { + "id": "RTCEncodedVideoFrameMetadata-members", + "href": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedVideoFrameMetadata-members", + "title": "Members", + "number": "4.2.1" + }, + "definedIn": "dt" + }, { "id": "dom-rtcencodedvideoframemetadata-mimetype", "href": "https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata-mimetype", @@ -1423,6 +1444,27 @@ }, "definedIn": "dt" }, + { + "id": "dom-rtcencodedaudioframemetadata-receivetime", + "href": "https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframemetadata-receivetime", + "linkingText": [ + "receiveTime" + ], + "localLinkingText": [], + "type": "dict-member", + "for": [ + "RTCEncodedAudioFrameMetadata" + ], + "access": "public", + "informative": false, + "heading": { + "id": "RTCEncodedAudioFrameMetadata-members", + "href": "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedAudioFrameMetadata-members", + "title": "Members", + "number": "4.4.1" + }, + "definedIn": "dt" + }, { "id": "dom-rtcencodedaudioframemetadata-mimetype", "href": "https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframemetadata-mimetype", diff --git a/tr/headings/paint-timing.json b/tr/headings/paint-timing.json index c1ddb0ca0253..6611f3bbf237 100644 --- a/tr/headings/paint-timing.json +++ b/tr/headings/paint-timing.json @@ -56,103 +56,110 @@ "title": "Terminology", "number": "2" }, + { + "id": "sec-PaintTimingMixin", + "href": "https://www.w3.org/TR/paint-timing/#sec-PaintTimingMixin", + "level": 2, + "title": "The PaintTimingMixin interface", + "number": "3" + }, { "id": "sec-PerformancePaintTiming", "href": "https://www.w3.org/TR/paint-timing/#sec-PerformancePaintTiming", "level": 2, "title": "The PerformancePaintTiming interface", - "number": "3" + "number": "4" }, { "id": "sec-processing-model", "href": "https://www.w3.org/TR/paint-timing/#sec-processing-model", "level": 2, "title": "Processing model", - "number": "4" + "number": "5" }, { "id": "sec-associated-image-requests", "href": "https://www.w3.org/TR/paint-timing/#sec-associated-image-requests", "level": 3, "title": "Associated Image Requests", - "number": "4.1" + "number": "5.1" }, { "id": "sec-recording-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#sec-recording-paint-timing", "level": 3, "title": "Recording paint timing", - "number": "4.2" + "number": "5.2" }, { "id": "sec-modifications-CSS", "href": "https://www.w3.org/TR/paint-timing/#sec-modifications-CSS", "level": 4, "title": "Modifications to the CSS specification", - "number": "4.2.1" + "number": "5.2.1" }, { "id": "sec-modifications-dom", "href": "https://www.w3.org/TR/paint-timing/#sec-modifications-dom", "level": 4, "title": "Modifications to the HTML specification", - "number": "4.2.2" + "number": "5.2.2" }, { "id": "process-image-that-finished-loading", "href": "https://www.w3.org/TR/paint-timing/#process-image-that-finished-loading", "level": 4, "title": "Process image that finished loading", - "number": "4.2.3" + "number": "5.2.3" }, { "id": "sec-reporting-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#sec-reporting-paint-timing", "level": 3, "title": "Reporting paint timing", - "number": "4.3" + "number": "5.3" }, { "id": "first-contentful-paint", "href": "https://www.w3.org/TR/paint-timing/#first-contentful-paint", "level": 4, "title": "First Contentful Paint", - "number": "4.3.1" + "number": "5.3.1" }, { "id": "mark-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#mark-paint-timing", "level": 4, "title": "Mark paint timing", - "number": "4.3.2" + "number": "5.3.2" }, { "id": "report-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#report-paint-timing", "level": 4, "title": "Report paint timing", - "number": "4.3.3" + "number": "5.3.3" }, { "id": "sec-common-algorithms", "href": "https://www.w3.org/TR/paint-timing/#sec-common-algorithms", "level": 3, "title": "Common algorithms", - "number": "4.4" + "number": "5.4" }, { "id": "exposed-for-paint-timing", "href": "https://www.w3.org/TR/paint-timing/#exposed-for-paint-timing", "level": 4, "title": "Exposed for paint timing", - "number": "4.4.1" + "number": "5.4.1" }, { "id": "acknowledgements", "href": "https://www.w3.org/TR/paint-timing/#acknowledgements", "level": 2, "title": "Acknowledgements", - "number": "5" + "number": "6" }, { "id": "w3c-conformance", diff --git a/tr/headings/rdf12-schema.json b/tr/headings/rdf12-schema.json index 379bf164d6ea..464f8e91f5ca 100644 --- a/tr/headings/rdf12-schema.json +++ b/tr/headings/rdf12-schema.json @@ -99,6 +99,13 @@ "title": "rdf:Property", "number": "2.9" }, + { + "id": "ch_proposition", + "href": "https://www.w3.org/TR/rdf12-schema/#ch_proposition", + "level": 3, + "title": "rdf:Proposition", + "number": "2.10" + }, { "id": "ch_properties", "href": "https://www.w3.org/TR/rdf12-schema/#ch_properties", @@ -127,33 +134,40 @@ "title": "rdf:type", "number": "3.3" }, + { + "id": "ch_reifies", + "href": "https://www.w3.org/TR/rdf12-schema/#ch_reifies", + "level": 3, + "title": "rdf:reifies", + "number": "3.4" + }, { "id": "ch_subclassof", "href": "https://www.w3.org/TR/rdf12-schema/#ch_subclassof", "level": 3, "title": "rdfs:subClassOf", - "number": "3.4" + "number": "3.5" }, { "id": "ch_subpropertyof", "href": "https://www.w3.org/TR/rdf12-schema/#ch_subpropertyof", "level": 3, "title": "rdfs:subPropertyOf", - "number": "3.5" + "number": "3.6" }, { "id": "ch_label", "href": "https://www.w3.org/TR/rdf12-schema/#ch_label", "level": 3, "title": "rdfs:label", - "number": "3.6" + "number": "3.7" }, { "id": "ch_comment", "href": "https://www.w3.org/TR/rdf12-schema/#ch_comment", "level": 3, "title": "rdfs:comment", - "number": "3.7" + "number": "3.8" }, { "id": "ch_domainrange", diff --git a/tr/headings/vc-data-model-2.0.json b/tr/headings/vc-data-model-2.0.json index 28ddee2e37f2..494a6b04ea7c 100644 --- a/tr/headings/vc-data-model-2.0.json +++ b/tr/headings/vc-data-model-2.0.json @@ -115,26 +115,26 @@ "number": "4.4" }, { - "id": "sd-jwt-claim-Nh6ejbMmzbDvs4cQZMPeSXmi1Mih6ypYGtHqx-juMSo", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Nh6ejbMmzbDvs4cQZMPeSXmi1Mih6ypYGtHqx-juMSo", + "id": "sd-jwt-claim-VDFG8lKKLjJHZxjVOBzkYB1MzItwbRfhwPP1b-vUZt0", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-VDFG8lKKLjJHZxjVOBzkYB1MzItwbRfhwPP1b-vUZt0", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-JF2TyjJnGSshJlGhlSarDx3XDJ0zwsluqZVcd1pIUtw", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-JF2TyjJnGSshJlGhlSarDx3XDJ0zwsluqZVcd1pIUtw", + "id": "sd-jwt-claim-aUSNRKMYhidf6Bdmq0W0s9Q9L2WTQOOVYWyfmQ5p9_s", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-aUSNRKMYhidf6Bdmq0W0s9Q9L2WTQOOVYWyfmQ5p9_s", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-GPa70isTx1hi2WrZt3vrBk48ROM7G1SwBmVtCNm8MEE", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-GPa70isTx1hi2WrZt3vrBk48ROM7G1SwBmVtCNm8MEE", + "id": "sd-jwt-claim-ck-ZS1pZm0BSA8mxgMs8mN0Lvh9xqEuNTPyDdeRZGzM", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ck-ZS1pZm0BSA8mxgMs8mN0Lvh9xqEuNTPyDdeRZGzM", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-kI4VUetiPce12zy1uWSv8nTnL5kTM1q973F0IpQwUNE", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-kI4VUetiPce12zy1uWSv8nTnL5kTM1q973F0IpQwUNE", + "id": "sd-jwt-claim-HBjtxu6P9-VqfseDMEV6F6ZUzmpB9yBgCpF-S0AWMJ0", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-HBjtxu6P9-VqfseDMEV6F6ZUzmpB9yBgCpF-S0AWMJ0", "level": 3, "title": "Claim: type" }, @@ -146,26 +146,26 @@ "number": "4.5" }, { - "id": "sd-jwt-claim-ituNhCSyN-EIlIVg-N3N37ZdRZprOjJAp-dwuDSriIk", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ituNhCSyN-EIlIVg-N3N37ZdRZprOjJAp-dwuDSriIk", + "id": "sd-jwt-claim-mxvAI_Jk8Dp818S2tWaJjW_6Aog7bKI7nBwhKtSeNcU", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mxvAI_Jk8Dp818S2tWaJjW_6Aog7bKI7nBwhKtSeNcU", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-E8RWUgFrw0XjTPkLMJIPKrFSqAyB-8QNQfCmkbSc0L8", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-E8RWUgFrw0XjTPkLMJIPKrFSqAyB-8QNQfCmkbSc0L8", + "id": "sd-jwt-claim-OvJTiCUzeql5YJ83_Pd1nlgrXPnLBusAs5ka8z1guTs", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-OvJTiCUzeql5YJ83_Pd1nlgrXPnLBusAs5ka8z1guTs", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-1dWFoPK096q4Q2shF61yNYupef6ZKxdfMXdKdAT9ywI", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-1dWFoPK096q4Q2shF61yNYupef6ZKxdfMXdKdAT9ywI", + "id": "sd-jwt-claim-XVlR95ftAK2SqPsx37O2TFUZmLWzbRg-fDdxbEUxQTM", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-XVlR95ftAK2SqPsx37O2TFUZmLWzbRg-fDdxbEUxQTM", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-wWPp4XCCsDDNQCEdyTvHmHqcCZQANuW-KfP3OUpeaNA", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-wWPp4XCCsDDNQCEdyTvHmHqcCZQANuW-KfP3OUpeaNA", + "id": "sd-jwt-claim-D6ZGC5ILEU2mzrXPW-kUGV7-CbOqXIo3adnM0qII6jw", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-D6ZGC5ILEU2mzrXPW-kUGV7-CbOqXIo3adnM0qII6jw", "level": 3, "title": "Claim: type" }, @@ -177,32 +177,32 @@ "number": "4.6" }, { - "id": "sd-jwt-claim-yCCtDYKS7Dscf9e1YqwUGrHaLeIfRD9uQlXaGIjYDho", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-yCCtDYKS7Dscf9e1YqwUGrHaLeIfRD9uQlXaGIjYDho", + "id": "sd-jwt-claim-jjqr_kmJoNCNi19pp1IobI_ga02cABQRtA1-DllsgKY", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-jjqr_kmJoNCNi19pp1IobI_ga02cABQRtA1-DllsgKY", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-WMeJn-vXzbHrBWwQ2MSoolwqylCR9DtdyyrjiwBD3lw", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-WMeJn-vXzbHrBWwQ2MSoolwqylCR9DtdyyrjiwBD3lw", + "id": "sd-jwt-claim-O3IauCi4bQqJpAfO1mn6rWHzkZKbbzFuqBjUdh6H0sU", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-O3IauCi4bQqJpAfO1mn6rWHzkZKbbzFuqBjUdh6H0sU", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-4pyD6JN0s5TaoXQFaChAFMjmiEb8R6Muv9Sl0EA_ZKs", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-4pyD6JN0s5TaoXQFaChAFMjmiEb8R6Muv9Sl0EA_ZKs", + "id": "sd-jwt-claim-Pt0vXEG5kCKJ1oAinoAu0e2DGool6-1MeUM7mVSGGOA", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Pt0vXEG5kCKJ1oAinoAu0e2DGool6-1MeUM7mVSGGOA", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-781Kf5LkJTVc0Ggx-1RYl8vu8Mf-gHK_55b93BYcm6k", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-781Kf5LkJTVc0Ggx-1RYl8vu8Mf-gHK_55b93BYcm6k", + "id": "sd-jwt-claim-EwhEi2viq-r7lCxiDEY4FY1SWXveVBtW6KykwDdaMVY", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-EwhEi2viq-r7lCxiDEY4FY1SWXveVBtW6KykwDdaMVY", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-LFyr9NnJxNhP_-w3Legt2XjR-yKK3Oi5yHk4ZVj9qxk", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-LFyr9NnJxNhP_-w3Legt2XjR-yKK3Oi5yHk4ZVj9qxk", + "id": "sd-jwt-claim-j2RfWDY5zyVE-_xWnucAcwfbqAUxUH2g7Fq5MnSQjQc", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-j2RfWDY5zyVE-_xWnucAcwfbqAUxUH2g7Fq5MnSQjQc", "level": 3, "title": "Claim: type" }, @@ -214,56 +214,56 @@ "number": "4.7" }, { - "id": "sd-jwt-claim-FUQg3a6PZ1SAk_IOMA-vSLuhuLXIiczbcmSioSg6_8E", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-FUQg3a6PZ1SAk_IOMA-vSLuhuLXIiczbcmSioSg6_8E", + "id": "sd-jwt-claim-SvvGKivZq_57VvEnrUN-vsED44VWa6y-XZXGmJehglM", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-SvvGKivZq_57VvEnrUN-vsED44VWa6y-XZXGmJehglM", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-NFsNNJ__hcM9nnoBuRa6Y7tlgOIKvQxYMbGV4LixNkY", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-NFsNNJ__hcM9nnoBuRa6Y7tlgOIKvQxYMbGV4LixNkY", + "id": "sd-jwt-claim-kK31JGbBGyYvRs0GM2Iv3AZgjd5P8H-JdAOq863fyU0", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-kK31JGbBGyYvRs0GM2Iv3AZgjd5P8H-JdAOq863fyU0", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-y-U0X9n9PiX3Evlj-dGu_T6l9BQlZKizUbO85Cri9A0", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-y-U0X9n9PiX3Evlj-dGu_T6l9BQlZKizUbO85Cri9A0", + "id": "sd-jwt-claim-9EjZPp_7ifZ9GbJUNo5aMbrYZkavv6-eJcXo9nePwqc", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-9EjZPp_7ifZ9GbJUNo5aMbrYZkavv6-eJcXo9nePwqc", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-JTvY2gnw3hGDq55daZXR0bcPOIDzd1aoYXRhalrKjIU", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-JTvY2gnw3hGDq55daZXR0bcPOIDzd1aoYXRhalrKjIU", + "id": "sd-jwt-claim-KjwpaF5asiVh9EFzP6cfGBThpMmFsmtcCglmg22usGo", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-KjwpaF5asiVh9EFzP6cfGBThpMmFsmtcCglmg22usGo", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-cMVgATMWjiK-EvXknvq8c317Y1lOkR-cvc8MX6SO4-s", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-cMVgATMWjiK-EvXknvq8c317Y1lOkR-cvc8MX6SO4-s", + "id": "sd-jwt-claim-7ERkC6yMFBkORF-wCgRdGQ7QE75gZrWibfH0lhtg4Bg", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-7ERkC6yMFBkORF-wCgRdGQ7QE75gZrWibfH0lhtg4Bg", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-TaX25uwSeZwrKb2Ie-07mIRBTASa-CPqFwCXWpduYaE", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-TaX25uwSeZwrKb2Ie-07mIRBTASa-CPqFwCXWpduYaE", + "id": "sd-jwt-claim-Z5qLWkg3k_jry3CGU0xuqXlq9Tows8Ii11dRANnaHDg", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Z5qLWkg3k_jry3CGU0xuqXlq9Tows8Ii11dRANnaHDg", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-B7cgcHfNcjtsUfDXTeVGqlrlelUunJfeiClHe8Pe5Jg", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-B7cgcHfNcjtsUfDXTeVGqlrlelUunJfeiClHe8Pe5Jg", + "id": "sd-jwt-claim-u9Nz9Pn0m58yJ1djZ0tmYmYUaU6GrhrrtyvAZoNIC0I", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-u9Nz9Pn0m58yJ1djZ0tmYmYUaU6GrhrrtyvAZoNIC0I", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-jsvtP_n8m04opVOV5MYkF6JjZuz7BgUXrh1euZnPKcA", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-jsvtP_n8m04opVOV5MYkF6JjZuz7BgUXrh1euZnPKcA", + "id": "sd-jwt-claim-lLb59E39RpQrWkmdj1Hpmb7HoafeMgAO4Ps_SOJO8sU", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-lLb59E39RpQrWkmdj1Hpmb7HoafeMgAO4Ps_SOJO8sU", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-_GzpDeO-iNUfBL7--4UrZ7NsfVpIPtYkFxhGx1GMjZQ", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-_GzpDeO-iNUfBL7--4UrZ7NsfVpIPtYkFxhGx1GMjZQ", + "id": "sd-jwt-claim-mGtS_yqKhVPpgo6tH0dkF1epgWtE9KRnOL3p_9yHeao", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mGtS_yqKhVPpgo6tH0dkF1epgWtE9KRnOL3p_9yHeao", "level": 3, "title": "Claim: type" }, @@ -275,26 +275,26 @@ "number": "4.8" }, { - "id": "sd-jwt-claim-i5iyNMs5tDuDqCOGBe5YbpjI226A7IvU316OnenRRJA", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-i5iyNMs5tDuDqCOGBe5YbpjI226A7IvU316OnenRRJA", + "id": "sd-jwt-claim-FXqedp_qTeF6euQImC-Vzoc--80YOt3vTalxW8OiBrU", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-FXqedp_qTeF6euQImC-Vzoc--80YOt3vTalxW8OiBrU", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-BO8L-hPC0XRsQOybNzboooCJH-JMNnikaCCOJGhLq4M", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-BO8L-hPC0XRsQOybNzboooCJH-JMNnikaCCOJGhLq4M", + "id": "sd-jwt-claim-S_pLXYsXsZTPrsX81jsnMWIoJqsjSh5jHpLZq5sSIPA", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-S_pLXYsXsZTPrsX81jsnMWIoJqsjSh5jHpLZq5sSIPA", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-1TRUXTqL9TRYbvebFmUS60vug-tFVcWEbNraNmYo6qk", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-1TRUXTqL9TRYbvebFmUS60vug-tFVcWEbNraNmYo6qk", + "id": "sd-jwt-claim-pRRkpdqQSlifOaf7u1rjnbM9q4S1ujfa0ZALZzgoMfA", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-pRRkpdqQSlifOaf7u1rjnbM9q4S1ujfa0ZALZzgoMfA", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-N9CDgXW9tBdQS9tkp_xLVVzU69qdriNLo5Oz110snns", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-N9CDgXW9tBdQS9tkp_xLVVzU69qdriNLo5Oz110snns", + "id": "sd-jwt-claim-hwsDwiUz3Afsa8wByIYNvyVTV3Mw-wdm2-gki387cyE", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-hwsDwiUz3Afsa8wByIYNvyVTV3Mw-wdm2-gki387cyE", "level": 3, "title": "Claim: type" }, @@ -306,26 +306,26 @@ "number": "4.9" }, { - "id": "sd-jwt-claim-8AiBfnvQUpmK9pIb8iqQfXXlcZ8RR-E6RCLOcaHBYOw", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-8AiBfnvQUpmK9pIb8iqQfXXlcZ8RR-E6RCLOcaHBYOw", + "id": "sd-jwt-claim-pNUDHJktKqUGWG5PQlCa51reNWS1ErhRfeO2kd_r0Cs", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-pNUDHJktKqUGWG5PQlCa51reNWS1ErhRfeO2kd_r0Cs", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-qmGqgQ0kSQLm_QfTLtdn5KnMKXox5yXK4pffPT1ChRM", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-qmGqgQ0kSQLm_QfTLtdn5KnMKXox5yXK4pffPT1ChRM", + "id": "sd-jwt-claim-BBEvVfJmMDsb1q8XjdxjVfgoD-WoBw9oroxYpKwX6Y4", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-BBEvVfJmMDsb1q8XjdxjVfgoD-WoBw9oroxYpKwX6Y4", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-fDtZMCRUmZC-7oPoOn4fUrtjNJC3fpCXHmwHKoG6qNY", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-fDtZMCRUmZC-7oPoOn4fUrtjNJC3fpCXHmwHKoG6qNY", + "id": "sd-jwt-claim-VQY1GeRG9pP2d4gN_bMkyDq2oCB-9dkWfnqPEn-r_yk", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-VQY1GeRG9pP2d4gN_bMkyDq2oCB-9dkWfnqPEn-r_yk", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-XwtpomDa2ljMmLwmAfCaUmH5eCQhXBe3MognaxP6Ol4", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-XwtpomDa2ljMmLwmAfCaUmH5eCQhXBe3MognaxP6Ol4", + "id": "sd-jwt-claim-XIKgJX0ZgPCVeAoTgM2tgjdFmuqgWyGO_Znqd3OmNOk", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-XIKgJX0ZgPCVeAoTgM2tgjdFmuqgWyGO_Znqd3OmNOk", "level": 3, "title": "Claim: type" }, @@ -403,20 +403,20 @@ "number": "5.2" }, { - "id": "sd-jwt-claim-JdWM8Yroujbnwi-X6jEHd16NwAKgTK1SeNorjYqxK9U", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-JdWM8Yroujbnwi-X6jEHd16NwAKgTK1SeNorjYqxK9U", + "id": "sd-jwt-claim-MR8qahrVhBfCaWI9D8Xb1AYM0WCX8V0QUc_f3SYwmC0", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-MR8qahrVhBfCaWI9D8Xb1AYM0WCX8V0QUc_f3SYwmC0", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-HegxBfPlVhLAk7SBxj7pfuRvzB392Vx1c8lJ8VZR9JQ", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-HegxBfPlVhLAk7SBxj7pfuRvzB392Vx1c8lJ8VZR9JQ", + "id": "sd-jwt-claim-saW5wF82UxvvG7Nm2nFCu1vvwjpxZxgO45Z36PFUGYk", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-saW5wF82UxvvG7Nm2nFCu1vvwjpxZxgO45Z36PFUGYk", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-UF3iPqujORIvLgILt_FrqoMsl-bDcu7vmxQlGFbhlw8", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-UF3iPqujORIvLgILt_FrqoMsl-bDcu7vmxQlGFbhlw8", + "id": "sd-jwt-claim-6XpZ_xpzVitaOX1ROJs5kpyTmYbzmO969eDOjFz5z20", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-6XpZ_xpzVitaOX1ROJs5kpyTmYbzmO969eDOjFz5z20", "level": 3, "title": "Claim: id" }, @@ -654,20 +654,20 @@ "number": "8.10" }, { - "id": "sd-jwt-claim-dOmXPCiLtAFf6J-ps4k07hLkHmf42lKM9Bv3_B8BS78", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-dOmXPCiLtAFf6J-ps4k07hLkHmf42lKM9Bv3_B8BS78", + "id": "sd-jwt-claim-UzQ84CBH3andYvdkL9Fi3CSN_qtx2ZXge2OxJoRNOew", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-UzQ84CBH3andYvdkL9Fi3CSN_qtx2ZXge2OxJoRNOew", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-h33KcU1Zq9L6lq1gKLn19qNa6DZdxu_cz7fSnvDZxag", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-h33KcU1Zq9L6lq1gKLn19qNa6DZdxu_cz7fSnvDZxag", + "id": "sd-jwt-claim-LltJQMOE7_7Ih80VkLcBW7r40fTBRGsFHYwGMWboxKc", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-LltJQMOE7_7Ih80VkLcBW7r40fTBRGsFHYwGMWboxKc", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-dSN1oWN16asGYwZ6581GJmdk6ddlT7A9Kb0yOzfBCn4", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-dSN1oWN16asGYwZ6581GJmdk6ddlT7A9Kb0yOzfBCn4", + "id": "sd-jwt-claim-DeYkY8TpFUOehAJ90ErN38RxFJrxj3lvW-1vgN6aOiM", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-DeYkY8TpFUOehAJ90ErN38RxFJrxj3lvW-1vgN6aOiM", "level": 3, "title": "Claim: type" }, diff --git a/tr/idl/webrtc-encoded-transform.idl b/tr/idl/webrtc-encoded-transform.idl index adc25f1617bc..5025a5d254d6 100644 --- a/tr/idl/webrtc-encoded-transform.idl +++ b/tr/idl/webrtc-encoded-transform.idl @@ -75,6 +75,7 @@ dictionary RTCEncodedVideoFrameMetadata { sequence contributingSources; long long timestamp; // microseconds unsigned long rtpTimestamp; + DOMHighResTimeStamp receiveTime; DOMString mimeType; }; @@ -98,6 +99,7 @@ dictionary RTCEncodedAudioFrameMetadata { sequence contributingSources; short sequenceNumber; unsigned long rtpTimestamp; + DOMHighResTimeStamp receiveTime; DOMString mimeType; }; diff --git a/tr/ids/event-timing.json b/tr/ids/event-timing.json index ecf8ff105569..2aa556630d28 100644 --- a/tr/ids/event-timing.json +++ b/tr/ids/event-timing.json @@ -230,8 +230,6 @@ "https://www.w3.org/TR/event-timing/#ref-for-performanceeventtiming%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/event-timing/#pointer-interaction-value-map", "https://www.w3.org/TR/event-timing/#ref-for-ordered-map%E2%91%A0", - "https://www.w3.org/TR/event-timing/#pointer-is-drag-set", - "https://www.w3.org/TR/event-timing/#ref-for-ordered-set", "https://www.w3.org/TR/event-timing/#pending-pointer-downs", "https://www.w3.org/TR/event-timing/#ref-for-ordered-map%E2%91%A1", "https://www.w3.org/TR/event-timing/#ref-for-performanceeventtiming%E2%91%A0%E2%91%A1", @@ -280,7 +278,6 @@ "https://www.w3.org/TR/event-timing/#ref-for-event-type-compositionstart%E2%91%A0", "https://www.w3.org/TR/event-timing/#ref-for-event-type-input%E2%91%A0", "https://www.w3.org/TR/event-timing/#ref-for-the-pointercancel-event%E2%91%A0", - "https://www.w3.org/TR/event-timing/#ref-for-the-pointermove-event%E2%91%A0", "https://www.w3.org/TR/event-timing/#ref-for-the-pointerup-event%E2%91%A2", "https://www.w3.org/TR/event-timing/#ref-for-event-type-click%E2%91%A2", "https://www.w3.org/TR/event-timing/#ref-for-event-type-keydown%E2%91%A2", @@ -289,7 +286,6 @@ "https://www.w3.org/TR/event-timing/#ref-for-concept-relevant-global%E2%91%A4", "https://www.w3.org/TR/event-timing/#ref-for-pending-key-downs", "https://www.w3.org/TR/event-timing/#ref-for-pointer-interaction-value-map", - "https://www.w3.org/TR/event-timing/#ref-for-pointer-is-drag-set", "https://www.w3.org/TR/event-timing/#ref-for-pending-pointer-downs", "https://www.w3.org/TR/event-timing/#ref-for-event-type-keyup%E2%91%A2", "https://www.w3.org/TR/event-timing/#ref-for-dom-keyboardevent-iscomposing", @@ -312,12 +308,10 @@ "https://www.w3.org/TR/event-timing/#ref-for-increase-interaction-count%E2%91%A0", "https://www.w3.org/TR/event-timing/#ref-for-user-interaction-value%E2%91%A2", "https://www.w3.org/TR/event-timing/#ref-for-the-pointercancel-event%E2%91%A1", - "https://www.w3.org/TR/event-timing/#ref-for-the-pointermove-event%E2%91%A1", "https://www.w3.org/TR/event-timing/#ref-for-the-pointerup-event%E2%91%A3", "https://www.w3.org/TR/event-timing/#ref-for-event-type-click%E2%91%A3", "https://www.w3.org/TR/event-timing/#ref-for-dom-pointerevent-pointerid", "https://www.w3.org/TR/event-timing/#ref-for-event-type-click%E2%91%A4", - "https://www.w3.org/TR/event-timing/#ref-for-the-pointermove-event%E2%91%A2", "https://www.w3.org/TR/event-timing/#ref-for-the-pointerup-event%E2%91%A4", "https://www.w3.org/TR/event-timing/#ref-for-the-pointercancel-event%E2%91%A2", "https://www.w3.org/TR/event-timing/#ref-for-performanceeventtiming%E2%91%A0%E2%91%A4", @@ -484,7 +478,6 @@ "https://www.w3.org/TR/event-timing/#32dd7834", "https://www.w3.org/TR/event-timing/#3fca5a9e", "https://www.w3.org/TR/event-timing/#7d4424b2", - "https://www.w3.org/TR/event-timing/#15e48c39", "https://www.w3.org/TR/event-timing/#0e6b2056", "https://www.w3.org/TR/event-timing/#12d6b9a8", "https://www.w3.org/TR/event-timing/#77a05ba3", @@ -508,7 +501,7 @@ "https://www.w3.org/TR/event-timing/#31982c92", "https://www.w3.org/TR/event-timing/#4da4b1df", "https://www.w3.org/TR/event-timing/#d47009fc", - "https://www.w3.org/TR/event-timing/#8cb82bed", + "https://www.w3.org/TR/event-timing/#f229379e", "https://www.w3.org/TR/event-timing/#b7656f31", "https://www.w3.org/TR/event-timing/#f05d99d9", "https://www.w3.org/TR/event-timing/#0f9a8616", @@ -556,7 +549,7 @@ "https://www.w3.org/TR/event-timing/#biblio-paint-timing", "https://www.w3.org/TR/event-timing/#biblio-performance-timeline-2", "https://www.w3.org/TR/event-timing/#biblio-pointerevents", - "https://www.w3.org/TR/event-timing/#biblio-pointerevents3", + "https://www.w3.org/TR/event-timing/#biblio-pointerevents4", "https://www.w3.org/TR/event-timing/#biblio-rfc2119", "https://www.w3.org/TR/event-timing/#biblio-touch-events", "https://www.w3.org/TR/event-timing/#biblio-uievents", diff --git a/tr/ids/paint-timing.json b/tr/ids/paint-timing.json index 796984e4dbad..4580919d8292 100644 --- a/tr/ids/paint-timing.json +++ b/tr/ids/paint-timing.json @@ -25,7 +25,6 @@ "https://www.w3.org/TR/paint-timing/#ref-for-generated-content", "https://www.w3.org/TR/paint-timing/#paintable-pseudo-element", "https://www.w3.org/TR/paint-timing/#ref-for-used-value", - "https://www.w3.org/TR/paint-timing/#ref-for-propdef-visibility", "https://www.w3.org/TR/paint-timing/#ref-for-used-value%E2%91%A0", "https://www.w3.org/TR/paint-timing/#ref-for-opacity", "https://www.w3.org/TR/paint-timing/#ref-for-box", @@ -75,7 +74,7 @@ "https://www.w3.org/TR/paint-timing/#paintable-bounding-rect", "https://www.w3.org/TR/paint-timing/#ref-for-concept-element%E2%91%A1", "https://www.w3.org/TR/paint-timing/#ref-for-dom-element-getboundingclientrect", - "https://www.w3.org/TR/paint-timing/#ref-for-concept-document", + "https://www.w3.org/TR/paint-timing/#ref-for-clone-a-node-document", "https://www.w3.org/TR/paint-timing/#ref-for-scrolling-area", "https://www.w3.org/TR/paint-timing/#ref-for-paintable-bounding-rect", "https://www.w3.org/TR/paint-timing/#ref-for-concept-element%E2%91%A2", @@ -83,14 +82,13 @@ "https://www.w3.org/TR/paint-timing/#paintable", "https://www.w3.org/TR/paint-timing/#ref-for-being-rendered", "https://www.w3.org/TR/paint-timing/#ref-for-used-value%E2%91%A3", - "https://www.w3.org/TR/paint-timing/#ref-for-propdef-visibility%E2%91%A0", "https://www.w3.org/TR/paint-timing/#ref-for-used-value%E2%91%A4", "https://www.w3.org/TR/paint-timing/#ref-for-opacity%E2%91%A1", "https://www.w3.org/TR/paint-timing/#ref-for-concept-element%E2%91%A4", "https://www.w3.org/TR/paint-timing/#ref-for-first-contentful-paint", "https://www.w3.org/TR/paint-timing/#ref-for-paintable-bounding-rect%E2%91%A0", "https://www.w3.org/TR/paint-timing/#ref-for-scrolling-area%E2%91%A0", - "https://www.w3.org/TR/paint-timing/#ref-for-concept-document%E2%91%A0", + "https://www.w3.org/TR/paint-timing/#ref-for-clone-a-node-document%E2%91%A0", "https://www.w3.org/TR/paint-timing/#ref-for-concept-element%E2%91%A5", "https://www.w3.org/TR/paint-timing/#first-paint", "https://www.w3.org/TR/paint-timing/#ref-for-dom-domhighrestimestamp", @@ -98,6 +96,7 @@ "https://www.w3.org/TR/paint-timing/#paint-timing-eligible", "https://www.w3.org/TR/paint-timing/#ref-for-top-level-browsing-context", "https://www.w3.org/TR/paint-timing/#ref-for-nested-browsing-context", + "https://www.w3.org/TR/paint-timing/#sec-PaintTimingMixin", "https://www.w3.org/TR/paint-timing/#ref-for-painttimingmixin", "https://www.w3.org/TR/paint-timing/#ref-for-Exposed", "https://www.w3.org/TR/paint-timing/#painttimingmixin", @@ -237,7 +236,7 @@ "https://www.w3.org/TR/paint-timing/#sec-reporting-paint-timing", "https://www.w3.org/TR/paint-timing/#first-contentful-paint", "https://www.w3.org/TR/paint-timing/#ref-for-first-contentful-paint%E2%91%A4", - "https://www.w3.org/TR/paint-timing/#ref-for-concept-document%E2%91%A1", + "https://www.w3.org/TR/paint-timing/#ref-for-clone-a-node-document%E2%91%A1", "https://www.w3.org/TR/paint-timing/#should-report-first-contentful-paint", "https://www.w3.org/TR/paint-timing/#ref-for-set-of-previously-reported-paints", "https://www.w3.org/TR/paint-timing/#ref-for-concept-element%E2%91%A6", @@ -246,8 +245,8 @@ "https://www.w3.org/TR/paint-timing/#mark-paint-timing", "https://www.w3.org/TR/paint-timing/#ref-for-mark-paint-timing", "https://www.w3.org/TR/paint-timing/#ref-for-mark-paint-timing%E2%91%A0", - "https://www.w3.org/TR/paint-timing/#ref-for-concept-document%E2%91%A2", - "https://www.w3.org/TR/paint-timing/#ref-for-concept-document%E2%91%A3", + "https://www.w3.org/TR/paint-timing/#ref-for-clone-a-node-document%E2%91%A2", + "https://www.w3.org/TR/paint-timing/#ref-for-clone-a-node-document%E2%91%A3", "https://www.w3.org/TR/paint-timing/#ref-for-concept-document-bc", "https://www.w3.org/TR/paint-timing/#ref-for-paint-timing-eligible%E2%91%A0", "https://www.w3.org/TR/paint-timing/#ref-for-paint-timing-info%E2%91%A1", @@ -268,6 +267,8 @@ "https://www.w3.org/TR/paint-timing/#ref-for-set-of-elements-with-rendered-text%E2%91%A0", "https://www.w3.org/TR/paint-timing/#ref-for-set-append%E2%91%A1", "https://www.w3.org/TR/paint-timing/#ref-for-set-of-previously-reported-paints%E2%91%A0", + "https://www.w3.org/TR/paint-timing/#ref-for-current-frame-timing-info", + "https://www.w3.org/TR/paint-timing/#ref-for-current-frame-timing-info%E2%91%A0", "https://www.w3.org/TR/paint-timing/#ref-for-first-paint%E2%91%A0", "https://www.w3.org/TR/paint-timing/#ref-for-report-paint-timing", "https://www.w3.org/TR/paint-timing/#ref-for-first-paint%E2%91%A1", @@ -276,16 +277,17 @@ "https://www.w3.org/TR/paint-timing/#ref-for-report-paint-timing%E2%91%A0", "https://www.w3.org/TR/paint-timing/#ref-for-first-paint%E2%91%A2", "https://www.w3.org/TR/paint-timing/#ref-for-first-contentful-paint%E2%91%A1", - "https://www.w3.org/TR/paint-timing/#ref-for-concept-document%E2%91%A4", - "https://www.w3.org/TR/paint-timing/#ref-for-concept-document%E2%91%A5", + "https://www.w3.org/TR/paint-timing/#ref-for-clone-a-node-document%E2%91%A4", + "https://www.w3.org/TR/paint-timing/#ref-for-clone-a-node-document%E2%91%A5", "https://www.w3.org/TR/paint-timing/#ref-for-first-paint%E2%91%A3", - "https://www.w3.org/TR/paint-timing/#ref-for-concept-document%E2%91%A6", + "https://www.w3.org/TR/paint-timing/#ref-for-clone-a-node-document%E2%91%A6", "https://www.w3.org/TR/paint-timing/#ref-for-contentful%E2%91%A0", "https://www.w3.org/TR/paint-timing/#ref-for-first-contentful-paint%E2%91%A2", "https://www.w3.org/TR/paint-timing/#ref-for-first-paint%E2%91%A4", "https://www.w3.org/TR/paint-timing/#ref-for-first-contentful-paint%E2%91%A3", "https://www.w3.org/TR/paint-timing/#ref-for-report-largest-contentful-paint", "https://www.w3.org/TR/paint-timing/#ref-for-report-element-timing", + "https://www.w3.org/TR/paint-timing/#ref-for-queue-a-long-animation-frame-entry", "https://www.w3.org/TR/paint-timing/#ref-for-in-parallel", "https://www.w3.org/TR/paint-timing/#ref-for-paint-timing-info-implementation-defined-presentation-time%E2%91%A1", "https://www.w3.org/TR/paint-timing/#ref-for-dfn-current-high-resolution-time%E2%91%A1", @@ -319,7 +321,7 @@ "https://www.w3.org/TR/paint-timing/#ref-for-exposed-for-paint-timing", "https://www.w3.org/TR/paint-timing/#ref-for-concept-element%E2%91%A7", "https://www.w3.org/TR/paint-timing/#ref-for-exposed-for-paint-timing%E2%91%A0", - "https://www.w3.org/TR/paint-timing/#ref-for-concept-document%E2%91%A7", + "https://www.w3.org/TR/paint-timing/#ref-for-clone-a-node-document%E2%91%A7", "https://www.w3.org/TR/paint-timing/#ref-for-connected", "https://www.w3.org/TR/paint-timing/#ref-for-relevant-settings-object", "https://www.w3.org/TR/paint-timing/#ref-for-concept-relevant-global%E2%91%A3", @@ -350,20 +352,19 @@ "https://www.w3.org/TR/paint-timing/#d4119dee", "https://www.w3.org/TR/paint-timing/#1a2b1083", "https://www.w3.org/TR/paint-timing/#8e52c2e2", - "https://www.w3.org/TR/paint-timing/#5c159f8f", - "https://www.w3.org/TR/paint-timing/#6b4fc208", - "https://www.w3.org/TR/paint-timing/#299e10e4", - "https://www.w3.org/TR/paint-timing/#aeb9e119", + "https://www.w3.org/TR/paint-timing/#95bf6f06", + "https://www.w3.org/TR/paint-timing/#0923db9e", + "https://www.w3.org/TR/paint-timing/#a9db5d6d", + "https://www.w3.org/TR/paint-timing/#c9e837e8", "https://www.w3.org/TR/paint-timing/#607515e7", "https://www.w3.org/TR/paint-timing/#f9fc4a3c", - "https://www.w3.org/TR/paint-timing/#5d5f4fe6", "https://www.w3.org/TR/paint-timing/#9f97cd15", "https://www.w3.org/TR/paint-timing/#85394472", "https://www.w3.org/TR/paint-timing/#296f3551", "https://www.w3.org/TR/paint-timing/#597088f0", "https://www.w3.org/TR/paint-timing/#9638f92b", "https://www.w3.org/TR/paint-timing/#da8b8e0e", - "https://www.w3.org/TR/paint-timing/#a973e0fe", + "https://www.w3.org/TR/paint-timing/#a84c14c9", "https://www.w3.org/TR/paint-timing/#27d9b7ea", "https://www.w3.org/TR/paint-timing/#f7960529", "https://www.w3.org/TR/paint-timing/#3f4f9d05", @@ -401,6 +402,8 @@ "https://www.w3.org/TR/paint-timing/#692595fe", "https://www.w3.org/TR/paint-timing/#0698d556", "https://www.w3.org/TR/paint-timing/#984221ca", + "https://www.w3.org/TR/paint-timing/#7d6635d4", + "https://www.w3.org/TR/paint-timing/#51fa7442", "https://www.w3.org/TR/paint-timing/#8fee9208", "https://www.w3.org/TR/paint-timing/#c70a9756", "https://www.w3.org/TR/paint-timing/#31c80293", @@ -423,10 +426,9 @@ "https://www.w3.org/TR/paint-timing/#biblio-css-backgrounds-3", "https://www.w3.org/TR/paint-timing/#biblio-css-cascade-5", "https://www.w3.org/TR/paint-timing/#biblio-css-color-3", - "https://www.w3.org/TR/paint-timing/#biblio-css-display-3", + "https://www.w3.org/TR/paint-timing/#biblio-css-display-4", "https://www.w3.org/TR/paint-timing/#biblio-css-fonts-4", "https://www.w3.org/TR/paint-timing/#biblio-css-text-4", - "https://www.w3.org/TR/paint-timing/#biblio-css22", "https://www.w3.org/TR/paint-timing/#biblio-cssom-view-1", "https://www.w3.org/TR/paint-timing/#biblio-dom", "https://www.w3.org/TR/paint-timing/#biblio-element-timing", diff --git a/tr/ids/rdf12-schema.json b/tr/ids/rdf12-schema.json index 02efddd0c282..2c7824ed356c 100644 --- a/tr/ids/rdf12-schema.json +++ b/tr/ids/rdf12-schema.json @@ -49,6 +49,8 @@ "https://www.w3.org/TR/rdf12-schema/#ref-for-index-term-json-literal-values-1", "https://www.w3.org/TR/rdf12-schema/#ch_property", "https://www.w3.org/TR/rdf12-schema/#x2-9-rdf-property", + "https://www.w3.org/TR/rdf12-schema/#ch_proposition", + "https://www.w3.org/TR/rdf12-schema/#x2-10-rdf-proposition", "https://www.w3.org/TR/rdf12-schema/#ch_properties", "https://www.w3.org/TR/rdf12-schema/#x3-properties", "https://www.w3.org/TR/rdf12-schema/#def-subproperty", @@ -60,15 +62,17 @@ "https://www.w3.org/TR/rdf12-schema/#x3-2-rdfs-domain", "https://www.w3.org/TR/rdf12-schema/#ch_type", "https://www.w3.org/TR/rdf12-schema/#x3-3-rdf-type", + "https://www.w3.org/TR/rdf12-schema/#ch_reifies", + "https://www.w3.org/TR/rdf12-schema/#x3-4-rdf-reifies", "https://www.w3.org/TR/rdf12-schema/#ch_subclassof", - "https://www.w3.org/TR/rdf12-schema/#x3-4-rdfs-subclassof", + "https://www.w3.org/TR/rdf12-schema/#x3-5-rdfs-subclassof", "https://www.w3.org/TR/rdf12-schema/#ch_subpropertyof", - "https://www.w3.org/TR/rdf12-schema/#x3-5-rdfs-subpropertyof", + "https://www.w3.org/TR/rdf12-schema/#x3-6-rdfs-subpropertyof", "https://www.w3.org/TR/rdf12-schema/#ch_label", - "https://www.w3.org/TR/rdf12-schema/#x3-6-rdfs-label", + "https://www.w3.org/TR/rdf12-schema/#x3-7-rdfs-label", "https://www.w3.org/TR/rdf12-schema/#ref-for-index-term-literal-2", "https://www.w3.org/TR/rdf12-schema/#ch_comment", - "https://www.w3.org/TR/rdf12-schema/#x3-7-rdfs-comment", + "https://www.w3.org/TR/rdf12-schema/#x3-8-rdfs-comment", "https://www.w3.org/TR/rdf12-schema/#ref-for-index-term-literal-3", "https://www.w3.org/TR/rdf12-schema/#ch_domainrange", "https://www.w3.org/TR/rdf12-schema/#x4-using-the-domain-and-range-vocabulary", diff --git a/tr/ids/rdf12-semantics.json b/tr/ids/rdf12-semantics.json index 9f8c2c79f3ca..ab9d5b96571e 100644 --- a/tr/ids/rdf12-semantics.json +++ b/tr/ids/rdf12-semantics.json @@ -106,6 +106,7 @@ "https://www.w3.org/TR/rdf12-semantics/#dfn-proper-subgraph", "https://www.w3.org/TR/rdf12-semantics/#dfn-ground", "https://www.w3.org/TR/rdf12-semantics/#dfn-appears-in", + "https://www.w3.org/TR/rdf12-semantics/#dfn-substitution-mapping", "https://www.w3.org/TR/rdf12-semantics/#dfn-instance", "https://www.w3.org/TR/rdf12-semantics/#issue-container-generatedID", "https://www.w3.org/TR/rdf12-semantics/#h-issue", @@ -399,6 +400,7 @@ "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs1", "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs2", "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs3", + "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs4", "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs5", "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs6", "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs7", @@ -408,10 +410,6 @@ "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs11", "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs12", "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs13", - "https://www.w3.org/TR/rdf12-semantics/#rdfs_entailment_patterns_recursive", - "https://www.w3.org/TR/rdf12-semantics/#ref-for-dfn-appears-in-2", - "https://www.w3.org/TR/rdf12-semantics/#ref-for-dfn-entails-recognizing-d-2", - "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs4", "https://www.w3.org/TR/rdf12-semantics/#dfn-rdfs14", "https://www.w3.org/TR/rdf12-semantics/#ref-for-dfn-unsatisfiable-5", "https://www.w3.org/TR/rdf12-semantics/#rdf_datasets", diff --git a/tr/ids/vc-data-model-2.0.json b/tr/ids/vc-data-model-2.0.json index b0019b5271f1..1e3fdd94e596 100644 --- a/tr/ids/vc-data-model-2.0.json +++ b/tr/ids/vc-data-model-2.0.json @@ -470,16 +470,16 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab1jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab1cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab1sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-otxy23f-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-otxy23f-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-otxy23f-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-otxy23f-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-otxy23f-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-otxy23f-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Nh6ejbMmzbDvs4cQZMPeSXmi1Mih6ypYGtHqx-juMSo", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-JF2TyjJnGSshJlGhlSarDx3XDJ0zwsluqZVcd1pIUtw", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-GPa70isTx1hi2WrZt3vrBk48ROM7G1SwBmVtCNm8MEE", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-kI4VUetiPce12zy1uWSv8nTnL5kTM1q973F0IpQwUNE", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-047liyx-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-047liyx-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-047liyx-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-047liyx-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-047liyx-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-047liyx-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-VDFG8lKKLjJHZxjVOBzkYB1MzItwbRfhwPP1b-vUZt0", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-aUSNRKMYhidf6Bdmq0W0s9Q9L2WTQOOVYWyfmQ5p9_s", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ck-ZS1pZm0BSA8mxgMs8mN0Lvh9xqEuNTPyDdeRZGzM", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-HBjtxu6P9-VqfseDMEV6F6ZUzmpB9yBgCpF-S0AWMJ0", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-74", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-24", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-75", @@ -522,16 +522,16 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab2jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab2cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab2sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-x8v9so5-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-x8v9so5-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-x8v9so5-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-x8v9so5-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-x8v9so5-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-x8v9so5-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ituNhCSyN-EIlIVg-N3N37ZdRZprOjJAp-dwuDSriIk", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-E8RWUgFrw0XjTPkLMJIPKrFSqAyB-8QNQfCmkbSc0L8", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-1dWFoPK096q4Q2shF61yNYupef6ZKxdfMXdKdAT9ywI", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-wWPp4XCCsDDNQCEdyTvHmHqcCZQANuW-KfP3OUpeaNA", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-dek6jju-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-dek6jju-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-dek6jju-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-dek6jju-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-dek6jju-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-dek6jju-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mxvAI_Jk8Dp818S2tWaJjW_6Aog7bKI7nBwhKtSeNcU", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-OvJTiCUzeql5YJ83_Pd1nlgrXPnLBusAs5ka8z1guTs", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-XVlR95ftAK2SqPsx37O2TFUZmLWzbRg-fDdxbEUxQTM", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-D6ZGC5ILEU2mzrXPW-kUGV7-CbOqXIo3adnM0qII6jw", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-1", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-83", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-84", @@ -591,17 +591,17 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab3jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab3cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab3sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-3g9ehmh-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-3g9ehmh-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-3g9ehmh-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-3g9ehmh-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-3g9ehmh-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-3g9ehmh-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-yCCtDYKS7Dscf9e1YqwUGrHaLeIfRD9uQlXaGIjYDho", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-WMeJn-vXzbHrBWwQ2MSoolwqylCR9DtdyyrjiwBD3lw", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-4pyD6JN0s5TaoXQFaChAFMjmiEb8R6Muv9Sl0EA_ZKs", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-781Kf5LkJTVc0Ggx-1RYl8vu8Mf-gHK_55b93BYcm6k", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-LFyr9NnJxNhP_-w3Legt2XjR-yKK3Oi5yHk4ZVj9qxk", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-ffkwy49-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-ffkwy49-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-ffkwy49-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-ffkwy49-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-ffkwy49-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-ffkwy49-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-jjqr_kmJoNCNi19pp1IobI_ga02cABQRtA1-DllsgKY", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-O3IauCi4bQqJpAfO1mn6rWHzkZKbbzFuqBjUdh6H0sU", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Pt0vXEG5kCKJ1oAinoAu0e2DGool6-1MeUM7mVSGGOA", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-EwhEi2viq-r7lCxiDEY4FY1SWXveVBtW6KykwDdaMVY", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-j2RfWDY5zyVE-_xWnucAcwfbqAUxUH2g7Fq5MnSQjQc", "https://www.w3.org/TR/vc-data-model-2.0/#issue-container-generatedID-10", "https://www.w3.org/TR/vc-data-model-2.0/#h-note-10", "https://www.w3.org/TR/vc-data-model-2.0/#example-use-of-the-name-and-description-properties-0", @@ -630,16 +630,16 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab4jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab4cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab4sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-p1qkjuw-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-p1qkjuw-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-p1qkjuw-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-p1qkjuw-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-p1qkjuw-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-p1qkjuw-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-FUQg3a6PZ1SAk_IOMA-vSLuhuLXIiczbcmSioSg6_8E", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-NFsNNJ__hcM9nnoBuRa6Y7tlgOIKvQxYMbGV4LixNkY", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-y-U0X9n9PiX3Evlj-dGu_T6l9BQlZKizUbO85Cri9A0", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-JTvY2gnw3hGDq55daZXR0bcPOIDzd1aoYXRhalrKjIU", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-x4j5xez-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-x4j5xez-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-x4j5xez-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-x4j5xez-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-x4j5xez-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-x4j5xez-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-SvvGKivZq_57VvEnrUN-vsED44VWa6y-XZXGmJehglM", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-kK31JGbBGyYvRs0GM2Iv3AZgjd5P8H-JdAOq863fyU0", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-9EjZPp_7ifZ9GbJUNo5aMbrYZkavv6-eJcXo9nePwqc", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-KjwpaF5asiVh9EFzP6cfGBThpMmFsmtcCglmg22usGo", "https://www.w3.org/TR/vc-data-model-2.0/#example-expanded-use-of-the-issuer-property", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab5unsigned", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab5ecdsa-rdfc-2019", @@ -649,17 +649,17 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab5jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab5cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab5sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-z2mhohd-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-z2mhohd-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-z2mhohd-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-z2mhohd-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-z2mhohd-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-z2mhohd-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-cMVgATMWjiK-EvXknvq8c317Y1lOkR-cvc8MX6SO4-s", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-TaX25uwSeZwrKb2Ie-07mIRBTASa-CPqFwCXWpduYaE", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-B7cgcHfNcjtsUfDXTeVGqlrlelUunJfeiClHe8Pe5Jg", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-jsvtP_n8m04opVOV5MYkF6JjZuz7BgUXrh1euZnPKcA", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-_GzpDeO-iNUfBL7--4UrZ7NsfVpIPtYkFxhGx1GMjZQ", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-ih7ld0z-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-ih7ld0z-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-ih7ld0z-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-ih7ld0z-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-ih7ld0z-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-ih7ld0z-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-7ERkC6yMFBkORF-wCgRdGQ7QE75gZrWibfH0lhtg4Bg", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Z5qLWkg3k_jry3CGU0xuqXlq9Tows8Ii11dRANnaHDg", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-u9Nz9Pn0m58yJ1djZ0tmYmYUaU6GrhrrtyvAZoNIC0I", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-lLb59E39RpQrWkmdj1Hpmb7HoafeMgAO4Ps_SOJO8sU", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mGtS_yqKhVPpgo6tH0dkF1epgWtE9KRnOL3p_9yHeao", "https://www.w3.org/TR/vc-data-model-2.0/#issue-container-generatedID-11", "https://www.w3.org/TR/vc-data-model-2.0/#h-note-11", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-21", @@ -690,16 +690,16 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab6jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab6cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab6sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-b59aqf5-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-b59aqf5-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-b59aqf5-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-b59aqf5-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-b59aqf5-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-b59aqf5-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-i5iyNMs5tDuDqCOGBe5YbpjI226A7IvU316OnenRRJA", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-BO8L-hPC0XRsQOybNzboooCJH-JMNnikaCCOJGhLq4M", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-1TRUXTqL9TRYbvebFmUS60vug-tFVcWEbNraNmYo6qk", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-N9CDgXW9tBdQS9tkp_xLVVzU69qdriNLo5Oz110snns", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-skua7pv-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-skua7pv-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-skua7pv-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-skua7pv-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-skua7pv-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-skua7pv-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-FXqedp_qTeF6euQImC-Vzoc--80YOt3vTalxW8OiBrU", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-S_pLXYsXsZTPrsX81jsnMWIoJqsjSh5jHpLZq5sSIPA", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-pRRkpdqQSlifOaf7u1rjnbM9q4S1ujfa0ZALZzgoMfA", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-hwsDwiUz3Afsa8wByIYNvyVTV3Mw-wdm2-gki387cyE", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-31", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-90", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-32", @@ -728,16 +728,16 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab7jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab7cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab7sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-u4hi3kp-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-u4hi3kp-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-u4hi3kp-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-u4hi3kp-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-u4hi3kp-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-u4hi3kp-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-8AiBfnvQUpmK9pIb8iqQfXXlcZ8RR-E6RCLOcaHBYOw", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-qmGqgQ0kSQLm_QfTLtdn5KnMKXox5yXK4pffPT1ChRM", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-fDtZMCRUmZC-7oPoOn4fUrtjNJC3fpCXHmwHKoG6qNY", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-XwtpomDa2ljMmLwmAfCaUmH5eCQhXBe3MognaxP6Ol4", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ip9ihm7-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ip9ihm7-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ip9ihm7-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ip9ihm7-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ip9ihm7-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ip9ihm7-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-pNUDHJktKqUGWG5PQlCa51reNWS1ErhRfeO2kd_r0Cs", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-BBEvVfJmMDsb1q8XjdxjVfgoD-WoBw9oroxYpKwX6Y4", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-VQY1GeRG9pP2d4gN_bMkyDq2oCB-9dkWfnqPEn-r_yk", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-XIKgJX0ZgPCVeAoTgM2tgjdFmuqgWyGO_Znqd3OmNOk", "https://www.w3.org/TR/vc-data-model-2.0/#issue-container-generatedID-12", "https://www.w3.org/TR/vc-data-model-2.0/#h-note-12", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-91", @@ -1011,15 +1011,15 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab8jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab8cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab8sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-r56tus6-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-r56tus6-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-r56tus6-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-r56tus6-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-r56tus6-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-r56tus6-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-JdWM8Yroujbnwi-X6jEHd16NwAKgTK1SeNorjYqxK9U", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-HegxBfPlVhLAk7SBxj7pfuRvzB392Vx1c8lJ8VZR9JQ", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-UF3iPqujORIvLgILt_FrqoMsl-bDcu7vmxQlGFbhlw8", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-jvrrm5f-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-jvrrm5f-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-jvrrm5f-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-jvrrm5f-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-jvrrm5f-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-jvrrm5f-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-MR8qahrVhBfCaWI9D8Xb1AYM0WCX8V0QUc_f3SYwmC0", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-saW5wF82UxvvG7Nm2nFCu1vvwjpxZxgO45Z36PFUGYk", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-6XpZ_xpzVitaOX1ROJs5kpyTmYbzmO969eDOjFz5z20", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-134", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-entities-14", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-135", @@ -1585,15 +1585,15 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab9jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab9cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab9sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-5vacoz9-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-5vacoz9-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-5vacoz9-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-5vacoz9-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-5vacoz9-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-5vacoz9-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-dOmXPCiLtAFf6J-ps4k07hLkHmf42lKM9Bv3_B8BS78", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-h33KcU1Zq9L6lq1gKLn19qNa6DZdxu_cz7fSnvDZxag", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-dSN1oWN16asGYwZ6581GJmdk6ddlT7A9Kb0yOzfBCn4", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-ifs4kqq-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-ifs4kqq-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-ifs4kqq-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-ifs4kqq-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-ifs4kqq-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-ifs4kqq-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-UzQ84CBH3andYvdkL9Fi3CSN_qtx2ZXge2OxJoRNOew", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-LltJQMOE7_7Ih80VkLcBW7r40fTBRGsFHYwGMWboxKc", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-DeYkY8TpFUOehAJ90ErN38RxFJrxj3lvW-1vgN6aOiM", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-bearer-credentials-4", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-88", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-87", diff --git a/tr/ids/webrtc-encoded-transform.json b/tr/ids/webrtc-encoded-transform.json index 3a0d523af86a..fe94fd402a28 100644 --- a/tr/ids/webrtc-encoded-transform.json +++ b/tr/ids/webrtc-encoded-transform.json @@ -256,6 +256,8 @@ "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-rtcencodedvideoframemetadata-timestamp", "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-idl-unsigned-long%E2%91%A3", "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-rtcencodedvideoframemetadata-rtptimestamp", + "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-domhighrestimestamp", + "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-rtcencodedvideoframemetadata-receivetime", "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-idl-DOMString%E2%91%A0", "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-rtcencodedvideoframemetadata-mimetype", "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedVideoFrameMetadata-members", @@ -272,6 +274,10 @@ "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-videoframe-timestamp", "https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata-rtptimestamp", "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-idl-unsigned-long%E2%91%A5", + "https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata-receivetime", + "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-domhighrestimestamp%E2%91%A0", + "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-performance", + "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-performance-timeorigin", "https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedvideoframemetadata-mimetype", "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-idl-DOMString%E2%91%A1", "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedVideoFrame-interface", @@ -330,6 +336,8 @@ "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-rtcencodedaudioframemetadata-sequencenumber", "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-idl-unsigned-long%E2%91%A8", "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-rtcencodedaudioframemetadata-rtptimestamp", + "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-domhighrestimestamp%E2%91%A1", + "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-rtcencodedaudioframemetadata-receivetime", "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-idl-DOMString%E2%91%A2", "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-rtcencodedaudioframemetadata-mimetype", "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedAudioFrameMetadata-members", @@ -342,6 +350,10 @@ "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-idl-short%E2%91%A0", "https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframemetadata-rtptimestamp", "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframemetadata-receivetime", + "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-domhighrestimestamp%E2%91%A2", + "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-performance%E2%91%A0", + "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-dom-performance-timeorigin%E2%91%A0", "https://www.w3.org/TR/webrtc-encoded-transform/#dom-rtcencodedaudioframemetadata-mimetype", "https://www.w3.org/TR/webrtc-encoded-transform/#ref-for-idl-DOMString%E2%91%A3", "https://www.w3.org/TR/webrtc-encoded-transform/#RTCEncodedAudioFrame-interface", @@ -532,6 +544,9 @@ "https://www.w3.org/TR/webrtc-encoded-transform/#5fd23811", "https://www.w3.org/TR/webrtc-encoded-transform/#0fe84b59", "https://www.w3.org/TR/webrtc-encoded-transform/#2296404c", + "https://www.w3.org/TR/webrtc-encoded-transform/#2a9f2069", + "https://www.w3.org/TR/webrtc-encoded-transform/#56e4badc", + "https://www.w3.org/TR/webrtc-encoded-transform/#0c6d5c94", "https://www.w3.org/TR/webrtc-encoded-transform/#b8308563", "https://www.w3.org/TR/webrtc-encoded-transform/#f0951476", "https://www.w3.org/TR/webrtc-encoded-transform/#eb5c4be3", @@ -601,6 +616,7 @@ "https://www.w3.org/TR/webrtc-encoded-transform/#references", "https://www.w3.org/TR/webrtc-encoded-transform/#normative", "https://www.w3.org/TR/webrtc-encoded-transform/#biblio-dom", + "https://www.w3.org/TR/webrtc-encoded-transform/#biblio-hr-time-3", "https://www.w3.org/TR/webrtc-encoded-transform/#biblio-html", "https://www.w3.org/TR/webrtc-encoded-transform/#biblio-iana-media-types", "https://www.w3.org/TR/webrtc-encoded-transform/#biblio-mediacapture-streams", diff --git a/tr/index.json b/tr/index.json index 1f967fb0a44d..d24c12e66e27 100644 --- a/tr/index.json +++ b/tr/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2025-02-24T01:34:35.140Z", + "date": "2025-02-25T01:34:52.763Z", "options": { "fallback": "tr/index.json", "output": "report", @@ -729,7 +729,7 @@ "https://aomediacodec.github.io/av1-spec/" ], "crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", - "date": "24 February 2025", + "date": "25 February 2025", "links": "links/av1-spec.json", "cddl": [] }, @@ -10499,11 +10499,11 @@ ], "crawled": "https://www.w3.org/TR/event-timing/", "crawlCacheInfo": { - "lastModified": "Mon, 19 Aug 2024 13:11:00 GMT" + "lastModified": "Mon, 24 Feb 2025 15:54:16 GMT" }, "generator": "bikeshed", - "date": "19 August 2024", - "revision": "60a1f26a880367d7c252a0e8b9b6d3fe363027b1", + "date": "24 February 2025", + "revision": "82bfcbe1d0feef6e95bd5ef4eb3a78df90922e72", "algorithms": "algorithms/event-timing.json", "links": "links/event-timing.json", "refs": "refs/event-timing.json", @@ -14678,11 +14678,11 @@ ], "crawled": "https://www.w3.org/TR/paint-timing/", "crawlCacheInfo": { - "lastModified": "Tue, 12 Nov 2024 15:11:29 GMT" + "lastModified": "Mon, 24 Feb 2025 16:42:25 GMT" }, "generator": "bikeshed", - "date": "12 November 2024", - "revision": "a4a2a86643bc1664ed544541061641874bf4e28f", + "date": "24 February 2025", + "revision": "487fbc714504aed2269be6a7795cd65d2195703b", "algorithms": "algorithms/paint-timing.json", "links": "links/paint-timing.json", "refs": "refs/paint-timing.json", @@ -16008,11 +16008,11 @@ ], "crawled": "https://www.w3.org/TR/rdf12-schema/", "crawlCacheInfo": { - "lastModified": "Thu, 19 Dec 2024 20:27:49 GMT" + "lastModified": "Mon, 24 Feb 2025 10:50:35 GMT" }, "generator": "respec", - "date": "19 December 2024", - "revision": "582878f2b265568ec583f1e578b0e6f7a059d220", + "date": "24 February 2025", + "revision": "a4ba5c1b175038a3624dcefe61f49c839e9c6f4c", "links": "links/rdf12-schema.json", "refs": "refs/rdf12-schema.json", "headings": "headings/rdf12-schema.json", @@ -16063,11 +16063,12 @@ ], "crawled": "https://www.w3.org/TR/rdf12-semantics/", "crawlCacheInfo": { - "lastModified": "Thu, 20 Feb 2025 21:12:04 GMT" + "lastModified": "Mon, 24 Feb 2025 13:30:51 GMT" }, "generator": "respec", - "date": "20 February 2025", - "revision": "39805f4deca1e70a6a30b7116b92d5815425ffe6", + "date": "24 February 2025", + "revision": "ace9abce27e8be2a5b3e5459caefd6efb894c28f", + "algorithms": "algorithms/rdf12-semantics.json", "links": "links/rdf12-semantics.json", "refs": "refs/rdf12-semantics.json", "dfns": "dfns/rdf12-semantics.json", @@ -19083,11 +19084,11 @@ ], "crawled": "https://www.w3.org/TR/vc-data-model-2.0/", "crawlCacheInfo": { - "lastModified": "Sun, 23 Feb 2025 15:18:09 GMT" + "lastModified": "Mon, 24 Feb 2025 23:51:22 GMT" }, "generator": "respec", - "date": "23 February 2025", - "revision": "43f5828aa91f6ffc3ef4b85f3689fd5ebdfc20fe", + "date": "24 February 2025", + "revision": "a4a6bd188acd5eb0d8a445f9882939c68a0e3ec5", "algorithms": "algorithms/vc-data-model-2.0.json", "links": "links/vc-data-model-2.0.json", "refs": "refs/vc-data-model-2.0.json", @@ -21405,11 +21406,11 @@ ], "crawled": "https://www.w3.org/TR/webrtc-encoded-transform/", "crawlCacheInfo": { - "lastModified": "Thu, 13 Feb 2025 15:52:58 GMT" + "lastModified": "Tue, 25 Feb 2025 00:06:30 GMT" }, "generator": "bikeshed", - "date": "13 February 2025", - "revision": "8f8110e2213d21d9f3119e35a395d7e1c1e4f6a0", + "date": "25 February 2025", + "revision": "9c84f991f1a98e489420f1157ed6ace9fcfb5f95", "algorithms": "algorithms/webrtc-encoded-transform.json", "links": "links/webrtc-encoded-transform.json", "refs": "refs/webrtc-encoded-transform.json", diff --git a/tr/links/event-timing.json b/tr/links/event-timing.json index f94493aa7101..f3a05fc0aee8 100644 --- a/tr/links/event-timing.json +++ b/tr/links/event-timing.json @@ -19,6 +19,7 @@ "https://github.com/WICG/event-timing/issues": {}, "https://html.spec.whatwg.org/multipage/": {}, "https://infra.spec.whatwg.org/": {}, + "https://w3c.github.io/element-timing/": {}, "https://w3c.github.io/performance-timeline/": { "anchors": [ "dom-performanceobserverinit-buffered" @@ -30,14 +31,13 @@ ] }, "https://webidl.spec.whatwg.org/": {}, - "https://wicg.github.io/element-timing/": {}, "https://www.nngroup.com/articles/response-times-3-important-limits/": {}, "https://www.w3.org/TR/": {}, "https://www.w3.org/TR/hr-time-2/": {}, "https://www.w3.org/TR/paint-timing/": {}, "https://www.w3.org/TR/performance-timeline/": {}, "https://www.w3.org/TR/pointerevents/": {}, - "https://www.w3.org/TR/pointerevents3/": {}, + "https://www.w3.org/TR/pointerevents4/": {}, "https://www.w3.org/TR/touch-events/": {}, "https://www.w3.org/TR/uievents/": {}, "https://www.w3.org/groups/wg/webperf": {}, @@ -103,7 +103,6 @@ "https://infra.spec.whatwg.org/": { "anchors": [ "ordered-map", - "ordered-set", "map-remove", "map-getting-the-values", "map-clear", @@ -202,7 +201,7 @@ "get-an-element" ] }, - "https://www.w3.org/TR/pointerevents3/": { + "https://www.w3.org/TR/pointerevents4/": { "anchors": [ "dom-pointerevent-pointerid" ] diff --git a/tr/links/paint-timing.json b/tr/links/paint-timing.json index afb52b2cb6e9..115410791243 100644 --- a/tr/links/paint-timing.json +++ b/tr/links/paint-timing.json @@ -13,15 +13,14 @@ "https://html.spec.whatwg.org/multipage/": {}, "https://infra.spec.whatwg.org/": {}, "https://url.spec.whatwg.org/": {}, + "https://w3c.github.io/element-timing/": {}, "https://webidl.spec.whatwg.org/": {}, - "https://wicg.github.io/element-timing/": {}, "https://www.w3.org/TR/": {}, - "https://www.w3.org/TR/CSS22/": {}, "https://www.w3.org/TR/SVG2/": {}, "https://www.w3.org/TR/css-backgrounds-3/": {}, "https://www.w3.org/TR/css-cascade-5/": {}, "https://www.w3.org/TR/css-color-3/": {}, - "https://www.w3.org/TR/css-display-3/": {}, + "https://www.w3.org/TR/css-display-4/": {}, "https://www.w3.org/TR/css-fonts-4/": {}, "https://www.w3.org/TR/css-text-4/": {}, "https://www.w3.org/TR/cssom-view-1/": {}, @@ -46,7 +45,7 @@ "https://dom.spec.whatwg.org/": { "anchors": [ "concept-element", - "concept-document", + "clone-a-node-document", "element", "text", "document", @@ -155,6 +154,12 @@ "concept-url-scheme" ] }, + "https://w3c.github.io/long-animation-frames/": { + "anchors": [ + "current-frame-timing-info", + "queue-a-long-animation-frame-entry" + ] + }, "https://webidl.spec.whatwg.org/": { "anchors": [ "idl-DOMString", @@ -173,11 +178,6 @@ "report-largest-contentful-paint" ] }, - "https://www.w3.org/TR/CSS22/visufx.html": { - "anchors": [ - "propdef-visibility" - ] - }, "https://www.w3.org/TR/SVG2/embedded.html": { "anchors": [ "elementdef-image", @@ -210,7 +210,7 @@ "opacity" ] }, - "https://www.w3.org/TR/css-display-3/": { + "https://www.w3.org/TR/css-display-4/": { "anchors": [ "box", "text-nodes", diff --git a/tr/links/webrtc-encoded-transform.json b/tr/links/webrtc-encoded-transform.json index a0f9302d5d71..e7c1a4df03aa 100644 --- a/tr/links/webrtc-encoded-transform.json +++ b/tr/links/webrtc-encoded-transform.json @@ -83,6 +83,7 @@ "https://www.w3.org/2004/01/pp-impl/47318/status": {}, "https://www.w3.org/TR/": {}, "https://www.w3.org/TR/WebCryptoAPI/": {}, + "https://www.w3.org/TR/hr-time-3/": {}, "https://www.w3.org/TR/mediacapture-streams/": {}, "https://www.w3.org/TR/webcodecs/": {}, "https://www.w3.org/TR/webrtc-identity/": {}, @@ -205,6 +206,13 @@ "notfounderror" ] }, + "https://www.w3.org/TR/hr-time-3/": { + "anchors": [ + "dom-domhighrestimestamp", + "dom-performance", + "dom-performance-timeorigin" + ] + }, "https://www.w3.org/TR/mediacapture-streams/": { "anchors": [ "dom-mediastreamtrack" diff --git a/tr/refs/event-timing.json b/tr/refs/event-timing.json index c23c7a2d9f4e..504043c9ef0c 100644 --- a/tr/refs/event-timing.json +++ b/tr/refs/event-timing.json @@ -11,7 +11,7 @@ }, { "name": "ELEMENT-TIMING", - "url": "https://wicg.github.io/element-timing/" + "url": "https://w3c.github.io/element-timing/" }, { "name": "HR-TIME-2", @@ -38,8 +38,8 @@ "url": "https://www.w3.org/TR/pointerevents/" }, { - "name": "POINTEREVENTS3", - "url": "https://www.w3.org/TR/pointerevents3/" + "name": "POINTEREVENTS4", + "url": "https://www.w3.org/TR/pointerevents4/" }, { "name": "RFC2119", diff --git a/tr/refs/paint-timing.json b/tr/refs/paint-timing.json index a6c298cc98cd..3d539bcc30f9 100644 --- a/tr/refs/paint-timing.json +++ b/tr/refs/paint-timing.json @@ -18,8 +18,8 @@ "url": "https://www.w3.org/TR/css-color-3/" }, { - "name": "CSS-DISPLAY-3", - "url": "https://www.w3.org/TR/css-display-3/" + "name": "CSS-DISPLAY-4", + "url": "https://www.w3.org/TR/css-display-4/" }, { "name": "CSS-FONTS-4", @@ -29,10 +29,6 @@ "name": "CSS-TEXT-4", "url": "https://www.w3.org/TR/css-text-4/" }, - { - "name": "CSS22", - "url": "https://www.w3.org/TR/CSS22/" - }, { "name": "CSSOM-VIEW-1", "url": "https://www.w3.org/TR/cssom-view-1/" @@ -43,7 +39,7 @@ }, { "name": "ELEMENT-TIMING", - "url": "https://wicg.github.io/element-timing/" + "url": "https://w3c.github.io/element-timing/" }, { "name": "HR-TIME-3", diff --git a/tr/refs/webrtc-encoded-transform.json b/tr/refs/webrtc-encoded-transform.json index 3c47e17a637b..d39cb5990c58 100644 --- a/tr/refs/webrtc-encoded-transform.json +++ b/tr/refs/webrtc-encoded-transform.json @@ -9,6 +9,10 @@ "name": "DOM", "url": "https://dom.spec.whatwg.org/" }, + { + "name": "HR-TIME-3", + "url": "https://www.w3.org/TR/hr-time-3/" + }, { "name": "HTML", "url": "https://html.spec.whatwg.org/multipage/"