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

Unified Diff: third_party/WebKit/LayoutTests/css3/flexbox/multiline-align-content-horizontal-column.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, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/css3/flexbox/multiline-align-content-horizontal-column.html
diff --git a/third_party/WebKit/LayoutTests/css3/flexbox/multiline-align-content-horizontal-column.html b/third_party/WebKit/LayoutTests/css3/flexbox/multiline-align-content-horizontal-column.html
index 1d1d9257765cbf0c37507d8d536b09bf4b3bc2bb..3cb021249e510a4c6a53779fe99b941edc241e5e 100644
--- a/third_party/WebKit/LayoutTests/css3/flexbox/multiline-align-content-horizontal-column.html
+++ b/third_party/WebKit/LayoutTests/css3/flexbox/multiline-align-content-horizontal-column.html
@@ -20,9 +20,6 @@
.horizontal-tb {
-webkit-writing-mode: horizontal-tb;
}
-.horizontal-bt {
- -webkit-writing-mode: horizontal-bt;
-}
.column {
flex-flow: column;
}
@@ -144,85 +141,6 @@ var expectations = {
},
},
},
- 'horizontal-bt': {
- // Same as horizontal-tb.
- 'column': {
- 'ltr': {
- 'wrap': {
- 'flex-start': [0, 100],
- 'flex-end': [400, 500],
- 'center': [200, 300],
- 'space-between': [0, 500],
- 'space-around': [100, 400],
- 'stretch': [0, 300],
- },
- 'wrap-reverse': {
- 'flex-start': [500, 400],
- 'flex-end': [100, 0],
- 'center': [300, 200],
- 'space-between': [500, 0],
- 'space-around': [400, 100],
- 'stretch': [300, 0],
- },
- },
- 'rtl': {
- 'wrap': {
- 'flex-start': [500, 400],
- 'flex-end': [100, 0],
- 'center': [300, 200],
- 'space-between': [500, 0],
- 'space-around': [400, 100],
- 'stretch': [300, 0],
- },
- 'wrap-reverse': {
- 'flex-start': [0, 100],
- 'flex-end': [400, 500],
- 'center': [200, 300],
- 'space-between': [0, 500],
- 'space-around': [100, 400],
- 'stretch': [0, 300],
- },
- },
- },
- 'column-reverse': {
- 'ltr': {
- 'wrap': {
- 'flex-start': [0, 100],
- 'flex-end': [400, 500],
- 'center': [200, 300],
- 'space-between': [0, 500],
- 'space-around': [100, 400],
- 'stretch': [0, 300],
- },
- 'wrap-reverse': {
- 'flex-start': [500, 400],
- 'flex-end': [100, 0],
- 'center': [300, 200],
- 'space-between': [500, 0],
- 'space-around': [400, 100],
- 'stretch': [300, 0],
- },
- },
- 'rtl': {
- 'wrap': {
- 'flex-start': [500, 400],
- 'flex-end': [100, 0],
- 'center': [300, 200],
- 'space-between': [500, 0],
- 'space-around': [400, 100],
- 'stretch': [300, 0],
- },
- 'wrap-reverse': {
- 'flex-start': [0, 100],
- 'flex-end': [400, 500],
- 'center': [200, 300],
- 'space-between': [0, 500],
- 'space-around': [100, 400],
- 'stretch': [0, 300],
- },
- },
- },
- },
};
function mainAxisDirection(writingMode, flexDirection)
@@ -247,7 +165,7 @@ function addChild(flexbox, preferredSize, alignContent, expected_x_offset)
flexbox.appendChild(child);
}
-var writingModes = ['horizontal-tb', 'horizontal-bt'];
+var writingModes = ['horizontal-tb'];
var flexDirections = ['column', 'column-reverse'];
var directions = ['ltr', 'rtl'];
var wraps = ['wrap', 'wrap-reverse'];

Powered by Google App Engine
This is Rietveld 408576698