Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: LayoutTests/fast/forms/select/popup-menu-mouse-operations.html

Issue 892083003: Revert Implement <select> Popup Menu using PagePopup (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/forms/select/popup-menu-mouse-operations.html
diff --git a/LayoutTests/fast/forms/select/popup-menu-mouse-operations.html b/LayoutTests/fast/forms/select/popup-menu-mouse-operations.html
deleted file mode 100644
index 07122c32dbd1586bcb3e24319d3806156f99b827..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/forms/select/popup-menu-mouse-operations.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../../resources/js-test.js"></script>
-<script src="../resources/common.js"></script>
-<script src="../resources/picker-common.js"></script>
-</head>
-<body>
-<select id="menu">
- <option>foo</option>
- <option selected>bar</option>
- <option>baz</option>
-</select>
-<script>
-var menuElement = document.getElementById('menu');
-var picker = null;
-openPicker(menuElement, function () {
- picker = window.internals.pagePopupWindow.global.picker;
- shouldBeEqualToString('picker._selectElement.value', '1');
- shouldBeEqualToString('menuElement.value', 'bar');
-
- hoverOverElement(picker._selectElement.children[0]);
- shouldBeEqualToString('picker._selectElement.value', '0');
- shouldBeEqualToString('menuElement.value', 'bar');
-
- hoverOverElement(picker._selectElement.children[1]);
- shouldBeEqualToString('picker._selectElement.value', '1');
- shouldBeEqualToString('menuElement.value', 'bar');
-
- hoverOverElement(menuElement);
- shouldBeEqualToString('picker._selectElement.value', '1');
- shouldBeEqualToString('menuElement.value', 'bar');
-
- clickElement(picker._selectElement.children[2]);
- shouldBeNull('window.internals.pagePopupWindow');
- shouldBeEqualToString('menuElement.value', 'baz');
-
- finishJSTest();
-});
-</script>
-</body>
-</html>
« no previous file with comments | « LayoutTests/fast/forms/select/popup-menu-key-operations.html ('k') | LayoutTests/fast/forms/select/popup-menu-position.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698