summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-ui/nav-up-016.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
commit0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch)
treea31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/css/css-ui/nav-up-016.html
parentInitial commit. (diff)
downloadfirefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz
firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-ui/nav-up-016.html')
-rw-r--r--testing/web-platform/tests/css/css-ui/nav-up-016.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-ui/nav-up-016.html b/testing/web-platform/tests/css/css-ui/nav-up-016.html
new file mode 100644
index 0000000000..bca0f73dde
--- /dev/null
+++ b/testing/web-platform/tests/css/css-ui/nav-up-016.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<title>CSS Basic User Interface Test: Directional Focus Navigation - disabled elements are not navigated for 'nav-up'</title>
+<link rel="author" title="Jorrit Vermeiren" href="mailto:jorritv@opera.com">
+<link rel="author" title="Daniel Glazman" href="mailto:d.glazman@partner.samsung.com">
+<link rel="help" href="https://drafts.csswg.org/css-ui-4/#nav-dir">
+<meta name="flags" content="interact">
+<meta name="assert" content="Test checks that disabled elements are not navigated for 'nav-up'.">
+<style type="text/css">
+ #start {
+ nav-up: #intermediate;
+ }
+
+ input {
+ display: block;
+ }
+</style>
+<body>
+ <p>First, use directional navigation to navigate the focus to the "START" text field below.</p>
+ <!-- In Opera 12.16, directional navigation may be done using Shift+<arrow key>.
+ In the SmartTV emulator, use the keypad in the GUI. -->
+ <p>Test passes if navigating up moves the focus to the "FINISH" text field and not the disabled "ignore" one.</p>
+
+ <div id="parent">
+ <input value="FINISH"/>
+ <input value="ignore" disabled="disabled" id="intermediate"/>
+ <input value="START"/>
+ </div>
+</body>