Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/the-details-element/details-display-list-item-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
details {
display: list-item;
}
</style>
</head>
<body>
<!-- This test passes if it does not crash. -->
<details></details>
<script>
window.reload();
</script>
</body>
</html>