chromium/third_party/blink/web_tests/fast/lists/marker-before-empty-inline.html

<html>
<head>
    <style>
        .generate:before {content: 'before';}
    </style>
</head>
<body>
    <p>
        Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=14395">http://bugs.webkit.org/show_bug.cgi?id=14395</a>
        When a &lt;p> is inside &lt;li> two &lt;BR>s are rendered</i>.
    </p>
    <p>
        In all of the following, the bullets should be lined up with the first line of text.
    </p>
    
    <ul><li> <span> <div>item</div></span></li></ul>
    
    <ul><li> <span> </span> <div>item</div></li></ul>
    
    <ul><li> <span> <i> <div>item</div> </i> </span> </li></ul>
    
    <ul><li> <span class="generate"> <div>item</div></span></li></ul>
    
    <ul><li><span><ul><li>item</li></ul></span><br></li></ul>
    
    <ul><li><div><ul><li>item</li></ul></div><br></li></ul>
    
    <p>
        In this case, the solid bullet should be one line above the hollow bullet and the text.
    </p>
    
    <ul><li><ul><li>item</li></ul><br></li></ul>
</body>
</html>