Status: FAIL | Duration: 13ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-overflow/orthogonal-writing-mode-with-scrollable-descendant.html
<!DOCTYPE html> <html> <head> <link rel="match" href="orthogonal-writing-mode-with-scrollable-descendant-ref.html"> <link rel="help" href="https://drafts.csswg.org/css-overflow-3/#scrollbar-sizing"> <style> .outer { writing-mode: vertical-lr; } .orthogonal { writing-mode: horizontal-tb; background-color: green; } .parent { height: 79px; overflow: auto; } .content { width: 10px; height: 80px; } </style> </head> <body> <div class=outer> <div class=orthogonal> <div class=parent> <div class=content></div> </div> </div> </div> </body> </html>
/css/css-overflow/orthogonal-writing-mode-with-scrollable-descendant-ref.html
<!DOCTYPE html> <html> <head> <style> .container { float: left; background-color: green; } .parent { height: 79px; overflow-y: scroll; } .content { width: 10px; height: 80px; } </style> </head> <body> <div class=container> <div class=parent> <div class=content></div> </div> </div> </body> </html>