https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2c4f51be60ad9c560d8ea89ff3e7aaaec06192b7 authored by seabld on 31 May 2012, 07:30:18 UTC
Added tag SEAMONKEY_2_10b3_RELEASE for changeset FIREFOX_13_0b6_BUILD1. CLOSED TREE a=release
Tip revision: 2c4f51b
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