chromium/third_party/blink/web_tests/css3/selectors3/html/css3-modsel-14c.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
 <head>
  <title>More than one class selector</title>
  <style type="text/css">
p { background: red; color: yellow; }
p.t1.t2 { background: green; color: white; }
div { background: green; color: white; }
div.t1 { background: red; color: yellow; }
address { background: red; color: yellow; }
address.t5.t5 { background: green; color: white; }
</style>
  <link rel="first" href="css3-modsel-1.html" title="Groups of selectors">
  <link rel="prev" href="css3-modsel-14b.html" title="More than one class selector">
  <link rel="next" href="css3-modsel-14d.html" title="NEGATED More than one class selector">
  <link rel="last" href="css3-modsel-d4.html" title="Dynamic updating of :first-child and :last-child">
  <link rel="up" href="./index.html">
  <link rel="top" href="../../index.html">
 </head>
 <body>
  <p class="t1 t2">This line should be green.</p>
  <div class="t3">This line should be green.</div>
  <address class="t4 t5 t6">This line should be green.</address>
</body>
</html>