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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid.css

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 .grid { 1 .grid {
2 display: grid; 2 display: grid;
3 background-color: grey; 3 background-color: grey;
4 } 4 }
5 5
6 .indefiniteSizeGrid { 6 .indefiniteSizeGrid {
7 display: grid; 7 display: grid;
8 background-color: grey; 8 background-color: grey;
9 width: -webkit-min-content; 9 width: -webkit-min-content;
10 height: auto; 10 height: auto;
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 } 268 }
269 269
270 .verticalRL { 270 .verticalRL {
271 -webkit-writing-mode: vertical-rl; 271 -webkit-writing-mode: vertical-rl;
272 } 272 }
273 273
274 .verticalLR { 274 .verticalLR {
275 -webkit-writing-mode: vertical-lr; 275 -webkit-writing-mode: vertical-lr;
276 } 276 }
277 277
278 .horizontalBT {
279 -webkit-writing-mode: horizontal-bt;
280 }
281
282 .directionRTL { 278 .directionRTL {
283 direction: rtl; 279 direction: rtl;
284 } 280 }
285 281
286 .directionLTR { 282 .directionLTR {
287 direction: ltr; 283 direction: ltr;
288 } 284 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698