summaryrefslogtreecommitdiff
path: root/tests/end2end/data/hints/html/invisible.html
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-12-01 17:21:31 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-12-01 17:21:31 +0100
commit470fede771eb978903eade6fd34632aa6adab0e2 (patch)
treec8dc118e9da5ee29c5553275adf86b8d5ddcc8e8 /tests/end2end/data/hints/html/invisible.html
parentee79ea6532f3c9d40569fb1c9329f4e5cec1fc4f (diff)
downloadqutebrowser-470fede771eb978903eade6fd34632aa6adab0e2.tar.gz
qutebrowser-470fede771eb978903eade6fd34632aa6adab0e2.zip
tests: Move invisible.html to hints/html
Diffstat (limited to 'tests/end2end/data/hints/html/invisible.html')
-rw-r--r--tests/end2end/data/hints/html/invisible.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/end2end/data/hints/html/invisible.html b/tests/end2end/data/hints/html/invisible.html
new file mode 100644
index 000000000..d382c80fa
--- /dev/null
+++ b/tests/end2end/data/hints/html/invisible.html
@@ -0,0 +1,16 @@
+<!-- target: null -->
+
+<!DOCTYPE html>
+
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>Invisible links</title>
+ </head>
+ <body>
+ <p>None of those invisible links should get a hint.</p>
+ <a href="/data/hello.txt" style="visibility: hidden">visibility: hidden</a>
+ <a href="/data/hello.txt" style="display: none">display: none</a>
+ <a href="/data/hello.txt" style="opacity: 0">opacity: 0</a>
+ </body>
+</html>