Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: webkit/data/layout_tests/chrome/plugins/call-as-function.html

Issue 504079: Remove tests that have been upstreamed:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: add test_expectations.txt mods Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>
-

Powered by Google App Engine
This is Rietveld 408576698