summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht
blob: 821ddc77b00912897200e27392583fed6d07173d (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!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, 3x3 monospace table</title>
      <link rel="author" title="Opera" href="https://www.opera.com/" />
      <style>
         body {
            font-family: monospace;
         }
         div {
            position: relative;
         }
         table {
            font-size: 2em;
            border-spacing: 0;
            position: absolute;
            top: 1px;
            left: 1px;
         }
         td {
            padding: 0;
         }
         #red {
            color: red;
         }
         #green {
            color: green;
         }
      </style>
   </head>
   <body>
      <p>There should be no red below, except for antialiasing issues.</p>
      <div>
         <table id="red">
            <tr>
               <td>Row 1, Col 1</td>
               <td>Row 1, Col 2</td>
               <td>Row 1, Col 3</td>
            </tr>
            <tr>
               <td>Row 22, Col 1</td>
               <td>Row 22, Col 2</td>
               <td>Row 22, Col 3</td>
            </tr>
            <tr>
               <td>Row 333, Col 1</td>
               <td>Row 333, Col 2</td>
               <td>Row 333, Col 3</td>
            </tr>
         </table>
         <table id="green">
            <tr>
               <td>Row 1, Col 1</td>
               <td>Row 1, Col 2</td>
               <td>Row 1, Col 3</td>
            </tr>
            <tr>
               <td>Row 22, Col 1</td>
               <td>Row 22, Col 2</td>
               <td>Row 22, Col 3</td>
            </tr>
            <tr>
               <td>Row 333, Col 1</td>
               <td>Row 333, Col 2</td>
               <td>Row 333, Col 3</td>
            </tr>
         </table>
      </div>
   </body>
</html>