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

Side by Side Diff: LayoutTests/fast/css/last-child-innerhtml.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../js/resources/js-test-pre.js"></script>
4 <style> 4 <style>
5 div p:first-child { 5 div p:first-child {
6 color: blue; 6 color: blue;
7 } 7 }
8 div p:last-child { 8 div p:last-child {
9 color: purple; 9 color: purple;
10 } 10 }
(...skipping 27 matching lines...) Expand all
38 element = document.getElementById("oneChild").firstChild; 38 element = document.getElementById("oneChild").firstChild;
39 shouldBe("getComputedStyle(element).getPropertyValue('color')", "'rgb(0, 0, 255) '"); 39 shouldBe("getComputedStyle(element).getPropertyValue('color')", "'rgb(0, 0, 255) '");
40 element = element.nextSibling; 40 element = element.nextSibling;
41 shouldBe("getComputedStyle(element).getPropertyValue('color')", "'rgb(0, 0, 0)'" ); 41 shouldBe("getComputedStyle(element).getPropertyValue('color')", "'rgb(0, 0, 0)'" );
42 element = element.nextSibling; 42 element = element.nextSibling;
43 shouldBe("getComputedStyle(element).getPropertyValue('color')", "'rgb(128, 0, 12 8)'"); 43 shouldBe("getComputedStyle(element).getPropertyValue('color')", "'rgb(128, 0, 12 8)'");
44 44
45 document.getElementById("threeChildren").innerHTML = ""; 45 document.getElementById("threeChildren").innerHTML = "";
46 document.getElementById("oneChild").innerHTML = ""; 46 document.getElementById("oneChild").innerHTML = "";
47 </script> 47 </script>
48 <script src="../js/resources/js-test-post.js"></script>
49 </body> 48 </body>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/lang-mapped-to-webkit-locale.xhtml ('k') | LayoutTests/fast/css/legacy-opacity-styles.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698