Update web-platform-tests to revision 10168e9a5d44efbc6e7d416d1d454eb9c9f1396c

This commit is contained in:
Josh Matthews 2018-01-31 09:13:41 -05:00
parent c88dc51d03
commit 0e1caebaf4
791 changed files with 23381 additions and 5501 deletions

View file

@ -0,0 +1,29 @@
<!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.">
<meta name="flags" content="">
<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>