https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 68bba3abd53ee78d9996e00a47b9d024604d30bf authored by Ryan VanderMeulen on 29 July 2015, 14:12:35 UTC
Added tag B2G_2_0_END for changeset 2e6f1d4deff9 on a CLOSED TREE
Tip revision: 68bba3a
nested-1d.html
<!DOCTYPE html>
<html>
<head>
  <title>CSS 2.1 Test Suite: :first-letter</title>
  <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu" />
  <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
  <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-letter"/>
  <meta name="flags" content="dom" />
  <style>
  div { color: black; }
  div::first-letter { color: green; }
  </style>
</head>
<body>
  <div>
    <span>
      
    </span>
  </div>
  <script>
    document.body.offsetWidth;
    document.getElementsByTagName("span")[0].
      appendChild(document.createTextNode("This is text"));
  </script>
</body>
</html>
back to top