Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / counters / counter-reset-inherit-bug-94642.html
blob2d9e86170ca7a23b0080ab2076870ac6b19795b2
1 <!doctype html>
3 <style>
4 body { counter-reset: x 0; }
6 div {
7 counter-increment: inherit;
10 div:before {
11 content: counter(x);
13 </style>
15 <div></div>