Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: LayoutTests/fast/dom/HTMLImageElement/image-innerHTML.html

Issue 136693020: Add image loading spec related tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added srcset related tests Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <script src="../../../resources/js-test.js"></script>
5 <script>
6 description("Tests that creating and setting the src of an image element inside an innerHTML actually loads the resource");
7 jsTestIsAsync = true;
8
9 var div = document.createElement('div');
10 var div2 = document.createElement('div');
11 var attemptedLoadDirect = false;
12 var attemptedLoadIndirect = false;
13
14 div.innerHTML = '<img src="../resources/abe.png" onload="attemptedLoadDirect = t rue;">';
15 div2.innerHTML = '<div><img src="../resources/abe.png" onload="attemptedLoadIndi rect = true;"></div>';
16 document.body.onload = function() {
17 shouldBeTrue('attemptedLoadDirect');
18 shouldBeTrue('attemptedLoadIndirect');
19 finishJSTest();
20 };
21 </script>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698