Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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; bac kground: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> | |
| OLD | NEW |