File: issue2569.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 (30 lines) | stat: -rw-r--r-- 1,122 bytes parent folder | download | duplicates (4)
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>