Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css1 / basic / comments.html
blobb6aebf9bd445aec01d95841e4a65bca319516dbd
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
2 <HTML>
3 <HEAD>
4 <TITLE>CSS1 Test Suite: 1.7 Comments</TITLE>
5 <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6 <META http-equiv="Content-Style-Type" content="text/css">
8 <LINK rel="stylesheet" type="text/css" media="screen" href="../resources/base.css">
9 <STYLE type="text/css">
10 /* This is a CSS1 comment. */
11 .one {color: green;} /* Another comment */
12 /* The following should not be used:
13 .two {color: red;} */
14 .three {color: green; /* color: red; */}
15 /**
16 .four {color: red;} */
17 .five {color: green;}
18 /**/
19 .six {color: green;}
20 /*********/
21 .seven {color: green;}
22 /* a comment **/
23 .eight {color: green;}
24 </STYLE>
26 </HEAD>
28 <BODY><P>The style declarations which apply to the text below are:</P>
29 <PRE>/* This is a CSS1 comment. */
30 .one {color: green;} /* Another comment */
31 /* The following should not be used:
32 .two {color: red;} */
33 .three {color: green; /* color: red; */}
34 /**
35 .four {color: red;} */
36 .five {color: green;}
37 /**/
38 .six {color: green;}
39 /*********/
40 .seven {color: green;}
41 /* a comment **/
42 .eight {color: green;}
44 </PRE>
45 <HR>
46 <P class="one">
47 This sentence should be green.
48 </P>
49 <P class="two">
50 This sentence should be black.
51 </P>
52 <P class="three">
53 This sentence should be green.
54 </P>
55 <P class="four">
56 This sentence should be black.
57 </P>
58 <P class="five">
59 This sentence should be green.
60 </P>
61 <P class="six">
62 This sentence should be green.
63 </P>
64 <P class="seven">
65 This sentence should be green.
66 </P>
67 <P class="eight">
68 This sentence should be green.
69 </P>
72 <TABLE border cellspacing="0" cellpadding="3" class="tabletest">
73 <TR>
74 <TD colspan="2" bgcolor="silver"><STRONG>TABLE Testing Section</STRONG></TD>
75 </TR>
76 <TR>
77 <TD bgcolor="silver">&nbsp;</TD>
78 <TD><P class="one">
79 This sentence should be green.
80 </P>
81 <P class="two">
82 This sentence should be black.
83 </P>
84 <P class="three">
85 This sentence should be green.
86 </P>
87 <P class="four">
88 This sentence should be black.
89 </P>
90 <P class="five">
91 This sentence should be green.
92 </P>
93 <P class="six">
94 This sentence should be green.
95 </P>
96 <P class="seven">
97 This sentence should be green.
98 </P>
99 <P class="eight">
100 This sentence should be green.
101 </P>
102 </TD></TR></TABLE></BODY>
103 </HTML>