Status: PASS | Duration: 9ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-lists/add-inline-child-after-marker-002.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Lists: Add inline child after marker</title> <link rel=help href="https://www.w3.org/TR/CSS22/generate.html#lists"> <link rel=match href="add-inline-child-after-marker-002-ref.html"> <!-- https://bugs.chromium.org/p/chromium/issues/detail?id=1049633 --> <p>The test passes if you see the list marker followed by the text "axxx" in the same line.</p> <ul> <li id="liTarget"> <div id="divTarget" style="overflow:hidden;"> <span>a</span>xxx </div> </li> </ul> <script> document.body.offsetHeight; var new_span=document.createElement("span"); var text_node=document.createTextNode(" "); new_span.appendChild(text_node); var div_target=document.getElementById("divTarget"); var li_target=document.getElementById("liTarget"); li_target.insertBefore(new_span,div_target); </script>
/css/css-lists/add-inline-child-after-marker-002-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Lists: Add inline child after marker</title> <p>The test passes if you see the list marker followed by the text "axxx" in the same line.</p> <ul> <li> <span> </span> <div style="overflow:hidden;"> <span>a</span>xxx </div> </li> </ul>