https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 897eb77ccb2fd1aeb7733daafacd332d2d6391f7 authored by seabld on 13 October 2011, 01:15:06 UTC
Added tag SEAMONKEY_2_5b3_RELEASE for changeset FIREFOX_8_0b3_BUILD1. CLOSED TREE a=release
Tip revision: 897eb77
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