diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /layout/reftests/bidi/unicode-bidi-isolate-aharon.html | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/bidi/unicode-bidi-isolate-aharon.html | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/layout/reftests/bidi/unicode-bidi-isolate-aharon.html b/layout/reftests/bidi/unicode-bidi-isolate-aharon.html new file mode 100644 index 0000000000..175150b467 --- /dev/null +++ b/layout/reftests/bidi/unicode-bidi-isolate-aharon.html @@ -0,0 +1,72 @@ +<!DOCTYPE html> +<html><head> +<title>Test cases for unicode-bidi:isolate</title> +<style> + .isolate { + unicode-bidi: isolate; + } +</style> +</head><body> +opposite-to-base isolate followed by number. +<div> + <div class="test"> + <span class="isolate">א</span> (3 reviews) + </div> +</div> +<hr> +opposite-to-base isolate with opposite-to-base text before it with neutrals in between. +<div> + <div class="test"> + א: <span class="isolate">ב</span> + </div> +</div> +<hr> +opposite-to-base isolate with opposite-to-base text before it and nothing in between. +<div> + <div class="test"> + א<span class="isolate">ב</span> + </div> +</div> +<hr> +two opposite-to-base isolates with neutrals in between. +<div> + <div class="test"> + <span class="isolate">א</span> = <span class="isolate">ב</span> + </div> +</div> +<hr> +two opposite-to-base isolates with nothing in between. +<div> + <div class="test"> + <span class="isolate">א</span><span class="isolate">ב</span> + </div> +</div> +<hr> +same-as-base isolate preceded by opposite-to-base text and followed by number +<div dir="rtl"> + <div class="test"> + see <span class="isolate">א</span><sup>3</sup> + </div> +</div> +<hr> +same-as-base isolate surrounded by opposite-to-base text +<div dir="rtl"> + <div class="test"> + with <span class="isolate">א</span>=<span class="isolate">ב</span> everywhere + </div> +</div> +<hr> +chimeric isolate surrounded by chimeric text +<div> + <div class="test"> + about <span class="isolate">that א</span> - ב + </div> +</div> +<hr> +nested chimeric isolates surrounded by chimeric text +<div> + <div class="test"> + about <span class="isolate">that <span class="isolate">strange א</span> - ב</span> - ג + </div> +</div> +</body></html> |