summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bidi/bidi-006-ref.html
blob: 5f4a31e44cd130756f917b4789d4f932bd82eb0c (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<!-- Bidi reftest 006: rtl text with diacritics. This is hard to reftest
     because if there is a bug it will typically be exhibited in the reference
     rendering as well as in the test. The approach adopted here is to
     position boxes around the edges of the character without a diacritic and
     make sure that the character with the diacritic displays in the same
     space, so that if the diacritic is shifted to the right or left it will
     be cut off in the test rendering and be visible (in the wrong place) in
     the reference rendering.

     Relevant bugs:
     378351 (Windows)
     386573 (Mac)
     387653 (Linux)
     395676 (Windows)
 -->
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
 </head>
  <style type="text/css">
body { background: white; color: black; }
p {
  font-family: sans-serif;
  font-size: 36px;
  margin: 0;
}
span {
  display: inline-block;
  width: 3em;
  height: 3em;
  margin-top: -2em;
  vertical-align: bottom;
}
p#test { margin: 0 3em; }
  </style>
 <body>
  <p id="test">&#x5e0;&#x5b8;</p>
  <p id="overhang"><span></span>&#x5e0;<span></span></p>
 </body>
</html>