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

Side by Side Diff: LayoutTests/fast/multicol/old/columns-shorthand-parsing-2.html

Issue 299373006: Move old multicol tests to a separate directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>'columns' property with 'auto' and something else</title> 4 <title>'columns' property with 'auto' and something else</title>
5 <script src="../../resources/js-test.js"></script> 5 <script src="../../../resources/js-test.js"></script>
6 <script> 6 <script>
7 description("Test the behavior when 'auto' is part of the 'columns' proper ty value. See http://www.w3.org/TR/css3-multicol/#columns"); 7 description("Test the behavior when 'auto' is part of the 'columns' proper ty value. See http://www.w3.org/TR/css3-multicol/#columns");
8 if (window.testRunner) 8 if (window.testRunner)
9 testRunner.dumpAsText(); 9 testRunner.dumpAsText();
10 10
11 function runTests() { 11 function runTests() {
12 var tests = [["-webkit-columns:auto 3;", "auto", "3", "auto 3"], 12 var tests = [["-webkit-columns:auto 3;", "auto", "3", "auto 3"],
13 ["-webkit-columns:auto 10em;", "10em", "auto", "10em auto "], 13 ["-webkit-columns:auto 10em;", "10em", "auto", "10em auto "],
14 ["-webkit-columns:3 auto;", "auto", "3", "auto 3"], 14 ["-webkit-columns:3 auto;", "auto", "3", "auto 3"],
15 ["-webkit-columns:10em auto;", "10em", "auto", "10em auto "], 15 ["-webkit-columns:10em auto;", "10em", "auto", "10em auto "],
(...skipping 17 matching lines...) Expand all
33 } 33 }
34 </script> 34 </script>
35 </head> 35 </head>
36 <body> 36 <body>
37 <div id="element"></div> 37 <div id="element"></div>
38 <script> 38 <script>
39 runTests(); 39 runTests();
40 </script> 40 </script>
41 </body> 41 </body>
42 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698