summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/trusted-types/block-string-assignment-to-attribute-via-attribute-node.html
blob: b881e8cb37e2d020b7f07e63a39ecf157b65fb50 (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
39
40
41
42
<!DOCTYPE html>
<html>
<head>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <meta http-equiv="Content-Security-Policy" content="require-trusted-types-for 'script';">
</head>
<body>
<div id="testcases">
  <embed src="x"></embed>
  <object data="x"></object>
  <object codeBase="x"></object>
  <script src="x"></script>
  <iframe srcdoc="x"></iframe>
  <div onclick="x"></div>
</div>
<div id="sanitycheck">
  <div style=sdf></div>
  <p class=""></p>
</div>
<script>
test(t => {
  const nodes = document.querySelectorAll("#sanitycheck *");
  nodes[0].attributes[0].textContent = "xxx";
  nodes[1].attributes[0].nodeValue = "yyy";
}, "Sanity check: Setting non-TT attributes still works.");

for (const element of document.querySelectorAll("#testcases *")) {
  test(t => {
    assert_throws_js(TypeError, _ => {
      element.attributes[0].textContent = "sldkjsfldk";
    });
  }, `Set ${element.localName}.${element.attributes[0].localName} via textContent`);
  test(t => {
    assert_throws_js(TypeError, _ => {
      element.attributes[0].nodeValue = "sdflkgjdlkgjdg";
    });
  }, `Set ${element.localName}.${element.attributes[0].localName} via nodeValue`);
};
</script>
</body>
</html>