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

Unified Diff: LayoutTests/accessibility/placeholder.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 2 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
« no previous file with comments | « LayoutTests/accessibility/media-element.html ('k') | LayoutTests/accessibility/placeholder-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/accessibility/placeholder.html
diff --git a/LayoutTests/accessibility/placeholder.html b/LayoutTests/accessibility/placeholder.html
deleted file mode 100644
index d83503595cb92919210237a6f43717e0cb704d4f..0000000000000000000000000000000000000000
--- a/LayoutTests/accessibility/placeholder.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<html>
-<html>
-<head>
-<script src="../fast/js/resources/js-test-pre.js"></script>
-</head>
-<body id="body">
-
- <input placeholder="search" type="text" name="q" size="15" maxlength="255" id="searchterm" />
-
- <input id="password" class="field" type="password" name="sc1798" value="" placeholder="Password" spellcheck="true" maxlength="5096">
-
- <p id="description"></p>
- <div id="console"></div>
-
- <script>
- if (window.accessibilityController) {
- description("This test makes sure that the placeholder is returned as the correct attribute");
-
- var field = document.getElementById("searchterm").focus();
- var fieldElement = accessibilityController.focusedElement;
- shouldBe("fieldElement.stringAttributeValue('AXPlaceholderValue')", "'search'");
-
- document.getElementById("password").focus();
- var pass = accessibilityController.focusedElement;
- shouldBe("pass.stringAttributeValue('AXPlaceholderValue')", "'Password'");
-
- }
- </script>
-
-<script src="../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>
« no previous file with comments | « LayoutTests/accessibility/media-element.html ('k') | LayoutTests/accessibility/placeholder-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698