summaryrefslogtreecommitdiff
path: root/tests/end2end/data/click_element.html
blob: 7fac2a381972f3896271192e7c8ebd6899d06ef8 (plain)
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>