Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / counters / asterisk-counter-update-after-layout-crash.html
blobe3379584d4475b1916bfa112ff6eeb43f06e6f2b
1 <style>
2 .x:after { content:counter(c, asterisks) ""; counter-increment:c 1550; }
3 </style>
4 <script>
5 function runTest() {
6 document.styleSheets[0].insertRule("div { counter-reset: c 141170 }", 0);
7 if (window.testRunner)
8 testRunner.dumpAsText();
10 window.onload=runTest;
11 </script>
12 <div>
13 <span class="x">
14 <div></div>
15 <span class="x">
16 <p>
17 <p>
18 PASS if no assert or crash in debug
19 </div>