OLD | NEW |
1 <html> | 1 <!DOCTYPE html> |
2 <head> | |
3 <script src="resources/srcset-helper.js"></script> | 2 <script src="resources/srcset-helper.js"></script> |
4 <script src="../../resources/js-test.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
5 <script> | 4 <script> |
6 function updateSrc() { | 5 function updateSrc() { |
7 var img = document.getElementById("foo"); | 6 var img = document.getElementById("foo"); |
8 // srcset must be set first, otherwise 'src' is loaded as well | 7 // srcset must be set first, otherwise 'src' is loaded as well |
9 img.srcset = "resources/blue-100-px-square.png 1x, resources/green-400-p
x-square.png 2x"; | 8 img.srcset = "resources/blue-100-px-square.png 1x, resources/green-400-p
x-square.png 2x"; |
10 img.src = "resources/blue-100-px-square.png" | 9 img.src = "resources/blue-100-px-square.png" |
11 } | 10 } |
12 | 11 |
13 addEventListener("DOMContentLoaded", function() { | 12 addEventListener("DOMContentLoaded", function() { |
14 updateSrc(); | 13 updateSrc(); |
15 }, false); | 14 }, false); |
16 addEventListener("load", function() { | 15 addEventListener("load", function() { |
17 shouldBeTrue('document.getElementById("foo").clientWidth==200'); | 16 shouldBeTrue('document.getElementById("foo").clientWidth==200'); |
18 }, false); | 17 }, false); |
19 </script> | 18 </script> |
20 </head> | 19 <div>This test passes if this img tag below is a green square when the scale fac
tor is 2. |
21 | 20 It ensures that attributes can be changed dynamically from javascript, and t
hat only the correct resource is loaded.</div> |
22 <body id="body"> | 21 <img id="foo"> |
23 <div>This test passes if this img tag below is a green square when the scale
factor is 2. | |
24 It ensures that attributes can be changed dynamically from javascript, and
that only the correct resource is loaded.</div> | |
25 <img id="foo"> | |
26 </body> | |
27 </html> | |
OLD | NEW |