<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>