blob: b2d09dd24d86034f4247b3bce57485d420ea886f [file] [log] [blame]
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8"/>
<title>The dir attribute: dir=auto, start with L</title>
<link rel='author' title='HTML5 bidi test WG' href='mailto:public-i18n-bidi@w3.org'>
<link rel='help' href='https://html.spec.whatwg.org/multipage/dom.html#the-dir-attribute'>
<link rel="match" href="reference/the-dir-attribute-048-ref.html">
<meta name="assert" content="When dir='auto', the direction is set according to the first strong character of the text. In this test, it is the Latin letter A, thus the direction must be resolved as LTR.">
<style type='text/css'>
.test, .ref { width: 90%; margin: 0 4%; font-size: 2em; position: absolute; top: 0; }
.ref { color: red; z-index: -100; }
input, textarea {
font-size:1em;
}
</style>
</head>
<body>
<p class="instructions" dir="ltr">Test passes if you see no red characters.</p>
<!--<div class="comments">
Key to entities used below:
&#x5d0; - The Hebrew letter Alef (strongly RTL).
&#x5d1; - The Hebrew letter Bet (strongly RTL).
&#x5d2; - The Hebrew letter Gimel (strongly RTL).
</div>-->
<div style="position: relative">
<div class="test">
<div dir="ltr">
<p dir="auto">ABC&#x5d0;&#x5d1;&#x5d2;.</p>
</div>
<div dir="rtl">
<p dir="auto">ABC&#x5d0;&#x5d1;&#x5d2;.</p>
</div>
</div>
<div class="ref">
<div dir="ltr">
<p dir="ltr">ABC&#x5d0;&#x5d1;&#x5d2;.</p>
</div>
<div dir="rtl">
<p dir="ltr">ABC&#x5d0;&#x5d1;&#x5d2;.</p>
</div>
</div>
</div>
</body>
</html>