File: click_element.html

package info (click to toggle)
qutebrowser 3.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,432 kB
  • sloc: python: 72,411; javascript: 31,862; sh: 874; xml: 149; makefile: 52
file content (16 lines) | stat: -rw-r--r-- 824 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
    <head>
        <title>quteprocess.click_element test</title>
    </head>
    <body>
        <span id='test' onclick='console.log("click_element clicked")'>Test Element</span>
        <span onclick='console.log("click_element special chars")'>"Don't", he shouted</span>
        <span>Duplicate</span>
        <span class='clickable' onclick='console.log("click_element CSS selector")'>Duplicate</span>
        <form><input id='qute-input' onfocus='console.log("qute-input focused")'></input></form>
        <a href="/data/hello.txt" id='link'>link</a>
        <span id='foo.bar' onclick='console.log("id with dot")'>ID with dot</span>
        <span style='position: absolute; left: 20px;top: 42px; width:10px; height:10px;'
              onclick='console.log("click_element position")'></span>
    </body>
</html>