summaryrefslogtreecommitdiffstats
path: root/layout/forms/test/bug287446_subframe.html
blob: 51fd701e3b8bd33ed51e645bb97bcc26cf0150da (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="/tests/SimpleTest/EventUtils.js"></script>
    <script>
      function doIs(arg1, arg2, arg3) {
        window.parent.postMessage("t " + encodeURIComponent(arg1) + " " +
                                  encodeURIComponent(arg2) + " " +
                                  encodeURIComponent(arg3), "*");
      }

      function $(arg) { return document.getElementById(arg); }

      window.addEventListener("message",
        function(evt) {
          var t = $("target");
          if (evt.data == "start") {
            doIs(t.value, "Test", "Shouldn't have lost our initial value");
            t.focus();
            sendString("Foo");
            doIs(t.value, "FooTest", "Typing should work");
            window.parent.postMessage("c", "*");
          } else {
            doIs(evt.data, "continue", "Unexpected message");
            doIs(t.value, "FooTest", "Shouldn't have lost our typed value");
            sendString("Bar");
            doIs(t.value, "FooBarTest", "Typing should still work");
            window.parent.postMessage("f", "*");
          }
        },
        "false");

    </script>
  </head>
  <body>
    <input id="target" value="Test">
  </body>
</html>