summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht
blob: b6b83e1885d7328cd3ea6ec235f79aa146765e99 (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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
   <title>Reference rendering - no red except antialiasing, a bc d</title>
   <link rel="author" title="Opera" href="https://www.opera.com/" />
   <style type="text/css">
      #outer {
         position: relative;
         font-size: 2em;
      }
      #inner1, #inner2 {
         position: absolute;
         top: 1px;
         left: 1px;
      }
      #inner1 {
         color: red;
      }
      #inner2 {
         color: green;
      }
   </style>
</head>
<body>
   <p>There should be no red below, except for antialiasing issues.</p>
   <div id="outer">
      <div id="inner1">a bc d</div>
      <div id="inner2">a bc d</div>
   </div>
</body>
</html>