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

Unified Diff: LayoutTests/accessibility/input-text-caret-position.html

Issue 1050123003: Rewrote password layout test and removed obsolete tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Renamed some more tests for consistency. Created 5 years, 8 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 | « no previous file | LayoutTests/accessibility/input-text-caret-position-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/accessibility/input-text-caret-position.html
diff --git a/LayoutTests/accessibility/input-text-caret-position.html b/LayoutTests/accessibility/input-text-caret-position.html
deleted file mode 100644
index dd92b6b73f7d96bc7657b52eceddab4b9ff30eea..0000000000000000000000000000000000000000
--- a/LayoutTests/accessibility/input-text-caret-position.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <script src="../resources/js-test.js"></script>
- </head>
- <body>
-
- <input type="text" id="input" value="Line 1">
-
- <p id="description"></p>
- <div id="console"></div>
-
- <script>
- description("This tests that caret position is reported correctly for text input elements.");
-
- if (window.accessibilityController) {
-
- var input = document.getElementById('input');
- input.focus();
- var inputAccessible =
- accessibilityController.accessibleElementById('input');
-
- for (var characterIndex = 0; characterIndex < 7; ++characterIndex) {
- input.setSelectionRange(characterIndex, characterIndex);
- shouldBeEqualToNumber("inputAccessible.selectionStart",
- characterIndex);
- shouldBeEqualToNumber("inputAccessible.selectionEnd",
- characterIndex);
- }
-
- }
- </script>
-
- </body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/accessibility/input-text-caret-position-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698