Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/queryCommandIndeterm-backcolor-in-empty-iframe-in-designMode-from-load.html - WPT Dashboard Interop Dashboard
<html>
<head>
<script>
function go() {
test("myFrame", "backcolor");
}
function test(id,cmd) {
var doc = document.getElementById(id).contentDocument;
doc.designMode = "On";
var selection = doc.defaultView.getSelection();
selection.removeAllRanges();
selection.addRange(doc.createRange());
doc.queryCommandIndeterm(cmd);
}
</script>
</head>
<body onload="go()"><iframe id="myFrame"></iframe></body>
</html>