Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / deprecated-flex-box-zero-width-intrinsic-max-width.html
blobc9ba3ad35aac661b64febbd37ec81f0e2b54e427
1 <head>
2 <title>Test case for bug https://bugs.webkit.org/show_bug.cgi?id=85991</title>
3 <script src="../../resources/js-test.js"></script>
4 </head>
5 <style>
6 #outer {
7 display: -webkit-box;
9 #inner {
10 overflow: hidden;
11 max-width: intrinsic;
12 width: 0px;
13 -webkit-box-flex: 60;
15 </style>
17 <div id="outer">
18 <div id="inner">PASS</div>
19 </div>
20 <script>
21 description("Tests if the Deprecated Flex boxes with max-width: intrinsic and width:0 has non-zero calculated width");
22 var x = document.getElementById('inner');
23 var flexBoxDiv = x.getClientRects()[0];
24 shouldBeNonZero("flexBoxDiv.width");
26 //cleanup
27 var node = document.getElementById('inner');
28 node.parentNode.removeChild(node);
29 </script>