Index: third_party/WebKit/LayoutTests/css3/flexbox/percentage-max-width-cross-axis.html |
diff --git a/third_party/WebKit/LayoutTests/css3/flexbox/percentage-max-width-cross-axis.html b/third_party/WebKit/LayoutTests/css3/flexbox/percentage-max-width-cross-axis.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..edb7fb27d03df5832f17850491477429ae08a7d0 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/css3/flexbox/percentage-max-width-cross-axis.html |
@@ -0,0 +1,22 @@ |
+<!DOCTYPE html> |
+ |
+<link rel="stylesheet" href="resources/flexbox.css"> |
+ |
+<script src="../../resources/testharness.js"></script> |
+<script src="../../resources/testharnessreport.js"></script> |
+<script src="../../resources/check-layout-th.js"></script> |
+ |
+<body onload="checkLayout('.flexbox')"> |
+ |
+<p>Both bars should be the same width</p> |
+<div class="flexbox column" style="width: 400px;"> |
+ <div data-expected-width="200" style="margin-left: 50%; width: 50%; background: green;"> |
+ Content |
+ </div> |
+</div> |
+ |
+<div class="flexbox column" style="width: 400px;"> |
+ <div data-expected-width="200" style="margin-left: 50%; max-width: 50%; background: blue;"> |
+ Content |
+ </div> |
+</div> |