| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head> |
| <title>CSS Test: Counter-reset with the value 'none'</title> |
| <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> |
| <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset" /> |
| <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#counters" /> |
| <meta name="assert" content="The counter-reset set to 'none'." /> |
| <style type="text/css"> |
| div |
| { |
| counter-reset: ident 5; |
| } |
| div:before |
| { |
| font-size: 30px; |
| content: counter(ident); |
| } |
| #none |
| { |
| counter-reset: none; |
| } |
| </style> |
| </head> |
| <body> |
| <p>Test passes if the numbers '5 5 5' appear vertically below.</p> |
| <div></div> |
| <div id="none"></div> |
| <div></div> |
| </body> |
| </html> |