Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / counters / element-removal-crash.xhtml
blob5ea304b80fd5c9ddc5c51ccd2065850c4389714a
1 <span xmlns="http://www.w3.org/1999/xhtml">
2 <span/>
3 <style>
4 span
6 counter-increment: counter;
8 span:before
10 content: counter(counter);
12 </style>
13 <script>
14 if (window.testRunner)
16 testRunner.dumpAsText();
17 testRunner.waitUntilDone();
20 function runTest()
22 document.documentElement.textContent = "PASS";
24 if (window.testRunner)
25 testRunner.notifyDone();
28 setTimeout('runTest()', 0);
29 </script>
30 <span/>