https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 3d955fffc411721a7d8a7466af88c6018190892f authored by ffxbld on 26 March 2015, 03:30:18 UTC
Added FIREFOX_31_6_0esr_RELEASE FIREFOX_31_6_0esr_BUILD2 tag(s) for changeset 40a8b8411a0c. DONTBUILD CLOSED TREE a=release
Tip revision: 3d955ff
nested-1e.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