blob: 2d288fb797728f4d360bcaaff4aff77841c75677 [file] [log] [blame]
<html>
<script>
function debug(str) {
document.getElementById('console').innerHTML += str + "<br>";
}
function pluginCallback() {
debug('SUCCESS');
if (window.layoutTestController)
layoutTestController.notifyDone();
}
function runTest() {
if (window.layoutTestController) {
layoutTestController.dumpAsText();
layoutTestController.waitUntilDone();
}
var plugin = document.plugin;
debug('plugin object is: ' + plugin);
plugin.getURL('javascript:pluginCallback()', '_self')
}
</script>
<body onload="runTest()">
<object name="plugin" type="application/x-webkit-test-netscape">
<span>
<embed name="plugin" type="application/x-webkit-test-netscape"></embed>
</span>
</object>
<div>
This tests that it's possible to control an embed that is nested inside an object with a span tag in between.
</div>
<div id="console">
</div>
</body>
</html>