Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid.css |
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid.css b/third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid.css |
index b4e08675b0d03c60f8024b173da067c8b7c35cf3..6081e0d15776f6c75a4cb7614fb142569761e4ff 100644 |
--- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid.css |
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid.css |
@@ -3,13 +3,6 @@ |
background-color: grey; |
} |
-.indefiniteSizeGrid { |
- display: grid; |
- background-color: grey; |
- width: -webkit-min-content; |
- height: auto; |
-} |
- |
.inline-grid { |
display: inline-grid; |
background-color: grey; |
@@ -268,17 +261,26 @@ |
} |
.verticalRL { |
+ writing-mode: vertical-rl; |
-webkit-writing-mode: vertical-rl; |
} |
- |
.verticalLR { |
+ writing-mode: vertical-lr; |
-webkit-writing-mode: vertical-lr; |
} |
- |
+.horizontalTB { |
+ writing-mode: horizontal-tb; |
+ -webkit-writing-mode: horizontal-tb; |
+} |
+.horizontalBT { |
+ writing-mode: horizontal-bt; |
+ -webkit-writing-mode: horizontal-bt; |
+} |
.directionRTL { |
direction: rtl; |
} |
- |
.directionLTR { |
direction: ltr; |
} |
+ |
+ |