| Index: webkit/data/layout_tests/chrome/plugins/call-as-function.html
|
| ===================================================================
|
| --- webkit/data/layout_tests/chrome/plugins/call-as-function.html (revision 35112)
|
| +++ webkit/data/layout_tests/chrome/plugins/call-as-function.html (working copy)
|
| @@ -1,25 +0,0 @@
|
| -<html>
|
| -<script>
|
| -if (window.layoutTestController)
|
| - layoutTestController.dumpAsText();
|
| -
|
| -function runTest() {
|
| - var c = document.getElementById('console');
|
| - var p = document.getElementById('plg');
|
| - var x = p();
|
| - c.innerHTML += 'plg() = ' + x + '<br>';
|
| -
|
| - var y = p.testObject();
|
| - c.innerHTML += 'plg.testObject() = ' + y + '<br>';
|
| -}
|
| -</script>
|
| -<body onload='runTest()'>
|
| -<embed id="plg" type="application/x-webkit-test-netscape"></embed><P>
|
| -
|
| -This tests that call a plugin object (NPObject) as a function invokes
|
| -invokeDefault() function on the object.
|
| -
|
| -<div id="console"></div>
|
| -</body>
|
| -</html>
|
| -
|
|
|