summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/dynamic/insertAdjacentText.html
blob: 60c3e2523efeb75e60d6034101d88f3c81ff4125 (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
43
44
45
46
47
48
49
50
51
52
<body>
   <pre id="error-log"></pre>
   <span id="container" style="color: green">
   </span>
   <span id="status" style="color: red">
      FAILURE
   </span>
</body>
<script>
    if (window.testRunner)
        testRunner.dumpAsText();

   // verify all standard cases
   document.getElementById("container").insertAdjacentText("beforeBegin", " 1 (black)");
   document.getElementById("container").insertAdjacentText("afterBegin", " 2 (green)");
   document.getElementById("container").insertAdjacentText("beforeEnd", " 3 (green)");
   document.getElementById("container").insertAdjacentText("afterEnd", " 4 (black)");

   function assertThrows(func) {
      var testPassed = false;
      try {
         func();
         document.getElementById("error-log").textContent += "Expected exception missing.\n";
      } catch (e) {
         document.getElementById("error-log").textContent += "Caught expected exception: " + e + "\n";
         testPassed = true;
      }
      return testPassed;
   }

   // check that exceptions are thrown as required
   var passes = true;
   passes = assertThrows(function() {
      // should throw SyntaxError
      document.getElementById("container").insertAdjacentText("blah", "text");
   }) && passes;

   passes = assertThrows(function() {
      // should throw TypeError
      document.getElementById("container").insertAdjacentText();
   }) && passes;

   passes = assertThrows(function() {
      // should throw TypeError
      document.getElementById("container").insertAdjacentText("afterBegin");
   }) && passes;

   if (passes) {
      document.getElementById("status").style.color = "green";
      document.getElementById("status").innerHTML = "<br><br>PASS";
   }
</script>