Skip to content

Commit

Permalink
Publish curated data from 5056292
Browse files Browse the repository at this point in the history
Curated data generated from raw data at 5056292
  • Loading branch information
curation-bot committed Oct 14, 2023
1 parent d2890dc commit e163c51
Show file tree
Hide file tree
Showing 30 changed files with 470 additions and 256 deletions.
4 changes: 2 additions & 2 deletions ed/css/css-masking.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
},
{
"name": "mask-clip",
"value": "[ <geometry-box> | no-clip ]#",
"value": "[ <coord-box> | no-clip ]#",
"initial": "border-box",
"appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
"inherited": "no",
Expand Down Expand Up @@ -224,7 +224,7 @@
},
{
"name": "mask-origin",
"value": "<geometry-box>#",
"value": "<coord-box>#",
"initial": "border-box",
"appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
"inherited": "no",
Expand Down
38 changes: 38 additions & 0 deletions ed/dfns/rdf12-concepts.json
Original file line number Diff line number Diff line change
Expand Up @@ -758,6 +758,25 @@
},
"definedIn": "prose"
},
{
"id": "dfn-base-direction",
"href": "https://w3c.github.io/rdf-concepts/spec/#dfn-base-direction",
"linkingText": [
"base direction"
],
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "private",
"informative": false,
"heading": {
"id": "section-Graph-Literal",
"href": "https://w3c.github.io/rdf-concepts/spec/#section-Graph-Literal",
"title": "Literals",
"number": "3.3"
},
"definedIn": "prose"
},
{
"id": "dfn-language-tagged-string",
"href": "https://w3c.github.io/rdf-concepts/spec/#dfn-language-tagged-string",
Expand All @@ -777,6 +796,25 @@
},
"definedIn": "prose"
},
{
"id": "dfn-dir-lang-string",
"href": "https://w3c.github.io/rdf-concepts/spec/#dfn-dir-lang-string",
"linkingText": [
"directional language-tagged string"
],
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "private",
"informative": false,
"heading": {
"id": "section-Graph-Literal",
"href": "https://w3c.github.io/rdf-concepts/spec/#section-Graph-Literal",
"title": "Literals",
"number": "3.3"
},
"definedIn": "prose"
},
{
"id": "dfn-simple-literal",
"href": "https://w3c.github.io/rdf-concepts/spec/#dfn-simple-literal",
Expand Down
7 changes: 7 additions & 0 deletions ed/headings/rdf12-concepts.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,13 @@
"title": "Literals",
"number": "3.3"
},
{
"id": "section-text-direction",
"href": "https://w3c.github.io/rdf-concepts/spec/#section-text-direction",
"level": 4,
"title": "Initial Text Direction",
"number": "3.3.1"
},
{
"id": "section-blank-nodes",
"href": "https://w3c.github.io/rdf-concepts/spec/#section-blank-nodes",
Expand Down
7 changes: 7 additions & 0 deletions ed/headings/rdf12-trig.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,13 @@
"level": 3,
"title": "Productions for terminals"
},
{
"id": "selected-terminal-literal-strings",
"href": "https://w3c.github.io/rdf-trig/spec/#selected-terminal-literal-strings",
"level": 3,
"title": "Selected Terminal Literal Strings",
"number": "4.6"
},
{
"id": "sec-parsing",
"href": "https://w3c.github.io/rdf-trig/spec/#sec-parsing",
Expand Down
8 changes: 4 additions & 4 deletions ed/idl/turtledove.idl
Original file line number Diff line number Diff line change
Expand Up @@ -198,13 +198,13 @@ dictionary ReportWinBrowserSignals : ReportingBrowserSignals {
};

dictionary DirectFromSellerSignalsForBuyer {
any auctionSignals;
any perBuyerSignals;
any auctionSignals = null;
any perBuyerSignals = null;
};

dictionary DirectFromSellerSignalsForSeller {
any auctionSignals;
any sellerSignals;
any auctionSignals = null;
any sellerSignals = null;
};

dictionary ScoreAdOutput {
Expand Down
2 changes: 1 addition & 1 deletion ed/idl/webgpu.idl
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ dictionary GPUShaderModuleDescriptor
: GPUObjectDescriptorBase {
required USVString code;
object sourceMap;
record<USVString, GPUShaderModuleCompilationHint> hints;
record<USVString, (GPUShaderModuleCompilationHint or sequence<GPUShaderModuleCompilationHint>)> hints;
};

dictionary GPUShaderModuleCompilationHint {
Expand Down
4 changes: 2 additions & 2 deletions ed/idlnames/DirectFromSellerSignalsForBuyer.idl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Source: Protected Audience (formerly FLEDGE) (https://wicg.github.io/turtledove/)
dictionary DirectFromSellerSignalsForBuyer {
any auctionSignals;
any perBuyerSignals;
any auctionSignals = null;
any perBuyerSignals = null;
};
4 changes: 2 additions & 2 deletions ed/idlnames/DirectFromSellerSignalsForSeller.idl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Source: Protected Audience (formerly FLEDGE) (https://wicg.github.io/turtledove/)
dictionary DirectFromSellerSignalsForSeller {
any auctionSignals;
any sellerSignals;
any auctionSignals = null;
any sellerSignals = null;
};
2 changes: 1 addition & 1 deletion ed/idlnames/GPUShaderModuleDescriptor.idl
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ dictionary GPUShaderModuleDescriptor
: GPUObjectDescriptorBase {
required USVString code;
object sourceMap;
record<USVString, GPUShaderModuleCompilationHint> hints;
record<USVString, (GPUShaderModuleCompilationHint or sequence<GPUShaderModuleCompilationHint>)> hints;
};
2 changes: 1 addition & 1 deletion ed/idlnamesparsed/DirectFromSellerSignalsForBuyer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"title": "Protected Audience (formerly FLEDGE)",
"url": "https://wicg.github.io/turtledove/"
},
"fragment": "dictionary DirectFromSellerSignalsForBuyer {\n any auctionSignals;\n any perBuyerSignals;\n};",
"fragment": "dictionary DirectFromSellerSignalsForBuyer {\n any auctionSignals = null;\n any perBuyerSignals = null;\n};",
"href": "https://wicg.github.io/turtledove/#dictdef-directfromsellersignalsforbuyer"
},
"extended": [],
Expand Down
2 changes: 1 addition & 1 deletion ed/idlnamesparsed/DirectFromSellerSignalsForSeller.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"title": "Protected Audience (formerly FLEDGE)",
"url": "https://wicg.github.io/turtledove/"
},
"fragment": "dictionary DirectFromSellerSignalsForSeller {\n any auctionSignals;\n any sellerSignals;\n};",
"fragment": "dictionary DirectFromSellerSignalsForSeller {\n any auctionSignals = null;\n any sellerSignals = null;\n};",
"href": "https://wicg.github.io/turtledove/#dictdef-directfromsellersignalsforseller"
},
"extended": [],
Expand Down
2 changes: 1 addition & 1 deletion ed/idlnamesparsed/GPUShaderModuleDescriptor.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"title": "WebGPU",
"url": "https://www.w3.org/TR/webgpu/"
},
"fragment": "dictionary GPUShaderModuleDescriptor\n : GPUObjectDescriptorBase {\n required USVString code;\n object sourceMap;\n record<USVString, GPUShaderModuleCompilationHint> hints;\n};",
"fragment": "dictionary GPUShaderModuleDescriptor\n : GPUObjectDescriptorBase {\n required USVString code;\n object sourceMap;\n record<USVString, (GPUShaderModuleCompilationHint or sequence<GPUShaderModuleCompilationHint>)> hints;\n};",
"href": "https://gpuweb.github.io/gpuweb/#dictdef-gpushadermoduledescriptor"
},
"extended": [],
Expand Down
20 changes: 14 additions & 6 deletions ed/idlparsed/turtledove.json
Original file line number Diff line number Diff line change
Expand Up @@ -2251,7 +2251,7 @@
"partial": false
},
"DirectFromSellerSignalsForBuyer": {
"fragment": "dictionary DirectFromSellerSignalsForBuyer {\n any auctionSignals;\n any perBuyerSignals;\n};",
"fragment": "dictionary DirectFromSellerSignalsForBuyer {\n any auctionSignals = null;\n any perBuyerSignals = null;\n};",
"type": "dictionary",
"name": "DirectFromSellerSignalsForBuyer",
"inheritance": null,
Expand All @@ -2268,7 +2268,9 @@
"union": false,
"idlType": "any"
},
"default": null,
"default": {
"type": "null"
},
"required": false
},
{
Expand All @@ -2283,15 +2285,17 @@
"union": false,
"idlType": "any"
},
"default": null,
"default": {
"type": "null"
},
"required": false
}
],
"extAttrs": [],
"partial": false
},
"DirectFromSellerSignalsForSeller": {
"fragment": "dictionary DirectFromSellerSignalsForSeller {\n any auctionSignals;\n any sellerSignals;\n};",
"fragment": "dictionary DirectFromSellerSignalsForSeller {\n any auctionSignals = null;\n any sellerSignals = null;\n};",
"type": "dictionary",
"name": "DirectFromSellerSignalsForSeller",
"inheritance": null,
Expand All @@ -2308,7 +2312,9 @@
"union": false,
"idlType": "any"
},
"default": null,
"default": {
"type": "null"
},
"required": false
},
{
Expand All @@ -2323,7 +2329,9 @@
"union": false,
"idlType": "any"
},
"default": null,
"default": {
"type": "null"
},
"required": false
}
],
Expand Down
32 changes: 29 additions & 3 deletions ed/idlparsed/webgpu.json
Original file line number Diff line number Diff line change
Expand Up @@ -5045,7 +5045,7 @@
"partial": false
},
"GPUShaderModuleDescriptor": {
"fragment": "dictionary GPUShaderModuleDescriptor\n : GPUObjectDescriptorBase {\n required USVString code;\n object sourceMap;\n record<USVString, GPUShaderModuleCompilationHint> hints;\n};",
"fragment": "dictionary GPUShaderModuleDescriptor\n : GPUObjectDescriptorBase {\n required USVString code;\n object sourceMap;\n record<USVString, (GPUShaderModuleCompilationHint or sequence<GPUShaderModuleCompilationHint>)> hints;\n};",
"type": "dictionary",
"name": "GPUShaderModuleDescriptor",
"inheritance": "GPUObjectDescriptorBase",
Expand Down Expand Up @@ -5104,8 +5104,34 @@
"extAttrs": [],
"generic": "",
"nullable": false,
"union": false,
"idlType": "GPUShaderModuleCompilationHint"
"union": true,
"idlType": [
{
"type": "dictionary-type",
"extAttrs": [],
"generic": "",
"nullable": false,
"union": false,
"idlType": "GPUShaderModuleCompilationHint"
},
{
"type": "dictionary-type",
"extAttrs": [],
"generic": "sequence",
"nullable": false,
"union": false,
"idlType": [
{
"type": "dictionary-type",
"extAttrs": [],
"generic": "",
"nullable": false,
"union": false,
"idlType": "GPUShaderModuleCompilationHint"
}
]
}
]
}
]
},
Expand Down
26 changes: 16 additions & 10 deletions ed/ids/css-masking-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@
"https://drafts.fxtf.org/css-masking-1/#infopaneltitle-for-propdef-mask-clip",
"https://drafts.fxtf.org/css-masking-1/#infopanel-for-propdef-mask-clip",
"https://drafts.fxtf.org/css-masking-1/#infopaneltitle-for-propdef-mask-clip",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A1",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-coord-box",
"https://drafts.fxtf.org/css-masking-1/#ref-for-comb-one%E2%91%A0%E2%93%AA",
"https://drafts.fxtf.org/css-masking-1/#ref-for-mult-comma%E2%91%A3",
"https://drafts.fxtf.org/css-masking-1/#ref-for-container-element%E2%91%A5",
Expand Down Expand Up @@ -609,7 +609,7 @@
"https://drafts.fxtf.org/css-masking-1/#infopaneltitle-for-propdef-mask-origin",
"https://drafts.fxtf.org/css-masking-1/#infopanel-for-propdef-mask-origin",
"https://drafts.fxtf.org/css-masking-1/#infopaneltitle-for-propdef-mask-origin",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A2",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-coord-box%E2%91%A0",
"https://drafts.fxtf.org/css-masking-1/#ref-for-mult-comma%E2%91%A4",
"https://drafts.fxtf.org/css-masking-1/#ref-for-container-element%E2%91%A6",
"https://drafts.fxtf.org/css-masking-1/#ref-for-elementdef-defs%E2%91%A5",
Expand Down Expand Up @@ -789,26 +789,26 @@
"https://drafts.fxtf.org/css-masking-1/#ref-for-comb-any%E2%91%A1",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-repeat-style%E2%91%A0",
"https://drafts.fxtf.org/css-masking-1/#ref-for-comb-any%E2%91%A2",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A3",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A1",
"https://drafts.fxtf.org/css-masking-1/#ref-for-comb-any%E2%91%A3",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A4",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A2",
"https://drafts.fxtf.org/css-masking-1/#ref-for-comb-one%E2%91%A0%E2%91%A3",
"https://drafts.fxtf.org/css-masking-1/#ref-for-comb-any%E2%91%A4",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-compositing-operator%E2%91%A0",
"https://drafts.fxtf.org/css-masking-1/#ref-for-comb-any%E2%91%A5",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-masking-mode%E2%91%A0",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A5",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A3",
"https://drafts.fxtf.org/css-masking-1/#ref-for-valdef-mask-clip-no-clip",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A6",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A4",
"https://drafts.fxtf.org/css-masking-1/#ref-for-propdef-mask-origin%E2%91%A4",
"https://drafts.fxtf.org/css-masking-1/#ref-for-valdef-mask-clip-no-clip%E2%91%A0",
"https://drafts.fxtf.org/css-masking-1/#ref-for-propdef-mask-clip%E2%91%A4",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A7",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A5",
"https://drafts.fxtf.org/css-masking-1/#ref-for-valdef-mask-clip-no-clip%E2%91%A1",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A8",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A6",
"https://drafts.fxtf.org/css-masking-1/#ref-for-propdef-mask-origin%E2%91%A5",
"https://drafts.fxtf.org/css-masking-1/#ref-for-propdef-mask-clip%E2%91%A5",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A0%E2%93%AA",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A7",
"https://drafts.fxtf.org/css-masking-1/#ref-for-propdef-mask-origin%E2%91%A6",
"https://drafts.fxtf.org/css-masking-1/#ref-for-propdef-mask-clip%E2%91%A6",
"https://drafts.fxtf.org/css-masking-1/#ref-for-used-value%E2%91%A3",
Expand Down Expand Up @@ -1558,7 +1558,7 @@
"https://drafts.fxtf.org/css-masking-1/#ref-for-mask-layer-image%E2%91%A0%E2%91%A8",
"https://drafts.fxtf.org/css-masking-1/#ref-for-elementdef-mask%E2%91%A3%E2%91%A1",
"https://drafts.fxtf.org/css-masking-1/#ref-for-propdef-mask%E2%91%A0%E2%91%A1",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A0%E2%91%A0",
"https://drafts.fxtf.org/css-masking-1/#ref-for-typedef-geometry-box%E2%91%A8",
"https://drafts.fxtf.org/css-masking-1/#ref-for-valdef-mask-clip-no-clip%E2%91%A2",
"https://drafts.fxtf.org/css-masking-1/#ref-for-propdef-mask-mode%E2%91%A0%E2%91%A1",
"https://drafts.fxtf.org/css-masking-1/#ref-for-mask-layer-image%E2%91%A1%E2%93%AA",
Expand Down Expand Up @@ -1619,6 +1619,11 @@
"https://drafts.fxtf.org/css-masking-1/#index",
"https://drafts.fxtf.org/css-masking-1/#index-defined-here",
"https://drafts.fxtf.org/css-masking-1/#index-defined-elsewhere",
"https://drafts.fxtf.org/css-masking-1/#784ef06e",
"https://drafts.fxtf.org/css-masking-1/#infopanel-for-784ef06e",
"https://drafts.fxtf.org/css-masking-1/#infopaneltitle-for-784ef06e",
"https://drafts.fxtf.org/css-masking-1/#infopanel-for-784ef06e",
"https://drafts.fxtf.org/css-masking-1/#infopaneltitle-for-784ef06e",
"https://drafts.fxtf.org/css-masking-1/#0cab481d",
"https://drafts.fxtf.org/css-masking-1/#infopanel-for-0cab481d",
"https://drafts.fxtf.org/css-masking-1/#infopaneltitle-for-0cab481d",
Expand Down Expand Up @@ -2327,6 +2332,7 @@
"https://drafts.fxtf.org/css-masking-1/#references",
"https://drafts.fxtf.org/css-masking-1/#normative",
"https://drafts.fxtf.org/css-masking-1/#biblio-compositing-1",
"https://drafts.fxtf.org/css-masking-1/#biblio-css-box-4",
"https://drafts.fxtf.org/css-masking-1/#biblio-css-break-4",
"https://drafts.fxtf.org/css-masking-1/#biblio-css-cascade-5",
"https://drafts.fxtf.org/css-masking-1/#biblio-css-color-4",
Expand Down
Loading

0 comments on commit e163c51

Please sign in to comment.