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

Unified Diff: LayoutTests/fast/spatial-navigation/snav-date.html

Issue 22847002: Fix for crash occuring when spatial navigation is enabled (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Further fixes in test Created 7 years, 4 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/fast/spatial-navigation/snav-date-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/spatial-navigation/snav-date.html
diff --git a/LayoutTests/fast/spatial-navigation/snav-date.html b/LayoutTests/fast/spatial-navigation/snav-date.html
new file mode 100644
index 0000000000000000000000000000000000000000..6cc3d0994c43ccd34352d9fce1ed20973bd13cb2
--- /dev/null
+++ b/LayoutTests/fast/spatial-navigation/snav-date.html
@@ -0,0 +1,55 @@
+<!DOCTYPE html>
+<head>
+<script src="../js/resources/js-test-pre.js"></script>
+<script src="resources/spatial-navigation-utils.js"></script>
+<script>
+window.jsTestIsAsync = true;
+
+if (window.testRunner) {
+ testRunner.overridePreference("WebKitTabToLinksPreferenceKey", 1);
+ window.internals.settings.setSpatialNavigationEnabled(true);
+}
+</script>
+<script src="../js/resources/js-test-post.js"></script>
+</head>
+<body id="some-content" xmlns="http://www.w3.org/1999/xhtml">
+<p id="description"></p>
+<table style="text-align: left; width: 100%; margin-left: auto; margin-right: auto;" border="1" cellpadding="2" cellspacing="1">
+<tbody>
+<tr>
+<td style="vertical-align: top; text-align: center;"><a id="left" href="a">Left</a></td>
+<td style="vertical-align: top; text-align: center;"><input id="start" type="date" value="text"></td>
+<td style="vertical-align: top; text-align: center;"><a id="right" href="a">Right</a></td>
+</tr>
+</tbody>
+</table>
+<div id="console"></div>
+<script type="application/javascript">
+description('This test ensures the correctness of Spatial Navigation (SNav) algorithm over date input element (having shadow DOM).<br>\
+ * Navigation steps:<br>\
+ 1) Loads this page, focus goes to "start" automatically.<br>\
+ 2) Focus moves away from input box, left and right to neighbor nodes and back.<br>');
+
+var resultMap = [
+ ["Left", "left"],
+ ["Right", "start"], // month
+ ["Right", "start"], // day
+ ["Right", "start"], // year
+ ["Right", "right"],
+ ["Left", "start"],
+ ["DONE", "DONE"]
+];
+
+function runTest()
+{
+ // starting the test itself: get to a known place.
+ document.getElementById("start").focus();
+
+ initTest(resultMap, finishJSTest);
+}
+
+window.onload = runTest;
+</script>
+</body>
+</html>
+
« no previous file with comments | « no previous file | LayoutTests/fast/spatial-navigation/snav-date-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698