https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 8f65d78aea7a1e4b942fdae0ec0b861937b0fe68 authored by ffxbld on 08 February 2012, 13:55:55 UTC
Added tag FENNEC_10_0_1_BUILD1 for changeset 976d144a254c. CLOSED TREE a=release
Tip revision: 8f65d78
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