OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <script src="http://127.0.0.1:8000/resources/slow-script.pl?delay=1000"></script
> |
| 4 <script src="../resources/js-test-pre.js"></script> |
| 5 </head> |
| 6 <body> |
| 7 <script> |
| 8 shouldBeTrue("internals.isPreloaded('resources/base-image1.png');"); |
| 9 shouldBeFalse("internals.isPreloaded('resources/empty.html');"); |
| 10 shouldBeFalse("internals.isPreloaded('resources/empty.js');"); |
| 11 </script> |
| 12 <div>This test passes if the image is preloaded, but none of the non-img element
s with a srcset attribute is.</div> |
| 13 <img height="100" width="100" src="resources/preload-test.jpg" srcset="resources
/base-image1.png 1x, resources/base-image3.png 3x, resources/base-image2.png 2x"
></img> |
| 14 <iframe srcset="resources/empty.html"></iframe> |
| 15 <script srcset="resources/empty.js"></script> |
| 16 </body> |
| 17 </html> |
| 18 |
OLD | NEW |