| OLD | NEW |
| 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> | 4 <script> |
| 5 if (window.testRunner) | 5 if (window.testRunner) |
| 6 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); | 6 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); |
| 7 </script> | 7 </script> |
| 8 <link href="resources/grid.css" rel="stylesheet"> | 8 <link href="resources/grid.css" rel="stylesheet"> |
| 9 <style> | 9 <style> |
| 10 #singleSingleTrackRepeat { | 10 #singleSingleTrackRepeat { |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 } | 115 } |
| 116 testInvalidSyntax("repeat("); | 116 testInvalidSyntax("repeat("); |
| 117 testInvalidSyntax("repeat()"); | 117 testInvalidSyntax("repeat()"); |
| 118 testInvalidSyntax("repeat(3 / auto)"); | 118 testInvalidSyntax("repeat(3 / auto)"); |
| 119 testInvalidSyntax("repeat(3 , ,)"); | 119 testInvalidSyntax("repeat(3 , ,)"); |
| 120 testInvalidSyntax("repeat(0, 15px)"); | 120 testInvalidSyntax("repeat(0, 15px)"); |
| 121 testInvalidSyntax("repeat(-1, auto)"); | 121 testInvalidSyntax("repeat(-1, auto)"); |
| 122 // Nesting is no allowed. | 122 // Nesting is no allowed. |
| 123 testInvalidSyntax("repeat(2, repeat(1, auto))"); | 123 testInvalidSyntax("repeat(2, repeat(1, auto))"); |
| 124 </script> | 124 </script> |
| 125 <script src="../js/resources/js-test-post.js"></script> | |
| 126 </body> | 125 </body> |
| 127 </html> | 126 </html> |
| OLD | NEW |