diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /dom/xul/test/test_xul_tabindex_focus.xhtml | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/xul/test/test_xul_tabindex_focus.xhtml')
-rw-r--r-- | dom/xul/test/test_xul_tabindex_focus.xhtml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/dom/xul/test/test_xul_tabindex_focus.xhtml b/dom/xul/test/test_xul_tabindex_focus.xhtml new file mode 100644 index 0000000000..1363d9b1e1 --- /dev/null +++ b/dom/xul/test/test_xul_tabindex_focus.xhtml @@ -0,0 +1,44 @@ +<?xml version="1.0"?> +<?xml-stylesheet type="text/css" href="chrome://global/skin"?> +<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" type="text/css"?> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=1128054 +--> +<window title="Mozilla Bug 1128054" + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> +<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script> +<body> +<!-- Test default focusability --> +<label></label> +<!-- Test tabindex=0 focusability --> +<label tabindex="0"></label> +<!-- Test tabindex=-1 focusability --> +<label tabindex="-1"></label> +<!-- Test tabindex=invalid focusability --> +<label tabindex="invalid"></label> +<!-- Tests code --> +<script type="application/javascript"> +<![CDATA[ + +/** Test for Bug 1128054 **/ + +add_task(function test_xul_tabindex_focus() { + for (let element of document.querySelectorAll("label")) { + let desc = "xul element"; + let focusable = false; + if (element.hasAttribute("tabindex")) { + let attr = element.getAttribute("tabindex"); + focusable = Number.isInteger(Number.parseInt(attr)); + desc += ` with tabindex=${attr}`; + } + + element.focus(); + focusable ? is(document.activeElement, element, desc + " should focusable") + : isnot(document.activeElement, element, desc + " should not focusable"); + } +}); + +]]> +</script> +</body> +</window> |