| Index: third_party/WebKit/LayoutTests/fast/html/details-keyboard-show-hide.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/html/details-keyboard-show-hide.html b/third_party/WebKit/LayoutTests/fast/html/details-keyboard-show-hide.html
|
| deleted file mode 100644
|
| index ec5b40369423f1f6bec34ef2f6cd826d3827ce6d..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/html/details-keyboard-show-hide.html
|
| +++ /dev/null
|
| @@ -1,38 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<head>
|
| -<script src="../../resources/js-test.js"></script>
|
| -</head>
|
| -
|
| -<body>
|
| -<p id="description"></p>
|
| -<div id="console"></div>
|
| -<details id="details"><summary id="summary"></summary><input></details>
|
| -<script>
|
| - function openAttribute(id) {
|
| - return document.getElementById(id).open;
|
| - }
|
| -
|
| - description("This test verifies that pressing the ENTER or SPACEBAR key when the <summary> has focus will toggle the <details> display. On expanding details.open will be true and vice versa.");
|
| -
|
| - if (window.eventSender) {
|
| - var summary = document.getElementById("summary");
|
| - summary.focus();
|
| -
|
| - shouldBeFalse('openAttribute("details")');
|
| - debug("Toggle <display> using Enter key:");
|
| - eventSender.keyDown("\r");
|
| - shouldBeTrue('openAttribute("details")');
|
| - eventSender.keyDown("\r");
|
| - shouldBeFalse('openAttribute("details")');
|
| -
|
| - debug("Toggle <display> using Spacebar key:");
|
| - eventSender.keyDown(" ");
|
| - shouldBeTrue('openAttribute("details")');
|
| - eventSender.keyDown(" ");
|
| - shouldBeFalse('openAttribute("details")');
|
| - } else {
|
| - debug('There are tests using eventSender.');
|
| - }
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|