Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-lists/crashtests/list-item-hidden-until-found-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<body onload="start();">
<li
id="li"
style="list-style-image: url(not-exist.gif);"
type="NONE"
>li_fuzz</li>
</body>
<script>
function start() {
const li = document.getElementById("li");
li.setAttribute("hidden", "until-found");
li.setAttribute("type", "DISC");
}
</script>