Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / identical-logical-height-decl.html
blob20888a15b81bcd10c9dbee4e4d1274a5094ac24e
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Identical style declaration on elements with different writing modes</title>
5 </head>
6 <body style="overflow:hidden;">
7 <p>There should be no red on this page.</p>
8 <div style="-webkit-logical-height:10px;"></div> <!-- set height -->
9 <div style="-webkit-writing-mode:vertical-lr; width:100px; height:100px; background:red;">
10 <div style="-webkit-logical-height:10px;"> <!-- set width! -->
11 <div style="width:100px; background:white;"></div>
12 </div>
13 </div>
14 </body>
15 </html>