summaryrefslogtreecommitdiffstats
path: root/layout/svg/crashtests/890782-1.svg
blob: 686bc73a8f1513d72f3a09dcad50b00d22a17548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<svg xmlns="http://www.w3.org/2000/svg">

    <foreignObject requiredFeatures="foo" id="f">
        <svg>
            <text id="t"/>
        </svg>
    </foreignObject>

    <script>
        window.addEventListener("load", function() {
            document.documentElement.appendChild(document.getElementById("f"))
            document.getElementById("t").getNumberOfChars();
        }, false);
    </script>

</svg>