| Index: third_party/WebKit/LayoutTests/fast/forms/select/popup-menu-non-latin-update-from-element.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/select/popup-menu-non-latin-update-from-element.html b/third_party/WebKit/LayoutTests/fast/forms/select/popup-menu-non-latin-update-from-element.html
|
| deleted file mode 100644
|
| index 2148dba8ebdaa590c0654b89a8789efe88350e08..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/select/popup-menu-non-latin-update-from-element.html
|
| +++ /dev/null
|
| @@ -1,37 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<meta charset="utf-8">
|
| -<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 selected>いろはにほへと</option>
|
| -</select>
|
| -<script>
|
| -var menuElement = document.getElementById('menu');
|
| -var picker;
|
| -
|
| -function openPickerErrorCallback() {
|
| - testFailed('picker didn\'t open')
|
| - finishJSTest();
|
| -}
|
| -openPicker(menu, test1, openPickerErrorCallback);
|
| -
|
| -function test1() {
|
| - picker = window.internals.pagePopupWindow.global.picker;
|
| -
|
| - menuElement.style.color = 'rgb(123, 0, 0)';
|
| -
|
| - picker.on("didUpdate", function () {
|
| - setTimeout(function() {
|
| - shouldBeEqualToString('picker._selectElement.options[0].label', 'いろはにほへと');
|
| - finishJSTest();
|
| - }, 0);
|
| - });
|
| -}
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|