font-size-123.xht (1265B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: CSS Parsing: Negative Font-Size</title> 5 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> 6 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/parsing/002.xml" type="application/xhtml+xml"/> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#length-units" /> 8 <link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-size-prop"/> 9 <link rel="match" href="font-size-123-ref.xht" /> 10 11 <meta name="assert" content="If a negative length value is set into a 12 font-size declaration, then such declaration is ignored."/> 13 <meta name="flags" content="invalid"/> 14 <style type="text/css"> 15 div { font-size: 20px; font-size: -10px; display: block; width: 100px; height: 40px; background: red; } 16 div > .em { width: 5em; height: 1em; background: green; display: block; } 17 div > .px { width: 100px; height: 20px; background: green; display: block; } 18 </style> 19 </head> 20 <body> 21 <p>Test passes if there is a filled green rectangle and <strong>no red</strong>.</p> 22 <div> 23 <span class="em"/> 24 <span class="px"/> 25 </div> 26 </body> 27 </html>