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

Unified Diff: webkit/data/layout_tests/chrome/plugins/return-npobject.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/return-npobject.html
===================================================================
--- webkit/data/layout_tests/chrome/plugins/return-npobject.html (revision 35112)
+++ webkit/data/layout_tests/chrome/plugins/return-npobject.html (working copy)
@@ -1,31 +0,0 @@
-
-<script>
- var test_object = new Object();
- test_object.value = 1;
-
- function callbk(arg) {
- return test_object;
- }
-
- function runtest() {
- var obj = plug.testCallbackRet("callbk");
- if (obj == test_object) {
- var output = document.getElementById("output");
- output.innerHTML = "SUCCESS";
- }
- }
-</script>
-
-<BODY id="bodyId" onload="runtest()">
-
-Test that we can get an NPObject returned through a method on
-an NPAPI Object.<P>
-
-Prints "SUCCESS" on success, "FAILURE" on failure.
-
-<embed name="plug" type="application/x-webkit-test-netscape">
-
-<div id=output>FAILURE</div>
-
-</BODY>
-

Powered by Google App Engine
This is Rietveld 408576698