fune/testing/web-platform/tests/css/css-writing-modes/nested-orthogonal-001.html
Daniel Smith a8058271c7 Bug 1746964 [wpt PR 32150] - Remove empty css flags tags from the css directory (non-CSS2) (7/8), a=testonly
Automatic update from web-platform-tests
remove empty css flags tags (#32150)

removed from:
css/css-writing-modes
css/css-text
css/css-flexbox
css/css-display
--

wpt-commits: 04e8cf7ea85c36446343b859f93cffbf8aef4612
wpt-pr: 32150
2022-03-07 14:47:54 +00:00

28 lines
794 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<title>Writing mode</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-flows">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="In the face of multiple levels of orthogonal flow nesting, children's sizes propagate up to parents.">
<style>
body > div {
background: green;
writing-mode: vertical-lr;
}
div > div { writing-mode: horizontal-tb; }
div > div > div {
writing-mode: vertical-rl;
height: 100px;
font-size: 100px;
line-height: 1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div>
<div><div>&nbsp;</div></div>
</div>