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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/number/number-spinbutton-in-multi-column.html

Issue 1909233002: Spec-compliant parsing and initial values for 'orphans' and 'widows'. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some unit tests had non-conformant widphans assumptions too. 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style type="text/css" media="screen"> 3 <style type="text/css" media="screen">
4 form { 4 form {
5 -webkit-column-count: 3; 5 -webkit-column-count: 3;
6 -webkit-column-gap: 0px; 6 -webkit-column-gap: 0px;
7 -moz-column-count: 3; 7 -moz-column-count: 3;
8 -moz-column-gap: 0px; 8 -moz-column-gap: 0px;
9 background: #ccccff; 9 background: #ccccff;
10 margin: 0px; 10 margin: 0px;
11 padding: 0px; 11 padding: 0px;
12 border: solid 1px red; 12 border: solid 1px red;
13 orphans: 1;
14 widows: 1;
13 } 15 }
14 16
15 input[type="number"] { 17 input[type="number"] {
16 width: 100px; 18 width: 100px;
17 height: 50px; 19 height: 50px;
18 font-size: 44px; 20 font-size: 44px;
19 } 21 }
20 22
21 td { 23 td {
22 background: red; 24 background: red;
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 <tr><td><input id="c31" type="number" min="0" max="100" step="10" /></td></tr> 138 <tr><td><input id="c31" type="number" min="0" max="100" step="10" /></td></tr>
137 <tr><td><input id="c32" type="number" min="0" max="100" step="10" /></td></tr> 139 <tr><td><input id="c32" type="number" min="0" max="100" step="10" /></td></tr>
138 </table> 140 </table>
139 </form> 141 </form>
140 142
141 <h2>Results</h2> 143 <h2>Results</h2>
142 <div id="mousepos"></div> 144 <div id="mousepos"></div>
143 <div id="res"></div> 145 <div id="res"></div>
144 146
145 </html> 147 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698