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

Side by Side Diff: LayoutTests/fast/dom/HTMLImageElement/image-sizes-viewport-with-template-parent-and-empty-sizes.html

Issue 653023002: ASSERTION FAILED: factor > 0 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5
6 function insert() {
7 var img = new Image();
8 var template = document.getElementById('template');
9 img.sizes = '';
10 template.appendChild(img);
11 }
12 </script>
13 <body onload="insert()">
14 <pre id="result">PASS - didn't crash.</pre>
15 <template id ="template"></template>
16 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698