summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-12-01 21:35:39 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-12-01 21:35:39 +0100
commitaef42047b7f12374d732041a735c810559356e75 (patch)
tree0fc6d1b04ebc3335904d55892442355f66a26e52
parenta3fe21ee0d46da3d0644aa80f119fa4c1b4952b6 (diff)
downloadqutebrowser-aef42047b7f12374d732041a735c810559356e75.tar.gz
qutebrowser-aef42047b7f12374d732041a735c810559356e75.zip
Add hint test for tabindex-negative
-rw-r--r--tests/end2end/data/hints/html/tabindex-negative.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/end2end/data/hints/html/tabindex-negative.html b/tests/end2end/data/hints/html/tabindex-negative.html
new file mode 100644
index 000000000..03adb32bf
--- /dev/null
+++ b/tests/end2end/data/hints/html/tabindex-negative.html
@@ -0,0 +1,13 @@
+<!-- target: null -->
+
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>Span with tabindex -1</title>
+ </head>
+ <body>
+ <p>This text should not get a hint:</p>
+ <span tabindex=-1>test</span>
+ </body>
+</html>