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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/deprecated-flex-box-zero-width-intrinsic-max-width.html

Issue 1420303002: Remove support for intrinsic and min-intrinsic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/fast/css/deprecated-flex-box-zero-width-intrinsic-max-width.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/deprecated-flex-box-zero-width-intrinsic-max-width.html b/third_party/WebKit/LayoutTests/fast/css/deprecated-flex-box-zero-width-intrinsic-max-width.html
index c9ba3ad35aac661b64febbd37ec81f0e2b54e427..18be2152a7204ff61a0df6d5931359416c480844 100644
--- a/third_party/WebKit/LayoutTests/fast/css/deprecated-flex-box-zero-width-intrinsic-max-width.html
+++ b/third_party/WebKit/LayoutTests/fast/css/deprecated-flex-box-zero-width-intrinsic-max-width.html
@@ -8,7 +8,7 @@
}
#inner {
overflow: hidden;
- max-width: intrinsic;
+ max-width: max-content;
width: 0px;
-webkit-box-flex: 60;
}
@@ -18,7 +18,7 @@
<div id="inner">PASS</div>
</div>
<script>
-description("Tests if the Deprecated Flex boxes with max-width: intrinsic and width:0 has non-zero calculated width");
+description("Tests if the Deprecated Flex boxes with max-width: max-content and width:0 has non-zero calculated width");
var x = document.getElementById('inner');
var flexBoxDiv = x.getClientRects()[0];
shouldBeNonZero("flexBoxDiv.width");

Powered by Google App Engine
This is Rietveld 408576698