chromium/third_party/blink/web_tests/svg/hittest/text-with-text-node-only.svg

<svg onload="runTest()" width="500" height="150" viewBox="0 0 1000 300" xmlns="http://www.w3.org/2000/svg">
    <script src="../../resources/ahem.js"></script>
    <text id="text" x="10" y="1em">Foo</text>
    <defs>
        <style type="text/css">
        <![CDATA[
            text {
                font-family: Ahem;
                font-size: 40px;
            }
        ]]>
        </style>
        <script type="text/javascript">
        <![CDATA[
            function runTest() {
                if (window.testRunner)
                    testRunner.dumpAsText();

                // (15,15) is contained within #text's glyph cell bounds.
                var text = document.getElementById("text");
                if (document.elementFromPoint(15, 15) === text)
                    text.textContent = "PASS";
                else
                    text.textContent = "FAIL";
            }
        ]]>
        </script>
    </defs>
</svg>