summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/trusted-types/Document-execCommand.tentative.html
blob: 7619133655f41f7c5cdcdcea115edaf1e338b977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<link rel="author" title="Daniel Vogelheim" href="mailto:vogelheim@chromium.org"></link>
<link rel="help" href="https://w3c.github.io/trusted-types/dist/spec/"></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>