summaryrefslogtreecommitdiff
path: root/tests/end2end/data/issue2569.html
blob: a21690bd6d508d85b758a9e7d55824d128a922a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<html>
    <!-- https://github.com/qutebrowser/qutebrowser/issues/2569 -->
    <head>
        <title>Form with tagName child</title>
    </head>
    <body>
        <!--
        Happens with the tag editor on linux.org.ru
        https://www.linux.org.ru/user-filter
        -->
        <form id="tagnameform">
            <input name="tagName" type="text">
        </form>
        <!-- Happens when clicking to the right of a reddit comment form -->
        <form id="textform">
            <input name="text" type="text">
        </form>
        <!-- Happens on the GitHub "new file" page -->
        <form id="valueform">
            <input name="value" type="text">
        </form>
        <!-- Some regressions after we added type checking -->
        <svg xmlns="http://www.w3.org/2000/svg" width="30" height="20" viewBox="0 0 3 2" id="icon">
            <rect width="1" height="2" x="0" fill="#008d46" />
            <rect width="1" height="2" x="1" fill="#ffffff" />
            <rect width="1" height="2" x="2" fill="#d2232c" />
        </svg>
        <ul><li id="listitem">List item</li></ul>
    </body>
</html>