Skip to content

Commit

Permalink
Update of TR report from new reffy run
Browse files Browse the repository at this point in the history
Using reffy commit 13.1.1.
  • Loading branch information
reffy-bot committed Jun 29, 2023
1 parent fd89c58 commit 8224828
Show file tree
Hide file tree
Showing 22 changed files with 2,051 additions and 346 deletions.
19 changes: 19 additions & 0 deletions tr/dfns/CSP3.json
Original file line number Diff line number Diff line change
Expand Up @@ -3251,6 +3251,25 @@
},
"definedIn": "prose"
},
{
"id": "match-url-to-source-expression",
"href": "https://www.w3.org/TR/CSP3/#match-url-to-source-expression",
"linkingText": [
"Does url match expression in origin with redirect count?"
],
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "public",
"informative": false,
"heading": {
"id": "match-url-to-source-expression",
"href": "https://www.w3.org/TR/CSP3/#match-url-to-source-expression",
"title": "Does url match expression in origin with redirect count?",
"number": "6.7.2.7"
},
"definedIn": "heading"
},
{
"id": "scheme-part-match",
"href": "https://www.w3.org/TR/CSP3/#scheme-part-match",
Expand Down
20 changes: 20 additions & 0 deletions tr/dfns/webcodecs.json
Original file line number Diff line number Diff line change
Expand Up @@ -7712,6 +7712,26 @@
},
"definedIn": "pre"
},
{
"id": "dom-videoframebufferinit-transfer",
"href": "https://www.w3.org/TR/webcodecs/#dom-videoframebufferinit-transfer",
"linkingText": [
"transfer"
],
"localLinkingText": [],
"type": "dict-member",
"for": [
"VideoFrameBufferInit"
],
"access": "public",
"informative": false,
"heading": {
"id": "title",
"href": "https://www.w3.org/TR/webcodecs/#title",
"title": "WebCodecs"
},
"definedIn": "pre"
},
{
"id": "dictdef-videoframemetadata",
"href": "https://www.w3.org/TR/webcodecs/#dictdef-videoframemetadata",
Expand Down
7 changes: 7 additions & 0 deletions tr/headings/payment-request-1.1.json
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,13 @@
"title": "canMakePayment() protections",
"number": "15.8"
},
{
"id": "user-activation-requirement-0",
"href": "https://www.w3.org/TR/payment-request-1.1/#user-activation-requirement-0",
"level": 3,
"title": "User activation requirement",
"number": "15.9"
},
{
"id": "accessibility-considerations",
"href": "https://www.w3.org/TR/payment-request-1.1/#accessibility-considerations",
Expand Down
23 changes: 15 additions & 8 deletions tr/headings/rdf12-trig.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,26 @@
"title": "Graph Statements",
"number": "2.2"
},
{
"id": "quoted-triples",
"href": "https://www.w3.org/TR/rdf12-trig/#quoted-triples",
"level": 3,
"title": "Quoted Triples",
"number": "2.3"
},
{
"id": "other-terms",
"href": "https://www.w3.org/TR/rdf12-trig/#other-terms",
"level": 3,
"title": "Other Terms",
"number": "2.3"
"number": "2.4"
},
{
"id": "terms-blanks-nodes",
"href": "https://www.w3.org/TR/rdf12-trig/#terms-blanks-nodes",
"level": 4,
"title": "Special Considerations for Blank Nodes",
"number": "2.3.1"
"number": "2.4.1"
},
{
"id": "conformance",
Expand Down Expand Up @@ -177,23 +184,23 @@
{
"id": "triple-production",
"href": "https://www.w3.org/TR/rdf12-trig/#triple-production",
"level": 5,
"level": 4,
"title": "Triple Production",
"number": "5.3.2.1"
"number": "5.3.3"
},
{
"id": "propertyList",
"href": "https://www.w3.org/TR/rdf12-trig/#propertyList",
"level": 5,
"level": 4,
"title": "Property Lists",
"number": "5.3.2.2"
"number": "5.3.4"
},
{
"id": "collection",
"href": "https://www.w3.org/TR/rdf12-trig/#collection",
"level": 5,
"level": 4,
"title": "Collections",
"number": "5.3.2.3"
"number": "5.3.5"
},
{
"id": "privacy-considerations",
Expand Down
16 changes: 9 additions & 7 deletions tr/idl/webcodecs.idl
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ dictionary AudioDecoderConfig {

dictionary VideoDecoderConfig {
required DOMString codec;
[AllowShared] BufferSource description;
AllowSharedBufferSource description;
[EnforceRange] unsigned long codedWidth;
[EnforceRange] unsigned long codedHeight;
[EnforceRange] unsigned long displayAspectWidth;
Expand Down Expand Up @@ -221,7 +221,7 @@ interface EncodedAudioChunk {
readonly attribute unsigned long long? duration; // microseconds
readonly attribute unsigned long byteLength;

undefined copyTo([AllowShared] BufferSource destination);
undefined copyTo(AllowSharedBufferSource destination);
};

dictionary EncodedAudioChunkInit {
Expand All @@ -244,14 +244,14 @@ interface EncodedVideoChunk {
readonly attribute unsigned long long? duration; // microseconds
readonly attribute unsigned long byteLength;

undefined copyTo([AllowShared] BufferSource destination);
undefined copyTo(AllowSharedBufferSource destination);
};

dictionary EncodedVideoChunkInit {
required EncodedVideoChunkType type;
[EnforceRange] required long long timestamp; // microseconds
[EnforceRange] unsigned long long duration; // microseconds
required [AllowShared] BufferSource data;
required AllowSharedBufferSource data;
};

enum EncodedVideoChunkType {
Expand All @@ -271,7 +271,7 @@ interface AudioData {
readonly attribute long long timestamp; // microseconds

unsigned long allocationSize(AudioDataCopyToOptions options);
undefined copyTo([AllowShared] BufferSource destination, AudioDataCopyToOptions options);
undefined copyTo(AllowSharedBufferSource destination, AudioDataCopyToOptions options);
AudioData clone();
undefined close();
};
Expand Down Expand Up @@ -306,7 +306,7 @@ enum AudioSampleFormat {
[Exposed=(Window,DedicatedWorker), Serializable, Transferable]
interface VideoFrame {
constructor(CanvasImageSource image, optional VideoFrameInit init = {});
constructor([AllowShared] BufferSource data, VideoFrameBufferInit init);
constructor(AllowSharedBufferSource data, VideoFrameBufferInit init);

readonly attribute VideoPixelFormat? format;
readonly attribute unsigned long codedWidth;
Expand All @@ -324,7 +324,7 @@ interface VideoFrame {
unsigned long allocationSize(
optional VideoFrameCopyToOptions options = {});
Promise<sequence<PlaneLayout>> copyTo(
[AllowShared] BufferSource destination,
AllowSharedBufferSource destination,
optional VideoFrameCopyToOptions options = {});
VideoFrame clone();
undefined close();
Expand Down Expand Up @@ -365,6 +365,8 @@ dictionary VideoFrameBufferInit {
[EnforceRange] unsigned long displayHeight;

VideoColorSpaceInit colorSpace;

sequence<ArrayBuffer> transfer = [];
};

dictionary VideoFrameMetadata {
Expand Down
7 changes: 7 additions & 0 deletions tr/ids/CSP3.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"https://www.w3.org/TR/CSP3/#ref-for-http-scheme",
"https://www.w3.org/TR/CSP3/#ref-for-local-scheme",
"https://www.w3.org/TR/CSP3/#ref-for-http-scheme%E2%91%A0",
"https://www.w3.org/TR/CSP3/#ref-for-match-url-to-source-expression",
"https://www.w3.org/TR/CSP3/#ref-for-script%E2%91%A0",
"https://www.w3.org/TR/CSP3/#ref-for-violation-sample",
"https://www.w3.org/TR/CSP3/#ref-for-grammardef-report-sample",
Expand Down Expand Up @@ -2189,7 +2190,13 @@
"https://www.w3.org/TR/CSP3/#ref-for-list-size",
"https://www.w3.org/TR/CSP3/#ref-for-ascii-case-insensitive%E2%91%A6",
"https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/CSP3/#ref-for-match-url-to-source-expression%E2%91%A0",
"https://www.w3.org/TR/CSP3/#match-url-to-source-expression",
"https://www.w3.org/TR/CSP3/#ref-for-match-url-to-source-expression%E2%91%A1",
"https://www.w3.org/TR/CSP3/#infopanel-for-match-url-to-source-expression",
"https://www.w3.org/TR/CSP3/#infopaneltitle-for-match-url-to-source-expression",
"https://www.w3.org/TR/CSP3/#infopanel-for-match-url-to-source-expression",
"https://www.w3.org/TR/CSP3/#infopaneltitle-for-match-url-to-source-expression",
"https://www.w3.org/TR/CSP3/#ref-for-url%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/CSP3/#ref-for-source-expression%E2%91%A8",
"https://www.w3.org/TR/CSP3/#ref-for-concept-origin%E2%91%A1",
Expand Down
Loading

0 comments on commit 8224828

Please sign in to comment.