-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1509792 [wpt PR 14231] - Add imageSrcset and imageSizes IDL attri…
…butes to HTMLLinkElement, a=testonly Automatic update from web-platform-tests Add imageSrcset and imageSizes IDL attributes to HTMLLinkElement This feature is behind the Experimental Web Platform feature flag. Spec PR: whatwg/html#4048 Bug: 813452 Change-Id: I84c58035789b64a311637cebc4672d16661980c2 Reviewed-on: https://chromium-review.googlesource.com/c/1350558 Reviewed-by: Dominic Farolino <domfarolinogmail.com> Reviewed-by: Kinuko Yasuda <kinukochromium.org> Commit-Queue: Kunihiko Sakamoto <ksakamotochromium.org> Cr-Commit-Position: refs/heads/master{#610990} -- wpt-commits: dba9026fee0e7f5294181008a91b18c29030a397 wpt-pr: 14231 UltraBlame original commit: 988fb1f286accc0c15d9fc19410ed514598dfaf7
- Loading branch information
Showing
1 changed file
with
321 additions
and
0 deletions.
There are no files selected for viewing
321 changes: 321 additions & 0 deletions
321
testing/web-platform/tests/preload/dynamic-adding-preload-imagesrcset.tentative.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,321 @@ | ||
< | ||
! | ||
DOCTYPE | ||
html | ||
> | ||
< | ||
script | ||
src | ||
= | ||
" | ||
/ | ||
resources | ||
/ | ||
testharness | ||
. | ||
js | ||
" | ||
> | ||
< | ||
/ | ||
script | ||
> | ||
< | ||
script | ||
src | ||
= | ||
" | ||
/ | ||
resources | ||
/ | ||
testharnessreport | ||
. | ||
js | ||
" | ||
> | ||
< | ||
/ | ||
script | ||
> | ||
< | ||
script | ||
src | ||
= | ||
" | ||
/ | ||
preload | ||
/ | ||
resources | ||
/ | ||
preload_helper | ||
. | ||
js | ||
" | ||
> | ||
< | ||
/ | ||
script | ||
> | ||
< | ||
script | ||
> | ||
var | ||
t | ||
= | ||
async_test | ||
( | ||
' | ||
Makes | ||
sure | ||
that | ||
a | ||
dynamically | ||
added | ||
preload | ||
with | ||
imagesrcset | ||
works | ||
' | ||
) | ||
; | ||
< | ||
/ | ||
script | ||
> | ||
< | ||
body | ||
> | ||
< | ||
script | ||
> | ||
t | ||
. | ||
step | ||
( | ||
function | ||
( | ||
) | ||
{ | ||
verifyPreloadAndRTSupport | ||
( | ||
) | ||
; | ||
var | ||
link | ||
= | ||
document | ||
. | ||
createElement | ||
( | ||
" | ||
link | ||
" | ||
) | ||
; | ||
link | ||
. | ||
as | ||
= | ||
" | ||
image | ||
" | ||
; | ||
link | ||
. | ||
rel | ||
= | ||
" | ||
preload | ||
" | ||
; | ||
link | ||
. | ||
href | ||
= | ||
" | ||
resources | ||
/ | ||
square | ||
. | ||
png | ||
? | ||
default | ||
" | ||
; | ||
link | ||
. | ||
imageSrcset | ||
= | ||
" | ||
resources | ||
/ | ||
square | ||
. | ||
png | ||
? | ||
200 | ||
200w | ||
resources | ||
/ | ||
square | ||
. | ||
png | ||
? | ||
400 | ||
400w | ||
resources | ||
/ | ||
square | ||
. | ||
png | ||
? | ||
800 | ||
800w | ||
" | ||
; | ||
link | ||
. | ||
imageSizes | ||
= | ||
" | ||
400px | ||
" | ||
; | ||
link | ||
. | ||
onload | ||
= | ||
t | ||
. | ||
step_func | ||
( | ||
function | ||
( | ||
) | ||
{ | ||
t | ||
. | ||
step_timeout | ||
( | ||
function | ||
( | ||
) | ||
{ | ||
verifyNumberOfDownloads | ||
( | ||
" | ||
resources | ||
/ | ||
square | ||
. | ||
png | ||
? | ||
default | ||
" | ||
0 | ||
) | ||
; | ||
verifyNumberOfDownloads | ||
( | ||
" | ||
resources | ||
/ | ||
square | ||
. | ||
png | ||
? | ||
200 | ||
" | ||
0 | ||
) | ||
; | ||
verifyNumberOfDownloads | ||
( | ||
" | ||
resources | ||
/ | ||
square | ||
. | ||
png | ||
? | ||
400 | ||
" | ||
1 | ||
) | ||
; | ||
verifyNumberOfDownloads | ||
( | ||
" | ||
resources | ||
/ | ||
square | ||
. | ||
png | ||
? | ||
800 | ||
" | ||
0 | ||
) | ||
; | ||
t | ||
. | ||
done | ||
( | ||
) | ||
; | ||
} | ||
0 | ||
) | ||
; | ||
} | ||
) | ||
; | ||
document | ||
. | ||
body | ||
. | ||
appendChild | ||
( | ||
link | ||
) | ||
; | ||
} | ||
) | ||
; | ||
< | ||
/ | ||
script | ||
> | ||
< | ||
script | ||
src | ||
= | ||
" | ||
resources | ||
/ | ||
dummy | ||
. | ||
js | ||
? | ||
pipe | ||
= | ||
trickle | ||
( | ||
d5 | ||
) | ||
& | ||
dynamic | ||
- | ||
adding | ||
- | ||
preload | ||
" | ||
> | ||
< | ||
/ | ||
script | ||
> | ||
< | ||
/ | ||
body | ||
> |