| 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");
|
|
|