Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / counters / counter-before-selector-crash.html
blob1f7c03722d4f17feb3d3ed9092092969b3a6fdc6
1 <html>
2 <head>
3 <style>
4 div.example:before {
5 content: counter(exampleno, upper-roman);
6 counter-increment: exampleno;
8 pre.example:before {
9 content: counter(exampleno, upper-roman);
10 counter-increment: exampleno;
12 </style>
13 <script>
14 function test()
16 if (window.testRunner)
17 testRunner.dumpAsText();
19 </script>
20 </head>
21 <body onload="test()">
22 This tests that we don't crash when using the CSS counters feature.
23 <div class="example"></div>
24 <pre class="example"></pre>
25 </body>
26 </html>