content-172-ref.xht (1296B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 5 <head> 6 7 <title>CSS Reftest Reference</title> 8 9 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> 10 11 <style type="text/css"><![CDATA[ 12 td 13 { 14 border: black solid medium; 15 font: 1em/1 monospace; 16 } 17 18 tr.normal div {white-space: normal;} 19 20 tr.pre div {white-space: pre;} 21 22 tr.nowrap div {white-space: nowrap;} 23 ]]></style> 24 25 </head> 26 27 <body> 28 29 <p>The following two columns should be pixel-perfect identical (the 30 first two rows should just be rows of Xs, the last row should be 31 a step pattern):</p> 32 33 <table> 34 <thead> 35 <tr> 36 <th> Test </th> 37 <th> Control </th> 38 </tr> 39 </thead> 40 <tbody> 41 <tr class="normal"> 42 <td> 43 <div>XXX 44 XXX 45 XXX</div> 46 </td> 47 <td> 48 <div>XXX 49 XXX 50 XXX</div> 51 </td> 52 </tr> 53 <tr class="nowrap"> 54 <td> 55 <div>XXX 56 XXX 57 XXX</div> 58 </td> 59 <td> 60 <div>XXX 61 XXX 62 XXX</div> 63 </td> 64 </tr> 65 <tr class="pre"> 66 <td> 67 <div>XXX 68 XXX 69 XXX</div> 70 </td> 71 <td> 72 <div>XXX 73 XXX 74 XXX</div> 75 </td> 76 </tr> 77 </tbody> 78 </table> 79 80 </body> 81 </html>