Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / getComputedStyle / counterIncrement-without-counter.html
blobe68980dfeb431042a0b13e3cb84fae39e79cf6a9
1 <html>
2 <head>
3 <script src="../../../resources/js-test.js"></script>
4 </head>
5 <body>
6 <div id="console"></div>
7 <script>
8 description("Test that the initial value of 'counter-increment' and 'counter-reset' is 'none'.");
9 var style = window.getComputedStyle(document.body, null);
10 shouldBeEqualToString("style.counterIncrement", "none");
11 shouldBeEqualToString("style.counterReset", "none");
12 </script>
13 </body>
14 </html>