Skip to content

Commit 8cc0cf4

Browse files
author
reffy-bot
committed
Update of ED report from new reffy run
Using reffy commit 18.3.2.
1 parent 2009f89 commit 8cc0cf4

File tree

14 files changed

+453
-326
lines changed

14 files changed

+453
-326
lines changed

ed/algorithms/html.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16183,16 +16183,16 @@
1618316183
]
1618416184
},
1618516185
{
16186-
"name": "CanvasImageData/createImageData(imagedata)",
16186+
"name": "CanvasImageData/createImageData(imageData)",
1618716187
"href": "https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-createimagedata-imagedata",
16188-
"html": "The <dfn data-dfn-for=\"CanvasImageData\" id=\"dom-context-2d-createimagedata-imagedata\" data-dfn-type=\"method\"><code>createImageData(<var>imagedata</var>)</code></dfn>\n method steps are:",
16188+
"html": "The <dfn data-dfn-for=\"CanvasImageData\" id=\"dom-context-2d-createimagedata-imagedata\" data-dfn-type=\"method\"><code>createImageData(<var>imageData</var>)</code></dfn>\n method steps are:",
1618916189
"rationale": "let",
1619016190
"steps": [
1619116191
{
1619216192
"html": "<p>Let <var>newImageData</var> be a <a id=\"pixel-manipulation:new-2\" href=\"https://webidl.spec.whatwg.org/#new\" data-x-internal=\"new\">new</a> <code id=\"pixel-manipulation:imagedata-9\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#imagedata\">ImageData</a></code> object.</p>"
1619316193
},
1619416194
{
16195-
"html": "<p><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#initialize-an-imagedata-object\" id=\"pixel-manipulation:initialize-an-imagedata-object-4\">Initialize</a> <var>newImageData</var>\n given the value of <var>imagedata</var>'s <code id=\"pixel-manipulation:dom-imagedata-width\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-width\">width</a></code>\n attribute, the value of <var>imagedata</var>'s <code id=\"pixel-manipulation:dom-imagedata-height\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-height\">height</a></code>\n attribute, and <i><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#initialize-imagedata-defaultcolorspace\" id=\"pixel-manipulation:initialize-imagedata-defaultcolorspace-2\">defaultColorSpace</a></i> set to the value of\n <var>imagedata</var>'s <code id=\"pixel-manipulation:dom-imagedata-colorspace\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-colorspace\">colorSpace</a></code> attribute.</p>"
16195+
"html": "<p><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#initialize-an-imagedata-object\" id=\"pixel-manipulation:initialize-an-imagedata-object-4\">Initialize</a> <var>newImageData</var>\n given the value of <var>imageData</var>'s <code id=\"pixel-manipulation:dom-imagedata-width\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-width\">width</a></code>\n attribute, the value of <var>imageData</var>'s <code id=\"pixel-manipulation:dom-imagedata-height\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-height\">height</a></code>\n attribute, and <i><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#initialize-imagedata-defaultcolorspace\" id=\"pixel-manipulation:initialize-imagedata-defaultcolorspace-2\">defaultColorSpace</a></i> set to the value of\n <var>imageData</var>'s <code id=\"pixel-manipulation:dom-imagedata-colorspace\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-colorspace\">colorSpace</a></code> attribute.</p>"
1619616196
},
1619716197
{
1619816198
"html": "<p>Initialize the image data of <var>newImageData</var> to <a id=\"pixel-manipulation:transparent-black-6\" href=\"https://drafts.csswg.org/css-color/#transparent-black\" data-x-internal=\"transparent-black\">transparent\n black</a>.</p>"
@@ -16300,11 +16300,13 @@
1630016300
]
1630116301
},
1630216302
{
16303-
"html": "The method, when invoked, must act as follows:",
16303+
"name": "put pixels from an ImageData onto a bitmap",
16304+
"href": "https://html.spec.whatwg.org/multipage/canvas.html#dom-context2d-putimagedata-common",
16305+
"html": "To <dfn id=\"dom-context2d-putimagedata-common\">put pixels from an <code>ImageData</code>\n onto a bitmap</dfn>, given an <code id=\"pixel-manipulation:imagedata-12\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#imagedata\">ImageData</a></code> <var>imageData</var>,\n an <a href=\"https://html.spec.whatwg.org/multipage/canvas.html#output-bitmap\" id=\"pixel-manipulation:output-bitmap-5\">output bitmap</a> <var>bitmap</var>, and numbers <var>dx</var>, <var>dy</var>,\n <var>dirtyX</var>, <var>dirtyY</var>, <var>dirtyWidth</var>, and <var>dirtyHeight</var>:",
1630416306
"rationale": "let",
1630516307
"steps": [
1630616308
{
16307-
"html": "<p>Let <var>buffer</var> be <var>imagedata</var>'s <code id=\"pixel-manipulation:dom-imagedata-data-5\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-data\">data</a></code> attribute value's [[ViewedArrayBuffer]] internal\n slot.</p>"
16309+
"html": "<p>Let <var>buffer</var> be <var>imageData</var>'s <code id=\"pixel-manipulation:dom-imagedata-data-5\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-data\">data</a></code> attribute value's [[ViewedArrayBuffer]] internal\n slot.</p>"
1630816310
},
1630916311
{
1631016312
"html": "<p>If <a id=\"pixel-manipulation:isdetachedbuffer\" href=\"https://tc39.es/ecma262/#sec-isdetachedbuffer\" data-x-internal=\"isdetachedbuffer\">IsDetachedBuffer</a>(<var>buffer</var>) is true, then throw an\n <a id=\"pixel-manipulation:invalidstateerror-3\" href=\"https://webidl.spec.whatwg.org/#invalidstateerror\" data-x-internal=\"invalidstateerror\">\"<code>InvalidStateError</code>\"</a> <code id=\"pixel-manipulation:domexception-13\"><a data-x-internal=\"domexception\" href=\"https://webidl.spec.whatwg.org/#dfn-DOMException\">DOMException</a></code>.</p>"
@@ -16316,13 +16318,13 @@
1631616318
"html": "<p>If <var>dirtyX</var> is negative, then let <var>dirtyWidth</var> be <span><var>dirtyWidth</var>+<var>dirtyX</var></span>, and let <var>dirtyX</var> be zero.</p>\n\n <p>If <var>dirtyY</var> is negative, then let <var>dirtyHeight</var> be <span><var>dirtyHeight</var>+<var>dirtyY</var></span>, and let <var>dirtyY</var> be zero.</p>"
1631716319
},
1631816320
{
16319-
"html": "<p>If <var>dirtyX</var>+<var>dirtyWidth</var> is greater than the <code id=\"pixel-manipulation:dom-imagedata-width-5\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-width\">width</a></code> attribute of the <var>imagedata</var> argument, then\n let <var>dirtyWidth</var> be the value of that <code id=\"pixel-manipulation:dom-imagedata-width-6\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-width\">width</a></code>\n attribute, minus the value of <var>dirtyX</var>.</p>\n\n <p>If <var>dirtyY</var>+<var>dirtyHeight</var> is greater than the <code id=\"pixel-manipulation:dom-imagedata-height-5\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-height\">height</a></code> attribute of the <var>imagedata</var> argument, then\n let <var>dirtyHeight</var> be the value of that <code id=\"pixel-manipulation:dom-imagedata-height-6\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-height\">height</a></code> attribute, minus the value of <var>dirtyY</var>.</p>"
16321+
"html": "<p>If <var>dirtyX</var>+<var>dirtyWidth</var> is greater than the <code id=\"pixel-manipulation:dom-imagedata-width-5\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-width\">width</a></code> attribute of the <var>imageData</var> argument, then\n let <var>dirtyWidth</var> be the value of that <code id=\"pixel-manipulation:dom-imagedata-width-6\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-width\">width</a></code>\n attribute, minus the value of <var>dirtyX</var>.</p>\n\n <p>If <var>dirtyY</var>+<var>dirtyHeight</var> is greater than the <code id=\"pixel-manipulation:dom-imagedata-height-5\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-height\">height</a></code> attribute of the <var>imageData</var> argument, then\n let <var>dirtyHeight</var> be the value of that <code id=\"pixel-manipulation:dom-imagedata-height-6\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-height\">height</a></code> attribute, minus the value of <var>dirtyY</var>.</p>"
1632016322
},
1632116323
{
1632216324
"html": "<p>If, after those changes, either <var>dirtyWidth</var> or <var>dirtyHeight</var> are negative\n or zero, then return without affecting any bitmaps.</p>"
1632316325
},
1632416326
{
16325-
"html": "<p>For all integer values of <var>x</var> and <var>y</var> where <span><var>dirtyX</var>&nbsp;≤&nbsp;<var>x</var>&nbsp;&lt;&nbsp;<span><var>dirtyX</var>+<var>dirtyWidth</var></span></span> and <span><var>dirtyY</var>&nbsp;≤&nbsp;<var>y</var>&nbsp;&lt;&nbsp;<span><var>dirtyY</var>+<var>dirtyHeight</var></span></span>, copy the\n four channels of the pixel with coordinate (<var>x</var>, <var>y</var>) in\n the <var>imagedata</var> data structure's <a href=\"https://html.spec.whatwg.org/multipage/canvas.html#canvas-pixel-arraybuffer\" id=\"pixel-manipulation:canvas-pixel-arraybuffer-4\">Canvas Pixel\n <code>ArrayBuffer</code></a> to the pixel with coordinate (<span><var>dx</var>+<var>x</var></span>, <var>dy</var>+<var>y</var>)\n in the rendering context's <a href=\"https://html.spec.whatwg.org/multipage/canvas.html#output-bitmap\" id=\"pixel-manipulation:output-bitmap-4\">output bitmap</a>.</p>"
16327+
"html": "<p>For all integer values of <var>x</var> and <var>y</var> where <span><var>dirtyX</var>&nbsp;≤&nbsp;<var>x</var>&nbsp;&lt;&nbsp;<span><var>dirtyX</var>+<var>dirtyWidth</var></span></span> and <span><var>dirtyY</var>&nbsp;≤&nbsp;<var>y</var>&nbsp;&lt;&nbsp;<span><var>dirtyY</var>+<var>dirtyHeight</var></span></span>,\n set the pixel with coordinate (<span><var>dx</var>+<var>x</var></span>,\n <var>dy</var>+<var>y</var>) in <var>bitmap</var> to the color of the pixel at coordinate\n (<var>x</var>, <var>y</var>) in the <var>imageData</var> data structure's\n <a href=\"https://html.spec.whatwg.org/multipage/canvas.html#canvas-pixel-arraybuffer\" id=\"pixel-manipulation:canvas-pixel-arraybuffer-4\">Canvas Pixel <code>ArrayBuffer</code></a>,\n converted from <var>imageData</var>'s <code id=\"pixel-manipulation:dom-imagedata-colorspace-7\"><a href=\"https://html.spec.whatwg.org/multipage/canvas.html#dom-imagedata-colorspace\">colorSpace</a></code>\n to the <a href=\"https://html.spec.whatwg.org/multipage/canvas.html#concept-canvas-color-space\" id=\"pixel-manipulation:concept-canvas-color-space-6\">color space</a> of <var>bitmap</var>\n using <a id=\"pixel-manipulation:'relative-colorimetric'-2\" href=\"https://drafts.csswg.org/css-color-5/#valdef-color-profile-rendering-intent-relative-colorimetric\" data-x-internal=\"'relative-colorimetric'\">'relative-colorimetric'</a> rendering intent.</p>"
1632616328
}
1632716329
]
1632816330
},

ed/algorithms/rdf12-concepts.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
{
88
"name": "literal",
99
"href": "https://w3c.github.io/rdf-concepts/spec/#dfn-literal",
10-
"html": "A <dfn data-local-lt=\"RDF literal\" data-lt=\"literal|RDF literal\" data-plurals=\"literals\" id=\"dfn-literal\" tabindex=\"0\" aria-haspopup=\"dialog\" data-dfn-type=\"dfn\">literal</dfn> in an <a href=\"https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-graph\" class=\"internalDFN\" data-link-type=\"dfn\" id=\"ref-for-dfn-rdf-graph-23\">RDF graph</a> consists of\n two, three, or four elements, as follow:",
10+
"html": "A <dfn data-local-lt=\"RDF literal\" data-lt=\"literal|RDF literal\" data-plurals=\"literals\" id=\"dfn-literal\" tabindex=\"0\" aria-haspopup=\"dialog\" data-dfn-type=\"dfn\">literal</dfn> in an <a href=\"https://w3c.github.io/rdf-concepts/spec/#dfn-rdf-graph\" class=\"internalDFN\" data-link-type=\"dfn\" id=\"ref-for-dfn-rdf-graph-26\">RDF graph</a> consists of\n two, three, or four elements, as follow:",
1111
"rationale": "if",
1212
"steps": [
1313
{
1414
"html": "a <dfn data-plurals=\"lexical forms\" id=\"dfn-lexical-form\" tabindex=\"0\" aria-haspopup=\"dialog\" data-dfn-type=\"dfn\">lexical form</dfn> consisting of a sequence of\n <a data-cite=\"I18N-GLOSSARY#dfn-code-point\" class=\"lint-ignore\" href=\"https://www.w3.org/TR/i18n-glossary/#dfn-code-point\" id=\"ref-for-index-term-unicode-code-points-4\">Unicode code points</a> [<cite><a class=\"bibref\" data-link-type=\"biblio\" href=\"https://w3c.github.io/rdf-concepts/spec/#bib-unicode\" title=\"The Unicode Standard\">UNICODE</a></cite>]\n which are <a data-cite=\"I18N-GLOSSARY#dfn-scalar-value\" href=\"https://www.w3.org/TR/i18n-glossary/#dfn-scalar-value\" id=\"ref-for-index-term-unicode-scalar-values-2\">Unicode scalar values</a>,\n and therefore do not contain\n <a data-cite=\"I18N-GLOSSARY#dfn-surrogate\" class=\"lint-ignore\" href=\"https://www.w3.org/TR/i18n-glossary/#dfn-surrogate\" id=\"ref-for-index-term-surrogate-code-points-2\">Unicode surrogate code points</a>"
1515
},
1616
{
17-
"html": "a <dfn data-plurals=\"datatype iris\" id=\"dfn-datatype-iri\" tabindex=\"0\" aria-haspopup=\"dialog\" data-dfn-type=\"dfn\">datatype <abbr title=\"Internationalized Resource Identifier\">IRI</abbr></dfn>, being an <a href=\"https://w3c.github.io/rdf-concepts/spec/#dfn-iri\" class=\"internalDFN\" data-link-type=\"dfn\" id=\"ref-for-dfn-iri-22\"><abbr title=\"Internationalized Resource Identifier\">IRI</abbr></a>\n identifying a datatype that determines how the lexical form maps\n to a <a href=\"https://w3c.github.io/rdf-concepts/spec/#dfn-literal-value\" class=\"internalDFN\" data-link-type=\"dfn\" id=\"ref-for-dfn-literal-value-3\">literal value</a>"
17+
"html": "a <dfn data-plurals=\"datatype iris\" id=\"dfn-datatype-iri\" tabindex=\"0\" aria-haspopup=\"dialog\" data-dfn-type=\"dfn\">datatype <abbr title=\"Internationalized Resource Identifier\">IRI</abbr></dfn>, being an <a href=\"https://w3c.github.io/rdf-concepts/spec/#dfn-iri\" class=\"internalDFN\" data-link-type=\"dfn\" id=\"ref-for-dfn-iri-25\"><abbr title=\"Internationalized Resource Identifier\">IRI</abbr></a>\n identifying a datatype that determines how the lexical form maps\n to a <a href=\"https://w3c.github.io/rdf-concepts/spec/#dfn-literal-value\" class=\"internalDFN\" data-link-type=\"dfn\" id=\"ref-for-dfn-literal-value-3\">literal value</a>"
1818
},
1919
{
2020
"html": "if and only if the <a href=\"https://w3c.github.io/rdf-concepts/spec/#dfn-datatype-iri\" class=\"internalDFN\" data-link-type=\"dfn\" id=\"ref-for-dfn-datatype-iri-1\">datatype <abbr title=\"Internationalized Resource Identifier\">IRI</abbr></a> is\n <code>http://www.w3.org/1999/02/22-rdf-syntax-ns#langString</code>, a\n non-empty <dfn data-plurals=\"language tags\" id=\"dfn-language-tag\" tabindex=\"0\" aria-haspopup=\"dialog\" data-dfn-type=\"dfn\">language tag</dfn> as defined by [<cite><a class=\"bibref\" data-link-type=\"biblio\" href=\"https://w3c.github.io/rdf-concepts/spec/#bib-bcp47\" title=\"Tags for Identifying Languages\">BCP47</a></cite>]. The\n language tag <em class=\"rfc2119\">MUST</em> be well-formed according to\n <a data-cite=\"bcp47#section-2.2.9\" href=\"https://www.rfc-editor.org/rfc/rfc5646#section-2.2.9\" id=\"ref-for-index-term-section-2-2-9-1\">section 2.2.9</a>\n of [<cite><a class=\"bibref\" data-link-type=\"biblio\" href=\"https://w3c.github.io/rdf-concepts/spec/#bib-bcp47\" title=\"Tags for Identifying Languages\">BCP47</a></cite>],\n and <em class=\"rfc2119\">MUST</em> be treated consistently, that is, in a case insensitive manner.\n Two language tags are the same if they only differ by case."

ed/dfns/html.json

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47285,7 +47285,7 @@
4728547285
"id": "dom-context-2d-createimagedata-imagedata",
4728647286
"href": "https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-createimagedata-imagedata",
4728747287
"linkingText": [
47288-
"createImageData(imagedata)"
47288+
"createImageData(imageData)"
4728947289
],
4729047290
"localLinkingText": [],
4729147291
"type": "method",
@@ -47523,11 +47523,32 @@
4752347523
},
4752447524
"definedIn": "prose"
4752547525
},
47526+
{
47527+
"id": "dom-context-2d-putimagedata-short",
47528+
"href": "https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-putimagedata-short",
47529+
"linkingText": [
47530+
"putImageData(imageData, dx, dy)"
47531+
],
47532+
"localLinkingText": [],
47533+
"type": "method",
47534+
"for": [
47535+
"CanvasImageData"
47536+
],
47537+
"access": "public",
47538+
"informative": false,
47539+
"heading": {
47540+
"id": "pixel-manipulation",
47541+
"href": "https://html.spec.whatwg.org/multipage/canvas.html#pixel-manipulation",
47542+
"title": "Pixel manipulation",
47543+
"number": "4.12.5.1.16"
47544+
},
47545+
"definedIn": "prose"
47546+
},
4752647547
{
4752747548
"id": "dom-context-2d-putimagedata",
4752847549
"href": "https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-putimagedata",
4752947550
"linkingText": [
47530-
"putImageData()"
47551+
"putImageData(imageData, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight)"
4753147552
],
4753247553
"localLinkingText": [],
4753347554
"type": "method",
@@ -47544,6 +47565,25 @@
4754447565
},
4754547566
"definedIn": "prose"
4754647567
},
47568+
{
47569+
"id": "dom-context2d-putimagedata-common",
47570+
"href": "https://html.spec.whatwg.org/multipage/canvas.html#dom-context2d-putimagedata-common",
47571+
"linkingText": [
47572+
"put pixels from an ImageData onto a bitmap"
47573+
],
47574+
"localLinkingText": [],
47575+
"type": "dfn",
47576+
"for": [],
47577+
"access": "private",
47578+
"informative": false,
47579+
"heading": {
47580+
"id": "pixel-manipulation",
47581+
"href": "https://html.spec.whatwg.org/multipage/canvas.html#pixel-manipulation",
47582+
"title": "Pixel manipulation",
47583+
"number": "4.12.5.1.16"
47584+
},
47585+
"definedIn": "prose"
47586+
},
4754747587
{
4754847588
"id": "concept-canvas-global-alpha",
4754947589
"href": "https://html.spec.whatwg.org/multipage/canvas.html#concept-canvas-global-alpha",

0 commit comments

Comments
 (0)