Skip to content

Commit 5554401

Browse files
author
reffy-bot
committed
Update of ED report from new reffy run
Using reffy commit 18.6.2.
1 parent 4038e2c commit 5554401

File tree

11 files changed

+111
-119
lines changed

11 files changed

+111
-119
lines changed

ed/algorithms/mediacapture-streams.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,7 @@
10701070
"html": "<p>If the constraint does not apply for this type of object,\n the fitness distance is 0 (that is, the constraint does not\n influence the fitness distance).</p>"
10711071
},
10721072
{
1073-
"html": "<p>If <var>constraintValue</var> is a boolean, but the\n constrainable property is not, then the fitness distance is\n based on whether the <a href=\"https://w3c.github.io/mediacapture-main/#dfn-settings-dictionary\" class=\"internalDFN\" data-link-type=\"dfn\" id=\"ref-for-dfn-settings-dictionary-5\">settings dictionary</a>'s\n <var>constraintName</var> member <a data-link-type=\"dfn\" data-link-for=\"map\" data-xref-for=\"map\" data-lt=\"exist\" data-cite=\"infra\" data-cite-path=\"\" data-cite-frag=\"map-exists\" href=\"https://infra.spec.whatwg.org/#map-exists\">exists</a> or\n not, from the formula\n </p><pre aria-busy=\"false\"><code class=\"hljs\">(constraintValue == exists) ? 0 : 1</code></pre>"
1073+
"html": "<p>If <var>constraintValue</var> is a boolean, but the\n constrainable property is not, then the fitness distance is\n based on whether the <a href=\"https://w3c.github.io/mediacapture-main/#dfn-settings-dictionary\" class=\"internalDFN\" data-link-type=\"dfn\" id=\"ref-for-dfn-settings-dictionary-5\">settings dictionary</a>'s\n <var>constraintName</var> member <a data-link-type=\"dfn\" data-link-for=\"map\" data-xref-for=\"map\" data-lt=\"exist\" data-cite=\"infra\" data-cite-path=\"\" data-cite-frag=\"map-exists\" href=\"https://infra.spec.whatwg.org/#map-exists\">exists</a> or\n not, from the formula\n </p><pre aria-busy=\"false\"><code class=\"hljs yaml\"><span class=\"hljs-string\">(constraintValue</span> <span class=\"hljs-string\">==</span> <span class=\"hljs-string\">exists)</span> <span class=\"hljs-string\">?</span> <span class=\"hljs-attr\">0 :</span> <span class=\"hljs-number\">1</span></code></pre>"
10741074
},
10751075
{
10761076
"html": "<p>If the <a href=\"https://w3c.github.io/mediacapture-main/#dfn-settings-dictionary\" class=\"internalDFN\" data-link-type=\"dfn\" id=\"ref-for-dfn-settings-dictionary-6\">settings dictionary</a>'s <var>constraintName</var>\n member does <a data-link-type=\"dfn\" data-link-for=\"map\" data-xref-for=\"map\" data-lt=\"exist\" data-cite=\"infra\" data-cite-path=\"\" data-cite-frag=\"map-exists\" href=\"https://infra.spec.whatwg.org/#map-exists\">not exist</a>, the fitness distance\n is 1.</p>"
@@ -1079,10 +1079,10 @@
10791079
"html": "If no ideal value is specified (<var>constraintValue</var>\n either contains no member named 'ideal', or, if bare values are\n to be treated as 'ideal', isn't a bare value), the fitness\n distance is 0."
10801080
},
10811081
{
1082-
"html": "For all positive numeric constraints (such as\n height, width, frameRate, aspectRatio, sampleRate and\n sampleSize), the fitness distance is the result of the formula\n <pre aria-busy=\"false\"><code class=\"hljs\">(actual == ideal) ? 0 : |actual - ideal| / max(|actual|, |ideal|)</code></pre>"
1082+
"html": "For all positive numeric constraints (such as\n height, width, frameRate, aspectRatio, sampleRate and\n sampleSize), the fitness distance is the result of the formula\n <pre aria-busy=\"false\"><code class=\"hljs yaml\"><span class=\"hljs-string\">(actual</span> <span class=\"hljs-string\">==</span> <span class=\"hljs-string\">ideal)</span> <span class=\"hljs-string\">?</span> <span class=\"hljs-attr\">0 :</span> <span class=\"hljs-string\">|actual</span> <span class=\"hljs-bullet\">-</span> <span class=\"hljs-string\">ideal|</span> <span class=\"hljs-string\">/</span> <span class=\"hljs-string\">max(|actual|,</span> <span class=\"hljs-string\">|ideal|)</span></code></pre>"
10831083
},
10841084
{
1085-
"html": "For all string, enum and boolean constraints (e.g.\n deviceId, groupId, facingMode, resizeMode, echoCancellation),\n the fitness distance is the result of the formula\n <pre aria-busy=\"false\"><code class=\"hljs\">(actual == ideal) ? 0 : 1</code></pre>"
1085+
"html": "For all string, enum and boolean constraints (e.g.\n deviceId, groupId, facingMode, resizeMode, echoCancellation),\n the fitness distance is the result of the formula\n <pre aria-busy=\"false\"><code class=\"hljs yaml\"><span class=\"hljs-string\">(actual</span> <span class=\"hljs-string\">==</span> <span class=\"hljs-string\">ideal)</span> <span class=\"hljs-string\">?</span> <span class=\"hljs-attr\">0 :</span> <span class=\"hljs-number\">1</span></code></pre>"
10861086
}
10871087
]
10881088
},

ed/algorithms/mimesniff.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -502,6 +502,9 @@
502502
{
503503
"html": "Let <var>number size</var> be 1."
504504
},
505+
{
506+
"html": "Let <var>index</var> be 0."
507+
},
505508
{
506509
"html": "While <var>number size</var> is less than <var>max vint length</var>, and less than <var>length</var>, continuously loop through these steps:",
507510
"rationale": "if",
@@ -517,9 +520,6 @@
517520
}
518521
]
519522
},
520-
{
521-
"html": "Let <var>index</var> be 0."
522-
},
523523
{
524524
"html": "Let <var>parsed number</var> be <var>sequence</var>[<var>index</var>] &amp; ~<var>mask</var>."
525525
},

ed/algorithms/ppa.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
"html": "<p>Clamp <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionimpressionoptions-lifetimedays\" id=\"ref-for-dom-privateattributionimpressionoptions-lifetimedays③\">lifetimeDays</a></code> to\nthe <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#user-agent\" id=\"ref-for-user-agent①⑦\">user agent</a>’s upper limit.</p>"
147147
},
148148
{
149-
"html": "<p>Let <var>conversionSites</var> be the <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#sets\" id=\"ref-for-sets\">set</a> that is the result\nof invoking <a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#parse-a-site\" id=\"ref-for-parse-a-site\">parse a site</a> for each value in <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionimpressionoptions-conversionsites\" id=\"ref-for-dom-privateattributionimpressionoptions-conversionsites①\">conversionSites</a></code>.</p>"
149+
"html": "<p>Let <var>conversionSites</var> be the <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#sets\" id=\"ref-for-sets\">set</a> that is the result\nof invoking <a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#parse-a-site\" id=\"ref-for-parse-a-site\">parse a site</a> for each value in <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionimpressionoptions-conversionsites\" id=\"ref-for-dom-privateattributionimpressionoptions-conversionsites①\">conversionSites</a></code>.</p>"
150150
},
151151
{
152152
"html": "<p>If any result in <var>conversionSites</var> is failure, return <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webidl.spec.whatwg.org/#syntaxerror\" id=\"ref-for-syntaxerror\">SyntaxError</a></code>.</p>"
@@ -157,7 +157,7 @@
157157
"html": "<p>If the Private Attribution API is <a href=\"https://w3c.github.io/ppa/#opt-out\">disabled</a>, return.</p>"
158158
},
159159
{
160-
"html": "<p>Construct <var>impression</var> as a <a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression\" id=\"ref-for-impression②④\">saved impression</a> comprising:</p>\n <ul>\n <li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-filter-data\" id=\"ref-for-impression-filter-data②\">Filter Data</a> set to <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionimpressionoptions-filterdata\" id=\"ref-for-dom-privateattributionimpressionoptions-filterdata③\">filterData</a></code>.</p>\n </li><li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-impression-site\" id=\"ref-for-impression-impression-site①\">Impression Site</a> set to <var>site</var>.</p>\n </li><li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-intermediary-site\" id=\"ref-for-impression-intermediary-site①\">Intermediary Site</a> set to <var>intermediarySite</var>.</p>\n </li><li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-conversion-sites\" id=\"ref-for-impression-conversion-sites①\">Conversion Sites</a> set to <var>conversionSites</var>.</p>\n </li><li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-timestamp\" id=\"ref-for-impression-timestamp①\">Timestamp</a> set to <var>timestamp</var>.</p>\n </li><li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-lifetime\" id=\"ref-for-impression-lifetime①\">Lifetime</a> set to <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionimpressionoptions-lifetimedays\" id=\"ref-for-dom-privateattributionimpressionoptions-lifetimedays④\">lifetimeDays</a></code>,\nmultiplied by a <a data-link-type=\"dfn\" href=\"https://w3c.github.io/hr-time/#dfn-duration\" id=\"ref-for-dfn-duration③\">duration</a> of one day.</p>\n </li><li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-histogram-index\" id=\"ref-for-impression-histogram-index\">Histogram Index</a> set to <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionimpressionoptions-histogramindex\" id=\"ref-for-dom-privateattributionimpressionoptions-histogramindex②\">histogramIndex</a></code>.</p>\n </li></ul>"
160+
"html": "<p>Construct <var>impression</var> as a <a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression\" id=\"ref-for-impression②④\">saved impression</a> comprising:</p>\n <ul>\n <li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-match-value\" id=\"ref-for-impression-match-value\">Match Value</a> set to <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionimpressionoptions-matchvalue\" id=\"ref-for-dom-privateattributionimpressionoptions-matchvalue③\">matchValue</a></code>.</p>\n </li><li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-impression-site\" id=\"ref-for-impression-impression-site①\">Impression Site</a> set to <var>site</var>.</p>\n </li><li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-intermediary-site\" id=\"ref-for-impression-intermediary-site①\">Intermediary Site</a> set to <var>intermediarySite</var>.</p>\n </li><li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-conversion-sites\" id=\"ref-for-impression-conversion-sites①\">Conversion Sites</a> set to <var>conversionSites</var>.</p>\n </li><li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-timestamp\" id=\"ref-for-impression-timestamp①\">Timestamp</a> set to <var>timestamp</var>.</p>\n </li><li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-lifetime\" id=\"ref-for-impression-lifetime①\">Lifetime</a> set to <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionimpressionoptions-lifetimedays\" id=\"ref-for-dom-privateattributionimpressionoptions-lifetimedays④\">lifetimeDays</a></code>,\nmultiplied by a <a data-link-type=\"dfn\" href=\"https://w3c.github.io/hr-time/#dfn-duration\" id=\"ref-for-dfn-duration③\">duration</a> of one day.</p>\n </li><li data-md=\"\">\n <p><a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-histogram-index\" id=\"ref-for-impression-histogram-index\">Histogram Index</a> set to <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionimpressionoptions-histogramindex\" id=\"ref-for-dom-privateattributionimpressionoptions-histogramindex②\">histogramIndex</a></code>.</p>\n </li></ul>"
161161
},
162162
{
163163
"html": "<p>Save <var>impression</var> to the <a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-store\" id=\"ref-for-impression-store⑨\">impression store</a>.</p>"
@@ -248,7 +248,7 @@
248248
"rationale": "let",
249249
"steps": [
250250
{
251-
"html": "<p>Let <var>matchedImpressions</var> be an <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-is-empty\" id=\"ref-for-list-is-empty\">empty</a> <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#sets\" id=\"ref-for-sets\">set</a>.</p>"
251+
"html": "<p>Let <var>matchedImpressions</var> be an <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-is-empty\" id=\"ref-for-list-is-empty\">empty</a> <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#sets\" id=\"ref-for-sets\">set</a>.</p>"
252252
},
253253
{
254254
"html": "<p>Let <var>currentEpoch</var> be the result of <a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#get-the-current-epoch\" id=\"ref-for-get-the-current-epoch⑤\">get the current epoch</a> with <var>site</var> and <var>now</var>.</p>"
@@ -318,7 +318,7 @@
318318
"rationale": "let",
319319
"steps": [
320320
{
321-
"html": "<p>Let <var>matching</var> be an <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-is-empty\" id=\"ref-for-list-is-empty③\">empty</a> <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#sets\" id=\"ref-for-sets\">set</a>.</p>"
321+
"html": "<p>Let <var>matching</var> be an <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-is-empty\" id=\"ref-for-list-is-empty③\">empty</a> <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#sets\" id=\"ref-for-sets\">set</a>.</p>"
322322
},
323323
{
324324
"html": "<p>Let <var>lookbackDays</var> be <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionconversionoptions-lookbackdays\" id=\"ref-for-dom-privateattributionconversionoptions-lookbackdays③\">lookbackDays</a></code> if it <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#map-exists\" id=\"ref-for-map-exists②\">exists</a>, the <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#implementation-defined\" id=\"ref-for-implementation-defined①\">implementation-defined</a> maximum otherwise.</p>"
@@ -337,7 +337,7 @@
337337
"html": "<p>If <var>impression</var>’s <a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-conversion-sites\" id=\"ref-for-impression-conversion-sites②\">conversion sites</a> <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-is-empty\" id=\"ref-for-list-is-empty④\">is not empty</a> and <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-contain\" id=\"ref-for-list-contain\">does not contain</a> <var>topLevelSite</var>, <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#iteration-continue\" id=\"ref-for-iteration-continue①\">continue</a>.</p>"
338338
},
339339
{
340-
"html": "<p>If <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionconversionoptions-filterdata\" id=\"ref-for-dom-privateattributionconversionoptions-filterdata\">filterData</a></code> <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-is-empty\" id=\"ref-for-list-is-empty⑤\">is not empty</a> and <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-contain\" id=\"ref-for-list-contain①\">does not contain</a> <var>impression</var>’s <a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-filter-data\" id=\"ref-for-impression-filter-data③\">filter data</a>, <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#iteration-continue\" id=\"ref-for-iteration-continue②\">continue</a>.</p>"
340+
"html": "<p>If <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionconversionoptions-matchvalue\" id=\"ref-for-dom-privateattributionconversionoptions-matchvalue\">matchValue</a></code> <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-is-empty\" id=\"ref-for-list-is-empty⑤\">is not empty</a> and <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-contain\" id=\"ref-for-list-contain①\">does not contain</a> <var>impression</var>’s <a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-match-value\" id=\"ref-for-impression-match-value①\">match value</a>, <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#iteration-continue\" id=\"ref-for-iteration-continue②\">continue</a>.</p>"
341341
},
342342
{
343343
"html": "<p>If <var>options</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://w3c.github.io/ppa/#dom-privateattributionconversionoptions-impressionsites\" id=\"ref-for-dom-privateattributionconversionoptions-impressionsites②\">impressionSites</a></code> <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-is-empty\" id=\"ref-for-list-is-empty⑥\">is not empty</a> and <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-contain\" id=\"ref-for-list-contain②\">does not contain</a> <var>impression</var>’s <a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression-impression-site\" id=\"ref-for-impression-impression-site②\">impression site</a>, <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#iteration-continue\" id=\"ref-for-iteration-continue③\">continue</a>.</p>"
@@ -355,7 +355,7 @@
355355
{
356356
"name": "fill a histogram with last-touch attribution",
357357
"href": "https://w3c.github.io/ppa/#fill-a-histogram-with-last-touch-attribution",
358-
"html": "To <dfn class=\"dfn-paneled has-dfn-panel\" data-dfn-type=\"dfn\" data-noexport=\"\" id=\"fill-a-histogram-with-last-touch-attribution\" role=\"button\" aria-expanded=\"false\" tabindex=\"0\">fill a histogram with last-touch attribution</dfn>, given a <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#sets\" id=\"ref-for-sets\">set</a> of <a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression\" id=\"ref-for-impression②⑤\">impressions</a> <var>matchedImpressions</var>, an integer <var>histogramSize</var>, and an integer <var>value</var>:",
358+
"html": "To <dfn class=\"dfn-paneled has-dfn-panel\" data-dfn-type=\"dfn\" data-noexport=\"\" id=\"fill-a-histogram-with-last-touch-attribution\" role=\"button\" aria-expanded=\"false\" tabindex=\"0\">fill a histogram with last-touch attribution</dfn>, given a <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#sets\" id=\"ref-for-sets\">set</a> of <a data-link-type=\"dfn\" href=\"https://w3c.github.io/ppa/#impression\" id=\"ref-for-impression②⑤\">impressions</a> <var>matchedImpressions</var>, an integer <var>histogramSize</var>, and an integer <var>value</var>:",
359359
"rationale": "assert",
360360
"steps": [
361361
{

0 commit comments

Comments
 (0)