| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
| <html> |
| <head> |
| <title>CSS 2.1 Test Suite: Basic Containment</title> |
| <style type="text/css"> |
| @import url(support/a-green.css); |
| @import "support/b-green.css"; |
| .c { color: green; } |
| @import url(support/c-red.css); |
| <!-- .d { color: green; } --> |
| </style> |
| <link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#at-import" title="6.3 The @import rule"> |
| <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#uri" title="4.3.4 URL + URN = URI"> |
| </head> |
| <body> |
| <p class="a">This line should be green.</p> |
| <p class="b">This line should be green.</p> |
| <p class="c">This line should be green.</p> |
| <p class="d">This line should be green.</p> |
| </body> |
| </html> |