Git init
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t0603-c11-import-00-b.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3  <head>
4   <title>CSS 2.1 Test Suite: Basic Containment</title>
5   <style type="text/css">
6    @import url(support/a-green.css);
7    @import "support/b-green.css";
8    .c { color: green; }
9    @import url(support/c-red.css);
10    <!-- .d { color: green; } -->
11   </style>
12   <link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#at-import" title="6.3 The @import rule">
13   <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#uri" title="4.3.4 URL + URN = URI">
14  </head>
15  <body>
16   <p class="a">This line should be green.</p>
17   <p class="b">This line should be green.</p>
18   <p class="c">This line should be green.</p>
19   <p class="d">This line should be green.</p>
20  </body>
21 </html>