4 <link href=
"resources/flexbox.css" rel=
"stylesheet">
12 background-color: salmon;
15 <script src=
"../../resources/check-layout.js"></script>
18 <div id=
"container" style=
"width: 100px" data-expected-width=
"200">
19 <div class=
"flexbox column" data-expected-width=
"200">
20 <div class=
"flexitem" data-expected-width=
"200">
21 <div class=
"child" data-expected-width=
"200">This div should be
200px wide.
</div>
26 var container
= document
.getElementById('container');
27 container
.offsetWidth
;
28 container
.style
.width
= "200px";
29 window
.onload = function()
31 checkLayout("#container");