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

Side by Side Diff: LayoutTests/fast/dom/HTMLImageElement/resources/srcset_iframe.html

Issue 674163002: Test that only the right resource is loaded in iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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 <img id="srcset" srcset="blue_rect.jpg 90w, image-set-4x.png 120w">
2 <script>
3 var img = document.getElementById('srcset');
4 img.onload = function() {
5 window.parent.postMessage("loaded", "*");
6 };
7 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698