c43-rpl-bbx-002-ref.xht (1038B)
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 div 13 { 14 background-color: blue; 15 margin-left: 16px; 16 margin-bottom: 5px; 17 } 18 19 div.first-pair-blue-squares 20 { 21 height: 15px; 22 width: 15px; 23 } 24 25 div.second-pair-blue-squares 26 { 27 height: 60px; 28 width: 60px; 29 } 30 ]]></style> 31 32 </head> 33 34 <body> 35 36 <p>There should be <strong>no red</strong> anywhere.</p> 37 38 <p>There should be <strong>2 identical squares</strong> after this line:</p> 39 40 <div class="first-pair-blue-squares"></div> 41 42 <div class="first-pair-blue-squares"></div> 43 44 <p>There should be <strong>2 identical squares</strong> after this line:</p> 45 46 <div class="second-pair-blue-squares"></div> 47 48 <div class="second-pair-blue-squares"></div> 49 50 </body> 51 </html>