Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / selectors3 / html / css3-modsel-14.html
blob8bef846b2afadc2163990d3243d34a215b72ce46
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>More than one class selector</title>
5 <style type="text/css">p { background-color : red ; border : thick solid red ; padding : 1em }
6 p.t1 { background-color : lime }
7 p.t2 { border : thick solid green }
9 div { background: green; color: white; }
10 div.teST { background: red; color: yellow; }
11 div.te { background: red; color: yellow; }
12 div.st { background: red; color: yellow; }
13 div.te.st { background: red; color: yellow; }</style>
14 <link rel="first" href="css3-modsel-1.html" title="Groups of selectors">
15 <link rel="prev" href="css3-modsel-13.html" title="Class selectors">
16 <link rel="next" href="css3-modsel-14b.html" title="More than one class selector">
17 <link rel="last" href="css3-modsel-d4.html" title="Dynamic updating of :first-child and :last-child">
18 <link rel="up" href="./index.html">
19 <link rel="top" href="../../index.html">
20 </head>
21 <body>
23 <p class="t1 t2">This paragraph
24 should have a green background and a green thick solid border because
25 it carries both classes t1 and t2.</p>
27 <div class="test">This line
28 should be green.</div>
30 </body>
31 </html>