Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-contain/contain-body-w-m-002.html
<!doctype html> <html lang=en> <meta charset=utf-8> <title>CSS-contain test: paint containment on body prevents writing-mode propagation</title> <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net"> <meta name=flags content=""> <meta name=assert content="paint containment on body prevents writing-mode propagation"> <link rel="match" href="reference/contain-body-w-m-001-ref.html"> <link rel=help href="https://drafts.csswg.org/css-contain-1/#contain-property"> <style> html::before { content: ""; width: 100px; height: 100px; background: orange; display: block; } p { writing-mode: horizontal-tb; margin: 0;} body { margin: 0; width: 200px; height: 200px; writing-mode: vertical-rl; contain: paint; } </style> <p>Test passes if the orange square is in the upper-left corner.
/css/css-contain/reference/contain-body-w-m-001-ref.html
<!doctype html> <html lang=en> <meta charset=utf-8> <title>CSS-contain test reference</title> <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net"> <style> html::before { content: ""; width: 100px; height: 100px; background: orange; display: block; } body { margin: 0; } p { margin: 0; width: 200px; height: 200px; } </style> <p>Test passes if the orange square is in the upper-left corner.