chromium/third_party/blink/web_tests/external/wpt/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht

<!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;
            right: 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>