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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select/listbox-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 body { 4 body {
5 font-size: 13px; 5 font-size: 13px;
6 } 6 }
7 form { 7 form {
8 -webkit-column-count: 3; 8 -webkit-column-count: 3;
9 -webkit-column-gap: 0px; 9 -webkit-column-gap: 0px;
10 background: #ccccff; 10 background: #ccccff;
11 margin: 0px; 11 margin: 0px;
12 padding: 0px; 12 padding: 0px;
13 border: solid 1px red; 13 border: solid 1px red;
14 orphans: 1;
15 widows: 1;
14 } 16 }
15 17
16 input[type="number"] { 18 input[type="number"] {
17 width: 200px; 19 width: 200px;
18 height: 50px; 20 height: 50px;
19 } 21 }
20 22
21 td { 23 td {
22 background: red; 24 background: red;
23 } 25 }
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 <tr><td><select id="c31" size="4"><option value="a">Alpha</option><option value= "b">Bravo</option><option value="c">Charlie</option><option value="d">Delta</opt ion></select></td></tr> 126 <tr><td><select id="c31" size="4"><option value="a">Alpha</option><option value= "b">Bravo</option><option value="c">Charlie</option><option value="d">Delta</opt ion></select></td></tr>
125 <tr><td><select id="c32" size="4"><option value="a">Alpha</option><option value= "b">Bravo</option><option value="c">Charlie</option><option value="d">Delta</opt ion></select></td></tr> 127 <tr><td><select id="c32" size="4"><option value="a">Alpha</option><option value= "b">Bravo</option><option value="c">Charlie</option><option value="d">Delta</opt ion></select></td></tr>
126 </table> 128 </table>
127 </form> 129 </form>
128 130
129 <h2>Results</h2> 131 <h2>Results</h2>
130 <div id="res"> 132 <div id="res">
131 </div> 133 </div>
132 134
133 </html> 135 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698