content-171.xht (893B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Generated Content: Simple \A</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/content/001.html" type="text/html"/> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content" /> 8 <link rel="match" href="content-171-ref.xht" /> 9 10 <style type="text/css"> 11 div { font: 1em/1em monospace; background: red; color: yellow; height: 2em; width: 15em; } 12 div:before { content: 'Line 1\A Line 2'; white-space: pre; background: green; color: white; display: block; } 13 </style> 14 </head> 15 <body> 16 <p>Test passes if "Line 1" and "Line 2" are white inside a green stripe.</p> 17 <div></div> 18 </body> 19 </html>