https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7b0b5e8233ae391a003a8b0521864c19e43682a4 authored by tbirdbld on 13 July 2012, 21:08:40 UTC
Added THUNDERBIRD_14_0_RELEASE THUNDERBIRD_14_0_BUILD1 tag(s) for changeset 228ba1a111fc. DONTBUILD CLOSED TREE a=release
Tip revision: 7b0b5e8
nested-1c.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].firstChild.data = "This is text";
  </script>
</body>
</html>
back to top