https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 700322067f1235e552f82d5aeb9fc83d337fa72d authored by Robert O'Callahan on 12 February 2013, 10:39:28 UTC
Bug 839270. Add padding code to nsStyleContext::AddChild to try to work around mysterious crash bug. r=dbaron,a=akeybl
Tip revision: 7003220
nested-1-ref.html
<!DOCTYPE html>
<html>
<head>
  <style>
  div { color: black; }
  span#letter { color: green; }
  </style>
</head>
<body>
  <div>
    <span>
      <span id="letter">T</span>his is text
    </span>
  </div>
</body>
</html>
back to top