browser/devtools/styleinspector/test/doc_matched_selectors.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/devtools/styleinspector/test/doc_matched_selectors.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,28 @@
     1.4 +<!-- Any copyright is dedicated to the Public Domain.
     1.5 +     http://creativecommons.org/publicdomain/zero/1.0/ -->
     1.6 +<html>
     1.7 +  <head>
     1.8 +    <style>
     1.9 +      .matched1, .matched2, .matched3, .matched4, .matched5 {
    1.10 +        color: #000;
    1.11 +      }
    1.12 +
    1.13 +      div {
    1.14 +        position: absolute;
    1.15 +        top: 40px;
    1.16 +        left: 20px;
    1.17 +        border: 1px solid #000;
    1.18 +        color: #111;
    1.19 +        width: 100px;
    1.20 +        height: 50px;
    1.21 +      }
    1.22 +    </style>
    1.23 +  </head>
    1.24 +  <body>
    1.25 +    inspectstyle($("test"));
    1.26 +    <div id="test" class="matched1 matched2 matched3 matched4 matched5">Test div</div>
    1.27 +    <div id="dummy">
    1.28 +      <div></div>
    1.29 +    </div>
    1.30 +  </body>
    1.31 +</html>

mercurial