summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/css2.1/t0603-c11-import-00-b.html
blob: 5df8bb198128d28da4ba12550a300f72e63df429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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>