Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / draw-image-crash.html
blob37709854e5007dba95388c658c1ffb69e5374849
1 <!DOCTYPE html>
2 <html>
3 This test passes if it does not crash and 'PASS' is printed.<br/>
4 <img id="crash" src="resources/draw-image-crash.svg"></img>
5 <script>
6 if (window.testRunner)
7 testRunner.waitUntilDone();
9 window.onload = function() {
10 if (location.hash == '#done') {
11 document.write('PASS');
12 if (window.testRunner) {
13 testRunner.dumpAsText();
14 testRunner.notifyDone();
16 } else {
17 location.hash = 'done';
18 window.location.reload();
21 </script>
22 </html>