Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab

This commit is contained in:
James Graham
2015-03-27 09:18:12 +00:00
parent 1a81b18b9f
commit 2c9faf5363
91915 changed files with 5979820 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<title>CSS Writing Modes: text-combine-upright in horizontal writing mode</title>
<link href="http://google.com/+MasatakaYakura" rel="author" title="Masataka Yakura">
<link href="http://www.w3.org/TR/css-writing-modes-3/#text-combine-upright" rel="help">
<link href="reference/writing-mode-horizontal-001r-ref.htm" rel="match">
<meta content="text-combine-upright does not have an effect in horizontal writing modes." name="assert">
<style>
.test {
writing-mode: horizontal-tb;
font-size: 5em;
direction: rtl;
}
.tcy {
text-combine-upright: all;
}
</style>
</head>
<body>
<p>Test passes if the following texts are identical:</p>
<div class="test">
<p><span class="tcy">2014</span></p>
<p>2014</p>
</div>
</body></html>