Files
servo/tests/wpt/css-tests/css21_dev/html4/bidi-override-004.htm

28 lines
951 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: unicode-bidi: bidi-override on list item</title>
<link rel="author" title="Eira Monstad, Opera Software ASA" href="mailto:public-testsuites@opera.com">
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#propdef-unicode-bidi">
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#direction">
<meta name="flags" content="">
<meta name="assert" content="bidi-override should be applied when specified on list item">
<style type="text/css">
ul, li { margin: 1em 2em; padding: 0; }
.override {
direction: rtl;
unicode-bidi: bidi-override;
}
</style>
</head>
<body>
<p>Test passes if the word PASS appears below (followed by a bullet on the right).</p>
<ul>
<li class="override">
SSAP
</li>
</ul>
</body>
</html>