css-e-notation-ref-1.html (1012B)
1 <!DOCTYPE html> 2 <title>CSS test Reference File</title> 3 <link rel="author" title="Bert Bos" href="mailto:bert@w3.org"> 4 <style> 5 body {background: white; color: black; min-width: 300px} 6 .t {background: black; color: white; width: 300px} 7 </style> 8 <body> 9 <p>Test passes if all rectangles below are 300px wide 10 11 <p> 12 <svg height="190px" width="400px" viewbox="0 0 400 190" 13 xmlns="http://www.w3.org/2000/svg"> 14 <style type="text/css"> 15 line {stroke: black; stroke-width: 300px} 16 </style> 17 <line id="p0" x1="200" y1="0" x2="200" y2="10"/> 18 <line id="p1" x1="200" y1="20" x2="200" y2="30"/> 19 <line id="p2" x1="200" y1="40" x2="200" y2="50"/> 20 <line id="p3" x1="200" y1="60" x2="200" y2="70"/> 21 <line id="p4" x1="200" y1="80" x2="200" y2="90"/> 22 <line id="p5" x1="200" y1="100" x2="200" y2="110"/> 23 <line id="p6" x1="200" y1="120" x2="200" y2="130"/> 24 <line id="p7" x1="200" y1="140" x2="200" y2="150"/> 25 <line id="p8" x1="200" y1="160" x2="200" y2="170"/> 26 <line id="p9" x1="200" y1="180" x2="200" y2="190"/> 27 </svg> 28 </body>