Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / replaced / container-width-zero.html
blob2412f11e06bad02e16504022080bb4a05adedca2
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #leftBar {
6 margin-right: 2500px;
8 #largeVideo {
9 width: 100%;
10 background-color: red;
12 </style>
13 <script src="../../resources/check-layout.js"></script>
14 </head>
15 <body>
16 <p> crbug.com/235189: If our container's width is zero, then so is ours: there should be no red.<p>
17 <div id="leftBar">
18 <video id="largeVideo" data-expected-width=0></video>
19 </div>
20 <script>
21 checkLayout('#largeVideo');
22 </script>
23 </body>
24 </html>