diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-writing-modes/bidi-plaintext-br-001.html')
-rw-r--r-- | testing/web-platform/tests/css/css-writing-modes/bidi-plaintext-br-001.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-writing-modes/bidi-plaintext-br-001.html b/testing/web-platform/tests/css/css-writing-modes/bidi-plaintext-br-001.html new file mode 100644 index 0000000000..0d96934ad2 --- /dev/null +++ b/testing/web-platform/tests/css/css-writing-modes/bidi-plaintext-br-001.html @@ -0,0 +1,44 @@ +<!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> |