OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 #leftBar { | |
6 margin-right: 2500px; | |
7 } | |
8 #largeVideo { | |
9 width: 100%; | |
10 background-color: red; | |
11 } | |
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> | |
25 | |
26 | |
OLD | NEW |