diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-negative-manual.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-negative-manual.html')
-rw-r--r-- | testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-negative-manual.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-negative-manual.html b/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-negative-manual.html new file mode 100644 index 000000000..506435074 --- /dev/null +++ b/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-negative-manual.html @@ -0,0 +1,44 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: focus - negative tabindex</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#sequential-focus-navigation-and-the-tabindex-attribute"> +<meta assert="flag" content="interact"> +<meta assert="assert" content="Check if the tabindex attribute controls whether an element is supposed to be focusable"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<h2>Steps:</h2> +<ol> + <li>Press 'Tab' key in 10 seconds.</li> +</ol> +<h2>Expect results:</h2> +<p>PASS</p> +<div id="log"></div> +<form id="fm"> + <input id="test1" tabindex="-1"> + <input id="test2" tabindex="0"> +</form> +<script> + +//This test can be automated once we have an uniform way to use webdriver. +var t = async_test("The element with a negative tabindex must not be focused by press 'Tab' key"); + +setup({timeout: 10000}); + +document.forms.fm.addEventListener("focus", function (evt) { + t.step(function () { + var testEle = document.getElementById("test1"); + assert_equals(testEle.tabIndex, -1, "The tabIndex attribute of the first input element should be -1."); + assert_not_equals(evt.target, testEle, "The second input element must be focused."); + assert_equals(document.activeElement, document.getElementById("test2"), "The second input element must be activated."); + }); + t.done(); +}, true); + +document.addEventListener("keydown", function (evt) { + t.step(function () { + assert_equals(evt.keyCode, 9, "Please press 'Tab' key."); + }); +}, true); + +</script> |