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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set.html

Issue 1787513004: Move grid-auto-flow into CSSPropertyParser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch for landing Created 4 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <link href="resources/grid.css" rel="stylesheet"> 4 <link href="resources/grid.css" rel="stylesheet">
5 <style> 5 <style>
6 .gridAutoFlowDense { 6 .gridAutoFlowDense {
7 grid-auto-flow: dense; 7 grid-auto-flow: dense;
8 } 8 }
9 .gridAutoFlowColumnDense { 9 .gridAutoFlowColumnDense {
10 grid-auto-flow: column dense; 10 grid-auto-flow: column dense;
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 checkGridAutoFlowSetCSSValue("gridAutoFlowDenseRowStack", "row"); 104 checkGridAutoFlowSetCSSValue("gridAutoFlowDenseRowStack", "row");
105 105
106 debug(""); 106 debug("");
107 debug("Test the initial value"); 107 debug("Test the initial value");
108 checkGridAutoFlowSetJSValue("", "", "row"); 108 checkGridAutoFlowSetJSValue("", "", "row");
109 109
110 debug("Test getting and setting grid-auto-flow through JS"); 110 debug("Test getting and setting grid-auto-flow through JS");
111 checkGridAutoFlowSetJSValue("column", "column", "column"); 111 checkGridAutoFlowSetJSValue("column", "column", "column");
112 checkGridAutoFlowSetJSValue("column dense", "column dense", "column dense"); 112 checkGridAutoFlowSetJSValue("column dense", "column dense", "column dense");
113 checkGridAutoFlowSetJSValue("row dense", "row dense", "row dense"); 113 checkGridAutoFlowSetJSValue("row dense", "row dense", "row dense");
114 checkGridAutoFlowSetJSValue("dense column", "dense column", "column dense"); 114 checkGridAutoFlowSetJSValue("dense column", "column dense", "column dense");
115 checkGridAutoFlowSetJSValue("dense row", "dense row", "row dense"); 115 checkGridAutoFlowSetJSValue("dense row", "row dense", "row dense");
116 checkGridAutoFlowSetJSValue("row", "row", "row"); 116 checkGridAutoFlowSetJSValue("row", "row", "row");
117 117
118 debug(""); 118 debug("");
119 debug("Test getting and setting bad values for grid-auto-flow through JS"); 119 debug("Test getting and setting bad values for grid-auto-flow through JS");
120 checkGridAutoFlowSetJSValue("noone", "", "row"); 120 checkGridAutoFlowSetJSValue("noone", "", "row");
121 checkGridAutoFlowSetJSValue("dense row dense", "", "row"); 121 checkGridAutoFlowSetJSValue("dense row dense", "", "row");
122 checkGridAutoFlowSetJSValue("column column", "", "row"); 122 checkGridAutoFlowSetJSValue("column column", "", "row");
123 checkGridAutoFlowSetJSValue("stack row", "", "row"); 123 checkGridAutoFlowSetJSValue("stack row", "", "row");
124 checkGridAutoFlowSetJSValue("column stack", "", "row"); 124 checkGridAutoFlowSetJSValue("column stack", "", "row");
125 checkGridAutoFlowSetJSValue("dense column dense", "", "row"); 125 checkGridAutoFlowSetJSValue("dense column dense", "", "row");
126 checkGridAutoFlowSetJSValue("dense row stack", "", "row"); 126 checkGridAutoFlowSetJSValue("dense row stack", "", "row");
127 127
128 debug(""); 128 debug("");
129 debug("Test setting grid-auto-flow to 'initial' through JS"); 129 debug("Test setting grid-auto-flow to 'initial' through JS");
130 // Reusing the value so that we can check that it is set back to its initial value. 130 // Reusing the value so that we can check that it is set back to its initial value.
131 checkGridAutoFlowSetJSValue("initial", "initial", "row"); 131 checkGridAutoFlowSetJSValue("initial", "initial", "row");
132 </script> 132 </script>
133 </body> 133 </body>
134 </html> 134 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698