summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/selectionAction_frame_xorigin.html
blob: 87a4d6039e2a9bc302f8d28ddb00770f5108f7d2 (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
<html>
  <head>
    <meta charset="utf-8" />
    <script>
      window.addEventListener("message", e => {
        switch (e.data.type) {
          case "focus":
            window.focus();
            break;

          case "select": {
            <!-- On fission, there's no way to wait for parent position change. -->
            <!-- So we use requestAnimationFrame as a workaround. -->
            window.requestAnimationFrame(() => {
              window.requestAnimationFrame(() => {
                const text = document.body.firstChild;
                document
                  .getSelection()
                  .setBaseAndExtent(text, 0, text, e.data.length);
              });
            });
            break;
          }

          case "selectedOffset": {
            const sel = document.getSelection();
            const text = document.body.firstChild;
            if (sel.anchorNode !== text || sel.focusNode !== text) {
              window.parent.postMessage([-1, -1], "*");
            } else {
              window.parent.postMessage(
                [sel.anchorOffset, sel.focusOffset],
                "*"
              );
            }
            break;
          }

          case "content":
            window.parent.postMessage(document.body.textContent, "*");
            break;
        }
      });
    </script>
  </head>
  <body onload="document.body.textContent = 'elit'"></body>
</html>