Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / HTMLImageElement / image-sizes-viewport-with-new-image-and-template-parent.html
blob44826860502525e665bcdb54b4c4713ef488e467
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
6 function insert() {
7 var img = new Image();
8 var template = document.getElementById('template');
10 img.src = 'resources/blue_rect.jpg';
11 img.sizes = '50vw';
13 template.appendChild(img);
15 </script>
16 <body onload="insert()">
17 <pre id="result">PASS - didn't crash.</pre>
18 <template id ="template"></template>
19 </body>