summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordpranke@google.com <dpranke@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-23 00:33:25 +0000
committerdpranke@google.com <dpranke@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-23 00:33:25 +0000
commitf09bc4e35d0bed570fcc1767bf8e1272913d2590 (patch)
treeb5f09c5a7b113b0a1098b2fa8e99eb61e825c841
parent6798ffa8502897cf4485cc631c190b72c4e4b46d (diff)
downloadchromium_src-f09bc4e35d0bed570fcc1767bf8e1272913d2590.zip
chromium_src-f09bc4e35d0bed570fcc1767bf8e1272913d2590.tar.gz
chromium_src-f09bc4e35d0bed570fcc1767bf8e1272913d2590.tar.bz2
Remove chrome files I somehow missed before.
TBR=esiedel@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/515004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35195 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/data/layout_tests/chrome/plugins/get-url-with-blank-target-expected.txt2
-rw-r--r--webkit/data/layout_tests/chrome/plugins/get-url-with-blank-target.html36
2 files changed, 0 insertions, 38 deletions
diff --git a/webkit/data/layout_tests/chrome/plugins/get-url-with-blank-target-expected.txt b/webkit/data/layout_tests/chrome/plugins/get-url-with-blank-target-expected.txt
deleted file mode 100644
index 0815b7b..0000000
--- a/webkit/data/layout_tests/chrome/plugins/get-url-with-blank-target-expected.txt
+++ /dev/null
@@ -1,2 +0,0 @@
- This tests that we won't crash when a plugin tries to open an URL in a new window when the application does not create the window. If this test is successful, the word SUCCESS should be seen below.
-SUCCESS
diff --git a/webkit/data/layout_tests/chrome/plugins/get-url-with-blank-target.html b/webkit/data/layout_tests/chrome/plugins/get-url-with-blank-target.html
deleted file mode 100644
index 6e69390..0000000
--- a/webkit/data/layout_tests/chrome/plugins/get-url-with-blank-target.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<html>
-<script>
-var NPERR_NO_ERROR = 0;
-var NPERR_GENERIC_ERROR = 1;
-
-function callback(result) {
- var d = document.getElementById('result');
-
- if (result == NPERR_NO_ERROR)
- d.innerHTML = "SUCCESS"
- else
- d.innerHTML = "FAILED - got error code " + result
-
- layoutTestController.notifyDone();
-}
-
-function runtest() {
- if (window.layoutTestController) {
- layoutTestController.dumpAsText();
- layoutTestController.waitUntilDone();
- layoutTestController.setCanOpenWindows();
- // The new window should close immediately after it opens and finishes
- // loading. The setTimeout allows NPP_URLNotify to run before the
- // window is closed.
- plg.getURLNotify("data:text/html,<body onload='setTimeout(function(){close()},0)'></body>", "_blank", "callback");
- } else {
- document.write("Cannot run interactively");
- }
-}
-</script>
-<body onload="runtest()">
-<embed id="plg" type="application/x-webkit-test-netscape"></embed>
-This tests that we won't crash when a plugin tries to open an URL in a new window when the application does not create the window. If this test is successful, the word SUCCESS should be seen below.
-<div id="result">FAILED</div>
-</body>
-</html>