summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/other/non-html-document.html
blob: ffd2e6f59464c56fac6694856978192ed03a199c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<meta charset=utf-8>
<title>Non-HTML document tests</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script>

test(function() {
  let xmldoc =
    document.implementation.createDocument("http://www.w3.org/1999/xlink",
                                           "html", null);
  for (let f of [
         () => xmldoc.execCommand("bold"),
         () => xmldoc.queryCommandEnabled("bold"),
         () => xmldoc.queryCommandIndeterm("bold"),
         () => xmldoc.queryCommandState("bold"),
         () => xmldoc.queryCommandSupported("bold"),
         () => xmldoc.queryCommandValue("bold"),
       ]) {
    assert_throws_dom("InvalidStateError", f);
  }
}, "editing APIs on an XML document should be disabled");

</script>