wpt / css / css-text / bidi / bidi-lines-001.html

Status: FAIL | Duration: 16ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-text/bidi/bidi-lines-001.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text Test: unicode-bidi: plaintext and paragraphs with strong directionality</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
<link rel="help" href="https://drafts.csswg.org/css-text-3/#bidi-linebox">
<link rel="match" href="reference/bidi-lines-001-ref.html">
<meta name=assert content="with unicode-bidi: plaintext, lines from bidi paragraphs with strong directionality use that direction">
<style>
div {
    font-size: 2em;
    width: 10em;
    white-space: pre;
    text-align: start;
    unicode-bidi: plaintext;
    border: solid; padding: 0 0.5ch;
}

</style>

<p>This test passes if all instances of “français” are left aligned, and all instances of “فارسی” are right aligned within the box below.

<div>français
فارسی
français
فارسی
français
فارسی</div>

/css/css-text/bidi/reference/bidi-lines-001-ref.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text Test: unicode-bidi: plaintext and paragraphs with strong directionality</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
<style>
section {
    text-align: start;
    font-size: 2em;
    border: solid;
    padding: 0 0.5ch;
    width: 10em;
}
</style>

<p>This test passes if all instances of “français” are left aligned, and all instances of “فارسی” are right aligned within the box below.

<section>
    <div dir=ltr>français</div>
    <div dir=rtl>فارسی</div>
    <div dir=ltr>français</div>
    <div dir=rtl>فارسی</div>
    <div dir=ltr>français</div>
    <div dir=rtl>فارسی</div>
</section>