1
0
Fork 0
firefox/testing/web-platform/tests/css/CSS2/text/bidi-span-002.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

24 lines
506 B
HTML

<!DOCTYPE html>
<title>CSS Test: Inline boxes should not affect bidi reordering</title>
<link rel="match" href="bidi-span-002-ref.html">
<link rel="help" href="https://drafts.csswg.org/css2/visuren.html#direction">
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<style>
body {
text-align: left;
direction: rtl;
}
.c1:before {
content: '(';
}
.c1:after {
content: ')';
}
.c2:after {
content: '';
}
</style>
<body><span class="c1"><span class="c2"></span></span></body>