https://github.com/mozilla/gecko-dev
Raw File
Tip revision: dbaacfb647dab0a3c3d29722c7aaa55bec347b5f authored by Brian Smith on 07 December 2011, 02:42:42 UTC
Back out 07882283b9e0 which was intended for default, not this release branch, a=nthomas
Tip revision: dbaacfb
split-inner-inline-2.html
<!DOCTYPE html>
<html>
    <title>CSS 2.1 Test Suite: handling of blocks inside inlines</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/visuren.html#anonymous-block-level"/>
    <meta name="flags" content="" />
  <body>
    <span>
      First line
      <span style="border: 5px solid blue">
        <span style="display: block">
          Second line
        </span>
      </span>
      Third line, yes
    </span>
  </body>
</html>
back to top