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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/range/slider-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 background: #ccccff; 7 background: #ccccff;
8 margin: 0px; 8 margin: 0px;
9 padding: 0px; 9 padding: 0px;
10 border: solid 1px red; 10 border: solid 1px red;
11 orphans: 1;
12 widows: 1;
11 } 13 }
12 14
13 input[type="range"] { 15 input[type="range"] {
14 width: 100px; 16 width: 100px;
15 height: 50px; 17 height: 50px;
16 } 18 }
17 19
18 td { 20 td {
19 background: red; 21 background: red;
20 } 22 }
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 <tr><td><input id="c31" type="range" min="0" max="100" step="10" /></td></tr> 122 <tr><td><input id="c31" type="range" min="0" max="100" step="10" /></td></tr>
121 <tr><td><input id="c32" type="range" min="0" max="100" step="10" /></td></tr> 123 <tr><td><input id="c32" type="range" min="0" max="100" step="10" /></td></tr>
122 </table> 124 </table>
123 </form> 125 </form>
124 126
125 <h2>Results</h2> 127 <h2>Results</h2>
126 <div id="res"> 128 <div id="res">
127 </div> 129 </div>
128 130
129 </html> 131 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698