Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Side by Side Diff: LayoutTests/fast/css/counters/counter-cssText.html

Issue 8041039: Merge 95071 - Fix cssText property of counter-valued CSSPrimitiveValue and avoid uninitialized re... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/835/
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/css/counters/counter-cssText-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <link rel=stylesheet href="../../js/resources/js-test-style.css"> 3 <link rel=stylesheet href="../../js/resources/js-test-style.css">
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 <style> 5 <style>
6 body { 6 body {
7 counter-reset: section; 7 counter-reset: section;
8 } 8 }
9 h1 { 9 h1 {
10 counter-increment: section; 10 counter-increment: section;
(...skipping 19 matching lines...) Expand all
30 var rules = document.styleSheets[1].cssRules; 30 var rules = document.styleSheets[1].cssRules;
31 shouldBeEqualToString("rules[2].style.cssText", "content: counter(section, decim al); "); 31 shouldBeEqualToString("rules[2].style.cssText", "content: counter(section, decim al); ");
32 shouldBeEqualToString("rules[3].style.cssText", "content: counters(section, ':', decimal); "); 32 shouldBeEqualToString("rules[3].style.cssText", "content: counters(section, ':', decimal); ");
33 shouldBeEqualToString("rules[4].style.cssText", "content: counter(section, lower -roman); "); 33 shouldBeEqualToString("rules[4].style.cssText", "content: counter(section, lower -roman); ");
34 shouldBeEqualToString("rules[5].style.cssText", "content: counters(section, ',', upper-roman); "); 34 shouldBeEqualToString("rules[5].style.cssText", "content: counters(section, ',', upper-roman); ");
35 window.successfullyParsed = true; 35 window.successfullyParsed = true;
36 </script> 36 </script>
37 <script src="../../js/resources/js-test-post.js"></script> 37 <script src="../../js/resources/js-test-post.js"></script>
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/counters/counter-cssText-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698