summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/text/bidi-span-002.html
blob: d4fc6de070d23ebe8817e9a299c44e48cad256a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!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>