Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / inspector-support / uncaught-dom1-exception.html
blob9038af89fd178f90b128a16c05741c4eaf920648
1 <html>
2 <head>
3 <script>
5 function onload()
7 if (window.testRunner)
8 testRunner.dumpAsText();
10 // Following code generates an exception.
11 var p = document.createTextNode('');
12 p.textContent = "foo";
13 p.splitText(10000);
16 </script>
17 </head>
19 <body onload="onload()">
20 <p>
21 This tests that we are getting the correct message for DOM Exception 1: INDEX_SIZE_ERR.
22 </p>
24 </body>
25 </html>