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,27 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>CSS Test: The bidi algorithm and inlines in CSS</title>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2012-03-12 -->
<link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/inline/bidi/001.html" type="text/html">
<link rel="help" href="http://www.w3.org/TR/CSS21/box.html#bidi-box-model">
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#direction">
<link rel="help" href="http://www.w3.org/TR/CSS21/text.html#white-space-model">
<link rel="help" href="http://unicode.org/reports/tr9/">
<link rel="match" href="reference/bidi-001-ref.htm">
<style type="text/css">
.test { border: solid; padding: 0.4em 1em; line-height: 3em; color: blue; }
.control { line-height: 3em; color: blue; }
.control.a { border-style: solid none solid solid; padding: 0.4em 0 0.4em 1em; }
.control.b { border-style: solid solid solid none; padding: 0.4em 1em 0.4em 0; }
</style>
</head>
<body>
<p> The following two lines should be identical. (Force bidi: א) </p>
<p> <span class="control a">AAABBBCCC</span>DDDEEEFFF<span class="control b">GGGHHHIII</span>JJJKKKLLL </p>
<p> <span class="test"> AAABBBCCC&#x202E;IIIHHHGGG</span>FFFEEEDDD&#x202C;JJJKKKLLL </p>
</body>
</html>