chromium/third_party/blink/web_tests/svg/in-html/nested-scripts.html

<html>
<head>
<script src="../../resources/js-test.js"></script>
<script>
    if (window.testRunner)
        testRunner.dumpAsText();
</script>
</head>
<body>
<div id="console"></div>
<svg>
    <g>
        <rect id="test">
            <script>
                // Notice that the parent script block ignores the nested
                // script element.
                debug('Hello<script>debug("inner script ran!");</script>World');
            </script>
        </rect>
    </g>
</svg>
</body>
</html>