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

Unified Diff: third_party/WebKit/LayoutTests/css3/flexbox/multiline-align-content.html

Issue 2191683003: [css-flexbox] align-content should apply even when there's just a single line (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mark Firefox tests as failing; they haven't fixed this bug yet Created 4 years, 5 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.html
diff --git a/third_party/WebKit/LayoutTests/css3/flexbox/multiline-align-content.html b/third_party/WebKit/LayoutTests/css3/flexbox/multiline-align-content.html
index db0854d1071d870982baeaa3606074275a2a4f07..6cf9cc831b7b11576d9790d24d48d00a3616e640 100644
--- a/third_party/WebKit/LayoutTests/css3/flexbox/multiline-align-content.html
+++ b/third_party/WebKit/LayoutTests/css3/flexbox/multiline-align-content.html
@@ -170,10 +170,10 @@
<!-- 1 line should not crash. -->
<div data-expected-height="30" class="flexbox horizontal" style="align-content: space-between; height: 30px">
- <div data-offset-x="0" data-offset-y="0" data-expected-height="30"></div>
+ <div data-offset-x="0" data-offset-y="0" data-expected-height="10"></div>
</div>
<div data-expected-height="30" class="flexbox horizontal" style="align-content: space-around; height: 30px">
- <div data-offset-x="0" data-offset-y="0" data-expected-height="30"></div>
+ <div data-offset-x="0" data-offset-y="10" data-expected-height="10"></div>
</div>
<div data-expected-height="30" class="flexbox horizontal" style="align-content: stretch; height: 30px">
<div data-offset-x="0" data-offset-y="0" data-expected-height="30"></div>
@@ -279,10 +279,10 @@
<!-- 1 line should not crash. -->
<div data-expected-width="30" class="flexbox vertical-rl" style="align-content: space-between; width: 30px">
- <div data-offset-x="0" data-offset-y="0" data-expected-width="30"></div>
+ <div data-offset-x="20" data-offset-y="0" data-expected-width="10"></div>
</div>
<div data-expected-width="30" class="flexbox vertical-rl" style="align-content: space-around; width: 30px">
- <div data-offset-x="0" data-offset-y="0" data-expected-width="30"></div>
+ <div data-offset-x="10" data-offset-y="0" data-expected-width="10"></div>
</div>
<div data-expected-width="30" class="flexbox vertical-rl" style="align-content: stretch; width: 30px">
<div data-offset-x="0" data-offset-y="0" data-expected-width="30"></div>

Powered by Google App Engine
This is Rietveld 408576698