@@ -7342,14 +7342,14 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
7342
7342
<li><p>Return false.</p></li>
7343
7343
</ol>
7344
7344
7345
- <p>Each <code>img</code> and <code>iframe </code> element has associated <dfn>lazy load resumption
7346
- steps</dfn>, initially null.</p>
7345
+ <p>Each <code>img</code>, <code>iframe</code> and <code>video </code> element has associated
7346
+ <dfn>lazy load resumption steps</dfn>, initially null.</p>
7347
7347
7348
- <p class="note">For <code>img</code> and <code>iframe</code> elements that <span data-x="will lazy
7349
- load element steps">will lazy load</span>, these steps are run from the <span>lazy load
7350
- intersection observer</span>'s callback or when their <span>lazy loading attribute</span> is set
7351
- to the <span data-x="attr-loading-eager-state">Eager</span> state. This causes the element to
7352
- continue loading.</p>
7348
+ <p class="note">For <code>img</code>, <code>iframe</code> and <code>video</code> elements that
7349
+ <span data-x="will lazy load element steps">will lazy load</span>, these steps are run from the
7350
+ <span>lazy load intersection observer</span>'s callback or when their <span>lazy loading
7351
+ attribute</span> is set to the <span data-x="attr-loading-eager-state">Eager</span> state. This
7352
+ causes the element to continue loading.</p>
7353
7353
7354
7354
<p>Each <code>Document</code> has a <dfn>lazy load intersection observer</dfn>, initially set to
7355
7355
null but can be set to an <code>IntersectionObserver</code> instance.</p>
@@ -33096,6 +33096,7 @@ interface <dfn interface>HTMLObjectElement</dfn> : <span>HTMLElement</span> {
33096
33096
<dd><code data-x="attr-media-src">src</code></dd>
33097
33097
<dd><code data-x="attr-media-crossorigin">crossorigin</code></dd>
33098
33098
<dd><code data-x="attr-video-poster">poster</code></dd>
33099
+ <dd><code data-x="attr-video-posterloading">posterloading</code></dd>
33099
33100
<dd><code data-x="attr-media-preload">preload</code></dd>
33100
33101
<dd><code data-x="attr-media-autoplay">autoplay</code></dd>
33101
33102
<dd><code data-x="attr-video-playsinline">playsinline</code></dd>
@@ -33119,6 +33120,7 @@ interface <dfn interface>HTMLVideoElement</dfn> : <span>HTMLMediaElement</span>
33119
33120
readonly attribute unsigned long <span data-x="dom-video-videoWidth">videoWidth</span>;
33120
33121
readonly attribute unsigned long <span data-x="dom-video-videoHeight">videoHeight</span>;
33121
33122
[<span>CEReactions</span>] attribute USVString <span data-x="dom-video-poster">poster</span>;
33123
+ [<span>CEReactions</span>] attribute DOMString <span data-x="dom-video-posterLoading">posterLoading</span>;
33122
33124
[<span>CEReactions</span>] attribute boolean <span data-x="dom-video-playsInline">playsInline</span>;
33123
33125
};</code></pre>
33124
33126
</dd>
@@ -33158,8 +33160,29 @@ interface <dfn interface>HTMLVideoElement</dfn> : <span>HTMLMediaElement</span>
33158
33160
data is available. The attribute, if present, must contain a <span>valid non-empty URL
33159
33161
potentially surrounded by spaces</span>.</p>
33160
33162
33163
+ <p>The <dfn element-attr for="video"><code
33164
+ data-x="attr-video-posterloading">posterloading</code></dfn> attribute is a <span>lazy
33165
+ loading attribute</span>. Its purpose is to indicate the policy for loading the image given by the
33166
+ <code data-x="attr-video-poster">poster</code> attribute of <code>video</code> elements that are
33167
+ outside the viewport.</p>
33168
+
33161
33169
<div w-nodev>
33162
33170
33171
+ <p>When the <code data-x="attr-video-posterloading">posterloading</code> attribute's state is
33172
+ changed to the <span data-x="attr-loading-eager-state">Eager</span> state, the user agent must run
33173
+ these steps:</p>
33174
+
33175
+ <ol>
33176
+ <li><p>Let <var>resumptionSteps</var> be the <code>video</code> element's <span>lazy load
33177
+ resumption steps</span>.</p></li>
33178
+
33179
+ <li><p>If <var>resumptionSteps</var> is null, then return.</p></li>
33180
+
33181
+ <li><p>Set the <code>video</code>'s <span>lazy load resumption steps</span> to null.</p></li>
33182
+
33183
+ <li><p>Invoke <var>resumptionSteps</var>.</p></li>
33184
+ </ol>
33185
+
33163
33186
<p>If the specified resource is to be used, then, when the element is created or when the <code
33164
33187
data-x="attr-video-poster">poster</code> attribute is set, changed, or removed, the user agent must
33165
33188
run the following steps to determine the element's <dfn>poster frame</dfn> (regardless of the
@@ -33187,8 +33210,39 @@ interface <dfn interface>HTMLVideoElement</dfn> : <span>HTMLMediaElement</span>
33187
33210
<span data-x="concept-request-credentials-mode">credentials mode</span> is "<code
33188
33211
data-x="">include</code>", and whose <span>use-URL-credentials flag</span> is set.
33189
33212
33190
- <li><p><!--FETCH--><span data-x="concept-fetch">Fetch</span> <var>request</var>. This must
33191
- <span>delay the load event</span> of the element's <span>node document</span>.</p></li>
33213
+ <li><p>Let <var>delay load event</var> be true if the <code>video</code>'s <span>lazy loading
33214
+ attribute</span> is in the <span data-x="attr-loading-eager-state">Eager</span> state, or if
33215
+ <span data-x="concept-n-noscript">scripting is disabled</span> for the <code>video</code>, and
33216
+ false otherwise.</p></li>
33217
+
33218
+ <li>
33219
+ <p>If the <span>will lazy load element steps</span> given the <code>video</code> return true,
33220
+ then:</p>
33221
+
33222
+ <ol>
33223
+ <li><p>Set the <code>video</code>'s <span>lazy load resumption steps</span> to the rest of this
33224
+ algorithm starting with the step labeled <i>fetch the poster image</i>.</p></li>
33225
+
33226
+ <li><p><span>Start intersection-observing a lazy loading element</span> for the
33227
+ <code>video</code> element.</p></li>
33228
+
33229
+ <li><p>Return.</p></li>
33230
+ </ol>
33231
+ </li>
33232
+
33233
+ <li>
33234
+ <!--FETCH-->
33235
+ <p><i>Fetch the poster image</i>: <span data-x="concept-fetch">Fetch</span>
33236
+ <var>request</var>.</p>
33237
+
33238
+
33239
+ <!-- similar text in <img>, <input type=image> -->
33240
+ <p>When <var>delay load event</var> is true, fetching the image must <span>delay the load
33241
+ event</span> of the element's <span>node document</span> until the <span
33242
+ data-x="concept-task">task</span> that is <span data-x="queue a task">queued</span> by the
33243
+ <span>networking task source</span> once the resource has been fetched has been run.
33244
+ <!--TODO or the fetch was aborted, presumably --></p>
33245
+ </li>
33192
33246
33193
33247
<!-- could define how to sniff for an image here -->
33194
33248
@@ -33401,6 +33455,11 @@ interface <dfn interface>HTMLVideoElement</dfn> : <span>HTMLMediaElement</span>
33401
33455
IDL attribute must <span>reflect</span> the <code data-x="attr-video-poster">poster</code> content
33402
33456
attribute.</p>
33403
33457
33458
+ <p>The <dfn attribute for="HTMLVideoElement"><code
33459
+ data-x="dom-video-posterLoading">posterLoading</code></dfn> IDL attribute must
33460
+ <span>reflect</span> the <code data-x="attr-video-posterloading">posterloading</code> content
33461
+ attribute, <span>limited to only known values</span>.</p>
33462
+
33404
33463
<p>The <dfn attribute for="HTMLVideoElement"><code
33405
33464
data-x="dom-video-playsInline">playsInline</code></dfn> IDL attribute must <span>reflect</span>
33406
33465
the <code data-x="attr-video-playsinline">playsinline</code> content attribute.</p>
@@ -128084,6 +128143,7 @@ interface <dfn interface>External</dfn> {
128084
128143
<code data-x="attr-media-src">src</code>;
128085
128144
<code data-x="attr-media-crossorigin">crossorigin</code>;
128086
128145
<code data-x="attr-video-poster">poster</code>;
128146
+ <code data-x="attr-video-posterloading">posterloading</code>;
128087
128147
<code data-x="attr-media-preload">preload</code>;
128088
128148
<code data-x="attr-media-autoplay">autoplay</code>;
128089
128149
<code data-x="attr-video-playsinline">playsinline</code>;
@@ -129206,6 +129266,12 @@ interface <dfn interface>External</dfn> {
129206
129266
<td> <code data-x="attr-video-poster">video</code>
129207
129267
<td> Poster frame to show prior to video playback
129208
129268
<td> <span>Valid non-empty URL potentially surrounded by spaces</span>
129269
+ <tr>
129270
+ <th> <code data-x="">posterloading</code>
129271
+ <td> <code data-x="attr-video-posterloading">video</code>
129272
+ <td> Used when determining loading deferral of the poster frame
129273
+ <td> "<code data-x="attr-loading-lazy">lazy</code>";
129274
+ "<code data-x="attr-loading-eager">eager</code>"
129209
129275
<tr>
129210
129276
<th> <code data-x="">preload</code>
129211
129277
<td> <code data-x="attr-media-preload">audio</code>;
0 commit comments