summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/liveconnect-security-exception.html
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:41 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:41 -0800
commit648161bb0edfc3d43db63caed5cc5213bc6cb78f (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /WebCore/manual-tests/liveconnect-security-exception.html
parenta65af38181ac7d34544586bdb5cd004de93897ad (diff)
downloadexternal_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.zip
external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.gz
external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.bz2
auto import from //depot/cupcake/@135843
Diffstat (limited to 'WebCore/manual-tests/liveconnect-security-exception.html')
-rw-r--r--WebCore/manual-tests/liveconnect-security-exception.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/WebCore/manual-tests/liveconnect-security-exception.html b/WebCore/manual-tests/liveconnect-security-exception.html
deleted file mode 100644
index 8bce752..0000000
--- a/WebCore/manual-tests/liveconnect-security-exception.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<html>
-<head>
-<!--
-Sorry for the hackery in this test. Currently, we have no elegant way to
-catch Java errors and print out an intelligent response.
--->
-
-<script>
-function loadApplet() {
- // force Safari to load and cache the TestApplet class
- document.getElementById('applet').method();
-}
-</script>
-</head>
-<body onload="loadApplet();window.open('resources/liveconnect-security-exception-popup.html', 'w', 'height=300, width=300');">
-<p>This test checks for a regression against <i>rdar://problem/4151132 REGRESSION: Some applet liveconnect calls throws privilege exception.</i>.</p>
-<p>To test:</p>
-<ol>
-<li>Disable popup blocking.</li>
-<li>Select the window titled "popup window."</li>
-<li>From the debug menu, select "Show JavaScript console." This will allow you to see errors thrown in the popup window by the Java Virtual Machine. If there are any, the test has failed.</li>
-<li>If the text in the popup window does not match the text below, the test has failed:<br>
-applet.field returned 1<br>
-incremented applet.field by 1<br>
-applet.field returned 2<br>
-applet.method() returned 1<br>
-</li>
-<li>Otherwise, the test has passed.</li>
-</ol>
-<applet id='applet' code="TestApplet.class" codebase="resources"></applet>
-</body>
-</html>