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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-column-row-get-set.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> 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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698