Skip to content

Commit 15c741c

Browse files
committed
Add lazy-loading for <video poster>
Add a new posterloading attribute to the video element which controls lazy-loading of the poster image. Fixes #6636.
1 parent 989886e commit 15c741c

File tree

1 file changed

+75
-9
lines changed

1 file changed

+75
-9
lines changed

source

+75-9
Original file line numberDiff line numberDiff line change
@@ -7342,14 +7342,14 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
73427342
<li><p>Return false.</p></li>
73437343
</ol>
73447344

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>
73477347

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>
73537353

73547354
<p>Each <code>Document</code> has a <dfn>lazy load intersection observer</dfn>, initially set to
73557355
null but can be set to an <code>IntersectionObserver</code> instance.</p>
@@ -33096,6 +33096,7 @@ interface <dfn interface>HTMLObjectElement</dfn> : <span>HTMLElement</span> {
3309633096
<dd><code data-x="attr-media-src">src</code></dd>
3309733097
<dd><code data-x="attr-media-crossorigin">crossorigin</code></dd>
3309833098
<dd><code data-x="attr-video-poster">poster</code></dd>
33099+
<dd><code data-x="attr-video-posterloading">posterloading</code></dd>
3309933100
<dd><code data-x="attr-media-preload">preload</code></dd>
3310033101
<dd><code data-x="attr-media-autoplay">autoplay</code></dd>
3310133102
<dd><code data-x="attr-video-playsinline">playsinline</code></dd>
@@ -33119,6 +33120,7 @@ interface <dfn interface>HTMLVideoElement</dfn> : <span>HTMLMediaElement</span>
3311933120
readonly attribute unsigned long <span data-x="dom-video-videoWidth">videoWidth</span>;
3312033121
readonly attribute unsigned long <span data-x="dom-video-videoHeight">videoHeight</span>;
3312133122
[<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>;
3312233124
[<span>CEReactions</span>] attribute boolean <span data-x="dom-video-playsInline">playsInline</span>;
3312333125
};</code></pre>
3312433126
</dd>
@@ -33158,8 +33160,29 @@ interface <dfn interface>HTMLVideoElement</dfn> : <span>HTMLMediaElement</span>
3315833160
data is available. The attribute, if present, must contain a <span>valid non-empty URL
3315933161
potentially surrounded by spaces</span>.</p>
3316033162

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+
3316133169
<div w-nodev>
3316233170

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+
3316333186
<p>If the specified resource is to be used, then, when the element is created or when the <code
3316433187
data-x="attr-video-poster">poster</code> attribute is set, changed, or removed, the user agent must
3316533188
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>
3318733210
<span data-x="concept-request-credentials-mode">credentials mode</span> is "<code
3318833211
data-x="">include</code>", and whose <span>use-URL-credentials flag</span> is set.
3318933212

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>
3319233246

3319333247
<!-- could define how to sniff for an image here -->
3319433248

@@ -33401,6 +33455,11 @@ interface <dfn interface>HTMLVideoElement</dfn> : <span>HTMLMediaElement</span>
3340133455
IDL attribute must <span>reflect</span> the <code data-x="attr-video-poster">poster</code> content
3340233456
attribute.</p>
3340333457

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+
3340433463
<p>The <dfn attribute for="HTMLVideoElement"><code
3340533464
data-x="dom-video-playsInline">playsInline</code></dfn> IDL attribute must <span>reflect</span>
3340633465
the <code data-x="attr-video-playsinline">playsinline</code> content attribute.</p>
@@ -128084,6 +128143,7 @@ interface <dfn interface>External</dfn> {
128084128143
<code data-x="attr-media-src">src</code>;
128085128144
<code data-x="attr-media-crossorigin">crossorigin</code>;
128086128145
<code data-x="attr-video-poster">poster</code>;
128146+
<code data-x="attr-video-posterloading">posterloading</code>;
128087128147
<code data-x="attr-media-preload">preload</code>;
128088128148
<code data-x="attr-media-autoplay">autoplay</code>;
128089128149
<code data-x="attr-video-playsinline">playsinline</code>;
@@ -129206,6 +129266,12 @@ interface <dfn interface>External</dfn> {
129206129266
<td> <code data-x="attr-video-poster">video</code>
129207129267
<td> Poster frame to show prior to video playback
129208129268
<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>"
129209129275
<tr>
129210129276
<th> <code data-x="">preload</code>
129211129277
<td> <code data-x="attr-media-preload">audio</code>;

0 commit comments

Comments
 (0)