summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/sanitizer-api/sanitizer-unknown.https.html
blob: 7b9835cb6d07e22481f19ef6fa3892b7e370a3a5 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
test(t => {
  d = document.createElement("div")
  d.setHTML("<hello><world>",
      { sanitizer: { elements: ["hello", "world"] } });
  assert_equals(d.innerHTML, "");
}, "Unknown element names get blocked without unknownMarkup.");

test(t => {
  d = document.createElement("div")
  d.setHTML("<hello><world>",
      { sanitizer: { unknownMarkup: true, elements: ["hello", "world"] } });
  assert_equals(d.innerHTML, "<hello><world></world></hello>");
}, "Unknown element names pass with unknownMarkup.");

test(t => {
  d = document.createElement("div")
  d.setHTML("<b hello='1' world>",
    { sanitizer: { attributes: ["name", "world"] } });
  assert_equals(d.innerHTML, "<b></b>");
}, "Unknown attributes names get blocked without unknownMarkup.");

test(t => {
  d = document.createElement("div")
  d.setHTML("<b hello='1' world>",
    { sanitizer: { unknownMarkup: true, attributes: ["name", "world"] } });
  assert_equals(d.innerHTML, `<b hello="1" world=""></b>`);
}, "Unknown attribute names pass with unknownMarkup.");
</script>
</body>
</html>