Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /trusted-types/Document-execCommand.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Daniel Vogelheim" href="mailto:vogelheim@chromium.org"></link>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
// Test that execCommand continues to work if Trusted Types is not enabled.
const commands = [ "insertHTML", "paste" ];
for (const command of commands) {
test(t => {
document.execCommand(command, false, "<em>Hello World</em>");
}, `Document.execCommand("${command}") works as usual.`);
}
</script>