Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / ping-attribute-no-crash.xml
blobec80dafb0f1c6a663a3aa2b9c3d6ffa26c00c2eb
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <script><![CDATA[
4 if (window.testRunner) {
5     testRunner.dumpAsText();
6     testRunner.waitUntilDone();
9 function crash()
11     cur_obj = document.createElement('a');
12     eval('cur_obj.search = false;');
13     eval('cur_obj.hostname = navigator;');
14     eval('cur_obj.ping = false;');
15     e_value = eval('cur_obj.click();');
16     if (window.testRunner)
17         testRunner.notifyDone();
19 ]]></script>
20 </head>
21 <body onload="crash();">
22 </body>
23 </html>