Update web-platform-tests to revision ee82278e15570e573d87fb80179ff8231b6db61a

This commit is contained in:
WPT Sync Bot 2018-06-03 21:07:04 -04:00
parent d23bc4f1a4
commit 83e2dc11b0
278 changed files with 13348 additions and 10515 deletions

View file

@ -0,0 +1 @@
@domfarolino

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<title>Priority Hints - Image element</title>
<meta name="author" title="Dominic Farolino" href="mailto:domfarolino@gmail.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<img id=img1 src=/images/green.png importance=high>
<img id=img2 src=/images/green.png importance=low>
<img id=img3 src=/images/green.png importance=auto>
<img id=img4 src=/images/green.png importance=xyz>
<img id=img5 src=/images/green.png>
<script>
test(() => {
assert_equals(img1.importance, "high", "high importance is a valid IDL value on the image element");
assert_equals(img2.importance, "low", "high importance is a valid IDL value on the image element");
assert_equals(img3.importance, "auto", "auto importance is a valid IDL value on the image element");
assert_equals(img4.importance, "auto", "invalid importance reflects as 'auto' IDL attribute on the image element");
assert_equals(img5.importance, "auto", "missing importance reflects as 'auto' IDL attribute on the image element");
}, "importance attribute on <img> elements should reflect valid IDL values");
const img = new Image();
assert_equals(img.importance, "auto");
</script>

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<title>Priority Hints - Link element</title>
<meta name="author" title="Dominic Farolino" href="mailto:domfarolino@gmail.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link id=link1 href=resources/stylesheet.css importance=high>
<link id=link2 href=resources/stylesheet.css importance=low>
<link id=link3 href=resources/stylesheet.css importance=auto>
<link id=link4 href=resources/stylesheet.css importance=xyz>
<link id=link5 href=resources/stylesheet.css>
<script>
test(() => {
assert_equals(link1.importance, "high", "high importance is a valid IDL value on the link element");
assert_equals(link2.importance, "low", "high importance is a valid IDL value on the link element");
assert_equals(link3.importance, "auto", "auto importance is a valid IDL value on the link element");
assert_equals(link4.importance, "auto", "invalid importance reflects as 'auto' IDL attribute on the link element");
assert_equals(link5.importance, "auto", "missing importance reflects as 'auto' IDL attribute on the link element");
}, "importance attribute on <link> elements should reflect valid IDL values");
const link = document.createElement("link");
assert_equals(link.importance, "auto");
</script>

View file

@ -0,0 +1,3 @@
body {
background-color: green;
}