| Index: third_party/WebKit/LayoutTests/fast/forms/select-popup/popup-menu-touch-operations.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/select-popup/popup-menu-touch-operations.html b/third_party/WebKit/LayoutTests/fast/forms/select-popup/popup-menu-touch-operations.html
|
| index 71d3e8ca11d4f0a6f6c5fe78a98d69d9bb0f7dc8..ea2f3651f5fedc0309157e81735cfa8c65f93052 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/select-popup/popup-menu-touch-operations.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/forms/select-popup/popup-menu-touch-operations.html
|
| @@ -146,8 +146,23 @@ function test2AfterScrollEvent() {
|
| shouldNotBe('window.internals.pagePopupWindow', 'null');
|
| shouldBeEqualToString('menuElement2.value', '2');
|
|
|
| - finishJSTest();
|
| + test3();
|
| +}
|
| +
|
| +function test3() {
|
| + debug("==> Test popup closes on outside GestureTapDawn");
|
| + eventSender.clearTouchPoints();
|
| + openPicker(menuElement, function () {
|
| + eventSender.gestureTapDown(300, 300);
|
| + shouldBeNull('window.internals.pagePopupWindow');
|
| + finishJSTest();
|
| + }, function () {
|
| + testFailed('picker didn\'t open')
|
| + finishJSTest();
|
| + });
|
| }
|
| +
|
| +
|
| </script>
|
| </body>
|
| </html>
|
|
|