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

Side by Side Diff: LayoutTests/fast/css/css3-nth-space.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
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 div.class { background-color: red; } 6 div.class { background-color: red; }
7 div.class:nth-of-type(3n 7 div.class:nth-of-type(3n
8 + 1) {background-color: green;} 8 + 1) {background-color: green;}
9 </style> 9 </style>
10 10
(...skipping 14 matching lines...) Expand all
25 25
26 el = document.getElementById("second"); 26 el = document.getElementById("second");
27 shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('back ground-color')", "'rgb(255, 0, 0)'"); 27 shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('back ground-color')", "'rgb(255, 0, 0)'");
28 28
29 el = document.getElementById("third"); 29 el = document.getElementById("third");
30 shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('back ground-color')", "'rgb(255, 0, 0)'"); 30 shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('back ground-color')", "'rgb(255, 0, 0)'");
31 31
32 el = document.getElementById("fourth"); 32 el = document.getElementById("fourth");
33 shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('back ground-color')", "'rgb(0, 128, 0)'"); 33 shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('back ground-color')", "'rgb(0, 128, 0)'");
34 </script> 34 </script>
35 <script src="../js/resources/js-test-post.js"></script>
36 </body> 35 </body>
37 </html> 36 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/css3-ch-unit.html ('k') | LayoutTests/fast/css/css3-nth-tokens-script.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698