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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/border-collapsing/002-vertical.html

Issue 1419813004: Remove the "horizontal-bt" value from -webkit-writing-mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add static_assert to ensure TransformedWritingMode matches to WritingMode Created 5 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 body { overflow: hidden; } 4 body { overflow: hidden; }
5 table { border-collapse: collapse; 5 table { border-collapse: collapse;
6 border: 5px solid yellow; } 6 border: 5px solid yellow; }
7 .col1 { border: 3px solid black; } 7 .col1 { border: 3px solid black; }
8 td { border: 1px solid red; padding: 1em; } 8 td { border: 1px solid red; padding: 1em; }
9 td.solid-blue { border: 5px dashed blue; } 9 td.solid-blue { border: 5px dashed blue; }
10 td.solid-green { border: 5px solid green; } 10 td.solid-green { border: 5px solid green; }
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 <TD> 10 61 <TD> 10
62 <TD> 11 62 <TD> 11
63 <TD> 12 63 <TD> 12
64 </TR> 64 </TR>
65 <TR> 65 <TR>
66 <TD> 13 66 <TD> 13
67 <TD> 14 67 <TD> 14
68 <TD> 15 68 <TD> 15
69 </TR> 69 </TR>
70 </table> 70 </table>
71 <TABLE style="-webkit-writing-mode: horizontal-bt;">
72 <COL class="col1"><COL><COL>
73 <TR>
74 <TD> 1
75 <TD> 2
76 <TD> 3
77 </TR>
78 <TR>
79 <TD> 4
80 <TD class="solid-blue"> 5
81 <TD class="solid-green"> 6
82 </TR>
83 <TR>
84 <TD> 7
85 <TD> 8
86 <TD> 9
87 </TR>
88 <TR>
89 <TD> 10
90 <TD> 11
91 <TD> 12
92 </TR>
93 <TR>
94 <TD> 13
95 <TD> 14
96 <TD> 15
97 </TR>
98 </table>
99 </p> 71 </p>
100 </body> 72 </body>
101 </html> 73 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698