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

Side by Side Diff: LayoutTests/css3/flexbox/display-flexbox-set-get.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 <link href="resources/flexbox.css" rel="stylesheet"> 4 <link href="resources/flexbox.css" rel="stylesheet">
5 <script src="../../fast/js/resources/js-test-pre.js"></script> 5 <script src="../../fast/js/resources/js-test-pre.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <div class="flexbox" id="flexbox"></div> 8 <div class="flexbox" id="flexbox"></div>
9 <div class="inline-flexbox" id="flexboxInline"></div> 9 <div class="inline-flexbox" id="flexboxInline"></div>
10 <script> 10 <script>
(...skipping 16 matching lines...) Expand all
27 element = document.createElement("div"); 27 element = document.createElement("div");
28 document.body.appendChild(element); 28 document.body.appendChild(element);
29 shouldBe("getComputedStyle(element, '').getPropertyValue('display')", "'block'") ; 29 shouldBe("getComputedStyle(element, '').getPropertyValue('display')", "'block'") ;
30 element.style.display = "inline-flex"; 30 element.style.display = "inline-flex";
31 shouldBe("getComputedStyle(element, '').getPropertyValue('display')", "'inline-f lex'"); 31 shouldBe("getComputedStyle(element, '').getPropertyValue('display')", "'inline-f lex'");
32 element.style.display = "-webkit-flex"; 32 element.style.display = "-webkit-flex";
33 shouldBe("getComputedStyle(element, '').getPropertyValue('display')", "'flex'"); 33 shouldBe("getComputedStyle(element, '').getPropertyValue('display')", "'flex'");
34 element.style.display = "-webkit-inline-flex"; 34 element.style.display = "-webkit-inline-flex";
35 shouldBe("getComputedStyle(element, '').getPropertyValue('display')", "'inline-f lex'"); 35 shouldBe("getComputedStyle(element, '').getPropertyValue('display')", "'inline-f lex'");
36 </script> 36 </script>
37 <script src="../../fast/js/resources/js-test-post.js"></script>
38 </body> 37 </body>
39 </html> 38 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/css-properties.html ('k') | LayoutTests/css3/flexbox/flex-align-baseline.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698