Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/inserthtml-selecting-across-dialog.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
"use strict";
addEventListener("DOMContentLoaded", () => {
document.execCommand("selectAll");
document.designMode = "on";
document.execCommand("backColor", false, "#E8F1E5");
document.querySelector("dialog").showModal();
document.execCommand("insertHTML", false, "B");
}, {once: true});
</script>
</head>
<body><audio>
<table>
A
</table>
</audio>
<svg>
</svg><small contenteditable></small>
<table>
<dialog></dialog>
<textarea>
</textarea></table></body></html>