Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-datalist-element/remove-datalist-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Remove datalist element crash</title>
<datalist id="datalist"><option>foo</option></datalist>
<input id="input">
<input list="datalist">
<script>
document.body.offsetTop;
input.appendChild(datalist);
datalist.remove();
</script>