OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org
/TR/REC-html40/loose.dtd"> | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org
/TR/REC-html40/loose.dtd"> |
2 <HTML> | 2 <HTML> |
3 <HEAD> | 3 <HEAD> |
4 <TITLE>CSS1 Test Suite: 1.3 Inheritance</TITLE> | 4 <TITLE>CSS1 Test Suite: 1.3 Inheritance</TITLE> |
5 <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> | 5 <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
6 <META http-equiv="Content-Style-Type" content="text/css"> | 6 <META http-equiv="Content-Style-Type" content="text/css"> |
7 | 7 |
8 <LINK rel="stylesheet" type="text/css" media="screen" href="../resources/base.cs
s"> | 8 <LINK rel="stylesheet" type="text/css" media="screen" href="../resources/base.cs
s"> |
9 <STYLE type="text/css"> | 9 <STYLE type="text/css"> |
10 BODY {color: green;} | 10 BODY { |
| 11 color: green; |
| 12 overflow: hidden; |
| 13 } |
11 H3 {color: blue;} | 14 H3 {color: blue;} |
12 EM {color: purple;} | 15 EM {color: purple;} |
13 .one {font-style: italic;} | 16 .one {font-style: italic;} |
14 .two {text-decoration: underline;} | 17 .two {text-decoration: underline;} |
15 #two {color: navy;} | 18 #two {color: navy;} |
16 .three {color: purple;}</STYLE> | 19 .three {color: purple;}</STYLE> |
17 | 20 |
18 </HEAD> | 21 </HEAD> |
19 | 22 |
20 <BODY><P>The style declarations which apply to the text below are:</P> | 23 <BODY><P>The style declarations which apply to the text below are:</P> |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 This sentence should be underlined, including <TT>this part</TT>, <I>this part</
I>, <EM>this part</EM>, and <STRONG>this part</STRONG>. | 63 This sentence should be underlined, including <TT>this part</TT>, <I>this part</
I>, <EM>this part</EM>, and <STRONG>this part</STRONG>. |
61 </P> | 64 </P> |
62 <P class="two" ID="two"> | 65 <P class="two" ID="two"> |
63 This sentence should also be underlined, as well as dark blue (navy), <TT>includ
ing this part</TT>. | 66 This sentence should also be underlined, as well as dark blue (navy), <TT>includ
ing this part</TT>. |
64 </P> | 67 </P> |
65 <P class="three"> | 68 <P class="three"> |
66 This sentence should be purple, including <STRONG>this part</STRONG> and <SPAN s
tyle="text-decoration: underline;">this part (which is spanned)</SPAN>. | 69 This sentence should be purple, including <STRONG>this part</STRONG> and <SPAN s
tyle="text-decoration: underline;">this part (which is spanned)</SPAN>. |
67 </P> | 70 </P> |
68 </TD></TR></TABLE></BODY> | 71 </TD></TR></TABLE></BODY> |
69 </HTML> | 72 </HTML> |
OLD | NEW |