blob: dffda7e7914e15bd34e81a80433a924dcd5d0e18 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
function runTest() {
var svgDoc = document.getElementById("svgobject").getSVGDocument();
document.getElementById("output").innerHTML =
svgDoc ? "FAIL got SVGDocument: " + svgDoc : "PASS";
if (window.testRunner)
testRunner.notifyDone();
}
</script>
</head>
<body>
<object onload="runTest()"
id="svgobject" data="http://localhost:8080/security/resources/empty-svg.py"
type="image/svg+xml" width="400" height="300"></object>
<div id="output"></div>
</body>
</html>