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
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
   82
   83
   84
   85
   86
   87
   88
   89
   90
   91
   92
   93
   94
   95
   96
   97

content / test / data / android / input / virtual_keyboard_api.html [blame]

<!DOCTYPE html>
<!-- Note: if this page gets long (or wide) enough that it can't fit entirely on
     the phone's display without scrolling, the test will start being flaky and
     it will be very difficult to debug :(. -->
<html>
<head>
  <meta name="viewport" content="width=device-width">
</head>
<body>
  <textarea id="txt1" virtualkeyboardpolicy="manual" onfocusin="FocusIn1()"></textarea>
  <textarea id="txt2" virtualkeyboardpolicy="manual"></textarea>
  <textarea id="txt3" virtualkeyboardpolicy="manual" onfocusin="FocusIn2()"></textarea>
  <input id="input_text" type="text"></input>
</body>
  <script>
        let VKRect, new_vv_width = 0, new_vv_height = 0, numEvents = 0;
        navigator.virtualKeyboard.overlaysContent = true;
        let old_vv_width = visualViewport.width.toFixed(2);
        let old_vv_height = visualViewport.height.toFixed(2);
        navigator.virtualKeyboard.addEventListener('geometrychange', evt => {
          numEvents++;
          VKRect = navigator.virtualKeyboard.boundingRect;
          new_vv_width = visualViewport.width.toFixed(2);
          new_vv_height = visualViewport.height.toFixed(2);
        }, false);

        function FocusIn1() {
          navigator.virtualKeyboard.show();
        }

        function FocusIn2() {
          txt2.focus();
        }

        var selectionChangeEventLog = "";
        var otherEventLog = "";

        function addOtherEventLog(type, detail) {
          if (otherEventLog.length > 0) {
            otherEventLog += ',';
          }
          if (detail == null) {
            otherEventLog += type;
          } else {
            otherEventLog += type + '(' + detail + ')';
          }
        }

        function addSelectionChangeEventLog(type, detail) {
          if (selectionChangeEventLog.length > 0) {
            selectionChangeEventLog += ',';
          }
          if (detail == null) {
            selectionChangeEventLog += type;
          } else {
            selectionChangeEventLog += type + '(' + detail + ')';
          }
        }

        // selectionchange event is queued, so it races with the other events.
        // crbug.com/628964
        function getEventLogs() {
          if (otherEventLog.length > 0 && selectionChangeEventLog.length > 0)
            return otherEventLog + ',' + selectionChangeEventLog;
          return otherEventLog + selectionChangeEventLog;
        }

        function clearEventLogs() {
          selectionChangeEventLog = '';
          otherEventLog = '';
        }

        function addKeyEventListener(element, event_name) {
          element.addEventListener(event_name, function (e) { addOtherEventLog(event_name, e.keyCode); });
        }

        function addSelectionEventListener(event_name) {
          // Note that listeners added to the element are not effective for now.
          document.addEventListener(event_name, function (e) { addSelectionChangeEventLog(event_name, e.data); });
        }

        function registerListeners(element) {
          addKeyEventListener(element, "keydown");
          addKeyEventListener(element, "keypress");
          addKeyEventListener(element, "keyup");
        }

        var inputText = document.getElementById("input_text");
        var contenteditableEvent1 = document.getElementById("txt1");
        var contenteditableEvent2 = document.getElementById("txt2");
        // SelectionEventListener should be outside registerListenersAndObserver() to avoid duplication.
        addSelectionEventListener("selectionchange");
        registerListeners(inputText);
        registerListeners(contenteditableEvent1);
        registerListeners(contenteditableEvent2);
    </script>
</html>