Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-writing-modes/bidi-plaintext-br-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>unicode-bidi: plaintext with forced breaks</title>
<link rel="help" href='https://drafts.csswg.org/css-writing-modes-3/#valdef-unicode-bidi-plaintext'/>
<link rel="match" href='reference/bidi-plaintext-br-001-ref.html'/>
<link rel="author" title="Koji Ishii" href='mailto:kojii@chromium.org'/>
<style>
div.test {
font-family: Arial;
line-height: 1;
width: 10ch;
border: 1px solid blue;
unicode-bidi: plaintext;
}
</style>
<body>
<div class="test">
אאאאאאאא
MMMMM
</div>
<div class="test">
MMMMM
אאאאאאאא
</div>
<div class="test">
a<br>
אאאאאאאא
MMMMM
</div>
<div class="test">
a<br>
MMMMM
אאאאאאאא
</div>
<div class="test">
א<br>
אאאאאאאא
MMMMM
</div>
<div class="test">
א<br>
MMMMM
אאאאאאאא
</div>
</body>