Chromium Code Reviews| Index: chrome/test/data/pdf/touch_handling_test.js |
| diff --git a/chrome/test/data/pdf/touch_handling_test.js b/chrome/test/data/pdf/touch_handling_test.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8acb9677c972327282822cb9051f41f10628a93d |
| --- /dev/null |
| +++ b/chrome/test/data/pdf/touch_handling_test.js |
| @@ -0,0 +1,75 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +function sendTouchStart(touches) { |
| + var id = 0; |
| + let touchList = touches.map(function(xy) { |
| + var touchInit = { |
| + identifier: id++, |
| + target: viewer.plugin_, |
| + clientX: xy.x, |
| + clientY: xy.y, |
| + }; |
| + |
| + return new window.Touch(touchInit); |
| + }); |
| + |
| + viewer.plugin_.dispatchEvent(new TouchEvent('touchstart', { |
| + touches: touchList, |
| + targetTouches: touchList, |
| + changedtouches: touchList |
| + })); |
| +} |
| + |
| +function createContextMenuEvent() { |
| + return new MouseEvent('contextmenu', { |
| + cancelable: true, |
| + sourceCapabilities: new InputDeviceCapabilities({firesTouchEvents: true}) |
| + }); |
| +} |
| + |
| +var tests = [ |
| + // Test suppression of the context menu on single touch. |
| + function testContextMenuSingleTouch() { |
| + sendTouchStart([{x: 10, y: 10}]); |
| + |
| + let event = createContextMenuEvent(); |
| + // Dispatch event will be false if the event is cancellable and one of the |
| + // handlers called preventDefault. |
| + chrome.test.assertFalse(document.dispatchEvent(event), |
| + "Should have called preventDefault() for single touch."); |
| + chrome.test.succeed(); |
| + }, |
| + |
| + // Test allowing of context menu on double touch. |
| + function testContextMenuDoubleTouch() { |
| + sendTouchStart([{x: 10, y: 10}, {x: 15, y: 15}]); |
| + |
| + let event = createContextMenuEvent(); |
| + chrome.test.assertTrue(document.dispatchEvent(event), |
| + "Should not have called preventDefault() for double touch."); |
| + chrome.test.succeed(); |
| + }, |
| + |
| + // Test long press selects word. This test flakes out on some bots. |
|
Lei Zhang
2017/05/17 08:36:38
Reference a bug?
dsinclair
2017/05/17 13:19:29
Done.
|
| + // The test passes locally on MacOS, ChromeOS and Linux. Disable until it's |
| + // possible to repro the bot issue. |
| + //function testLongPressSelectsText() { |
|
Lei Zhang
2017/05/17 08:36:38
Do you need one more space here and below?
dsinclair
2017/05/17 13:19:29
Done. Was trying to avoid re-wrapping line 63.
|
| + // var client = new PDFScriptingAPI(window, window); |
| + |
| + // sendTouchStart([{x: 336, y: 163}]); |
| + // window.setTimeout(function() { |
| + // client.getSelectedText(chrome.test.callbackPass(function(selectedText) { |
| + // chrome.test.assertEq('some', selectedText); |
| + // })); |
| + // chrome.test.succeed(); |
| + // // 10k is the value for the action_timeout_ms_ in Chrome test_timeouts.cc |
| + // }, 10000); |
| + //} |
| +]; |
| + |
| +var scriptingAPI = new PDFScriptingAPI(window, window); |
| +scriptingAPI.setLoadCallback(function() { |
| + chrome.test.runTests(tests); |
| +}); |