blob: 3b9a1c82a0bdd1529eb4358f1c80031a3fe6b9e4 [file] [log] [blame]
<!doctype html>
<svg>
<text><tspan>PASS</tspan><tspan><a><ellipse/></a></tspan></text>
</svg>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
window.onload = function() {
var e = document.querySelector('ellipse');
e.parentNode.insertBefore(document.createElement('span'), e);
}
window.onload = function() {
setTimeout(function() {
if (window.testRunner)
testRunner.notifyDone();
}, 0);
};
</script>