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

Side by Side Diff: LayoutTests/fast/css/getPropertyValue-column-rule.html

Issue 58533003: Move fast/js/resources files to resources. (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> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 .test { 5 .test {
6 width: 100px; 6 width: 100px;
7 height: 100px; 7 height: 100px;
8 display: inline-block; 8 display: inline-block;
9 } 9 }
10 </style> 10 </style>
11 <script src="../js/resources/js-test-pre.js"></script> 11 <script src="../../resources/js-test.js"></script>
12 <script> 12 <script>
13 if (window.testRunner) 13 if (window.testRunner)
14 testRunner.dumpAsText(); 14 testRunner.dumpAsText();
15 </script> 15 </script>
16 </head> 16 </head>
17 <body> 17 <body>
18 <div id="-webkit-column-rule1" class="test" style="-webkit-column-rule: 10px solid black;"></div> 18 <div id="-webkit-column-rule1" class="test" style="-webkit-column-rule: 10px solid black;"></div>
19 <div id="-webkit-column-rule2" class="test" style="-webkit-column-rule: 10px solid;"></div> 19 <div id="-webkit-column-rule2" class="test" style="-webkit-column-rule: 10px solid;"></div>
20 <div id="-webkit-column-rule3" class="test" style="-webkit-column-rule: 20px red;"></div> 20 <div id="-webkit-column-rule3" class="test" style="-webkit-column-rule: 20px red;"></div>
21 <div id="-webkit-column-rule4" class="test" style="-webkit-column-rule: 10px ;"></div> 21 <div id="-webkit-column-rule4" class="test" style="-webkit-column-rule: 10px ;"></div>
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 shouldBe('div10.style.getPropertyValue("-webkit-column-rule")', "null"); 64 shouldBe('div10.style.getPropertyValue("-webkit-column-rule")', "null");
65 65
66 var div11 = document.getElementById("-webkit-column-rule11"); 66 var div11 = document.getElementById("-webkit-column-rule11");
67 shouldBe('div11.style.getPropertyValue("-webkit-column-rule")', "null"); 67 shouldBe('div11.style.getPropertyValue("-webkit-column-rule")', "null");
68 68
69 var div12 = document.getElementById("-webkit-column-rule12"); 69 var div12 = document.getElementById("-webkit-column-rule12");
70 shouldBe('div12.style.getPropertyValue("-webkit-column-rule")', "null"); 70 shouldBe('div12.style.getPropertyValue("-webkit-column-rule")', "null");
71 </script> 71 </script>
72 </body> 72 </body>
73 </html> 73 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/getFloatValueForUnit.html ('k') | LayoutTests/fast/css/getPropertyValue-webkit-margin-collapse.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698