diff options
Diffstat (limited to 'testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute')
6 files changed, 212 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/.gitkeep b/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/.gitkeep diff --git a/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-default-value.html b/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-default-value.html new file mode 100644 index 000000000..25e359c2a --- /dev/null +++ b/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-default-value.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: focus - default value of 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"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<button id="test1">TEST1</button> +<div id="test2">TEST2</div> +<script> + +test(function() { + assert_equals(document.getElementById("test1").tabIndex, 0, "The value of tabIndex attribute should be 0."); +}, "The default value of tabIndex attribute must be 0 for elements that are focusable"); + +test(function() { + assert_equals(document.getElementById("test2").tabIndex, -1, "The value of tabIndex attribute should be -1."); +}, "The default value of tabIndex attribute must be -1 for elements that are not focusable"); + +</script> 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> diff --git a/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-order-manual.html b/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-order-manual.html new file mode 100644 index 000000000..c83762629 --- /dev/null +++ b/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-order-manual.html @@ -0,0 +1,59 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: focus - the sequential focus navigation order</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 the sequential focus navigation order"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<h2>Steps:</h2> +<ol> + <li>Press 'Tab' key at least 10 times in 20 seconds.(Long press the 'Tab' key will be better.)</li> +</ol> +<h2>Expect results:</h2> +<p>PASS</p> +<div id="log"></div> +<form id="fm"> + <button id="btn0">tabindex(omitted)</button> + <button id="btn1" tabindex="">tabindex(empty)</button> + <button id="btn2" tabindex="a">tabindex(a)</button> + <button id="btn3" tabindex="-1">tabindex(-1)</button> + <button id="btn4" tabindex="0">tabindex(0)</button> + <button id="btn5" tabindex="3">tabindex(3)</button> + <button id="btn6" tabindex="2">tabindex(2)</button> + <button id="btn7" tabindex="2">tabindex(2)</button> + <button id="btn8" tabindex="2">tabindex(2)</button> + <button id="btn9" tabindex="1">tabindex(1)</button> +</form> +<script> + +//This test can be automated once we have an uniform way to use webdriver. +var i = 0, + expectation = ["btn9", "btn6", "btn7", "btn8", "btn5", "btn0", "btn1", "btn2", "btn4"], + results = [], + t = async_test("The element with a zero tabindex must be focused by press 'Tab' key"); + +setup(function () { + document.body.focus(); +}, {timeout: 20000}); + +document.forms.fm.addEventListener("focus", function (evt) { + results.push(evt.target.id); + if (i >= 9) { + t.step(function () { + assert_array_equals(results, expectation); + }); + } +}, true); + +document.addEventListener("keydown", function (evt) { + if (evt.keyCode === 9) { + i += 1; + if (i === 10) { + t.done(); + } + } +}, true); + +</script> diff --git a/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-positive-manual.html b/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-positive-manual.html new file mode 100644 index 000000000..012a3e7ee --- /dev/null +++ b/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-positive-manual.html @@ -0,0 +1,43 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: focus - positive 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="test" tabindex="1"> +</form> +<script> + +//This test can be automated once we have an uniform way to use webdriver. +var t = async_test("The element with a positive tabindex must be focused by press 'Tab' key"); + +setup({timeout: 10000}); + +document.forms.fm.addEventListener("focus", function (evt) { + t.step(function () { + var testEle = document.getElementById("test"); + assert_equals(testEle.tabIndex, 1, "The tabIndex attribute of the input element should be 1."); + assert_equals(evt.target, testEle, "The input element must be focused."); + assert_equals(document.activeElement, testEle, "The 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> diff --git a/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-zero-manual.html b/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-zero-manual.html new file mode 100644 index 000000000..108b818b1 --- /dev/null +++ b/testing/web-platform/tests/html/editing/focus/sequential-focus-navigation-and-the-tabindex-attribute/focus-tabindex-zero-manual.html @@ -0,0 +1,45 @@ +<!DOCTYPE html> +<head> +<meta charset="utf-8"> +<title>HTML Test: focus - zero 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> +</head> +<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="test" 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 zero tabindex must be focused by press 'Tab' key"); + +setup({timeout: 10000}); + +document.forms.fm.addEventListener("focus", function (evt) { + t.step(function () { + var testEle = document.getElementById("test"); + assert_equals(testEle.tabIndex, 0, "The tabIndex attribute of the input element should be 0."); + assert_equals(evt.target, testEle, "The input element must be focused."); + assert_equals(document.activeElement, testEle, "The 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> |