OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <link href="resources/grid.css" rel="stylesheet"> | 4 <link href="resources/grid.css" rel="stylesheet"> |
5 <style> | 5 <style> |
6 .grid { | 6 .grid { |
7 grid-template: "firstArea secondArea" | 7 grid-template: "firstArea secondArea" |
8 "thirdArea thirdArea"; | 8 "thirdArea thirdArea"; |
9 } | 9 } |
10 | 10 |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 testColumnRowInvalidJSParsing("5 span / span 2", "span 4 / 3 span"); | 218 testColumnRowInvalidJSParsing("5 span / span 2", "span 4 / 3 span"); |
219 testColumnRowInvalidJSParsing("'first' span / span 'last'", "span 4 'first'
/ 3 span 'last'"); | 219 testColumnRowInvalidJSParsing("'first' span / span 'last'", "span 4 'first'
/ 3 span 'last'"); |
220 testColumnRowInvalidJSParsing("'first' 3 span / span 'last'", "span 'first'
/ 2 span 'last'"); | 220 testColumnRowInvalidJSParsing("'first' 3 span / span 'last'", "span 'first'
/ 2 span 'last'"); |
221 testColumnRowInvalidJSParsing("'first' -1 span / span 'last'", "span -2 'fir
st' / span 'last'"); | 221 testColumnRowInvalidJSParsing("'first' -1 span / span 'last'", "span -2 'fir
st' / span 'last'"); |
222 | 222 |
223 // We don't allow span to be between the <integer> and the <string>. | 223 // We don't allow span to be between the <integer> and the <string>. |
224 testColumnRowInvalidJSParsing("'first' span 1 / 'last'", "2 span 'first' / '
last'"); | 224 testColumnRowInvalidJSParsing("'first' span 1 / 'last'", "2 span 'first' / '
last'"); |
225 testColumnRowInvalidJSParsing("3 'first' / 2 span 'last'", "5 'nav' / 'last'
span 7"); | 225 testColumnRowInvalidJSParsing("3 'first' / 2 span 'last'", "5 'nav' / 'last'
span 7"); |
226 testColumnRowInvalidJSParsing("3 / 1 span 2", "5 / 3 span 3"); | 226 testColumnRowInvalidJSParsing("3 / 1 span 2", "5 / 3 span 3"); |
227 </script> | 227 </script> |
228 <script src="../js/resources/js-test-post.js"></script> | |
229 </body> | 228 </body> |
230 </html> | 229 </html> |
OLD | NEW |