summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug1611661.html
blob: d92ae05e667f55302ac59975f15999453a4d7b2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html class="reftest-wait">
<title>Can edit input type=number with a user-select: none ancestor</title>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<div style="user-select: none">
  <input type="number" value="322223">
</div>
<script>
SimpleTest.waitForFocus(function() {
  document.querySelector('input').focus();
  requestAnimationFrame(function() {
    // Move after the 3
    synthesizeKey("KEY_ArrowRight");
    // Select "2222"
    for (let i = 0; i < 4; ++i)
      synthesizeKey("KEY_ArrowRight", { shiftKey: true });
    // Rip it off.
    synthesizeKey("KEY_Delete");
    document.documentElement.removeAttribute("class");
  });
});
</script>