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

Side by Side Diff: webkit/data/layout_tests/chrome/fast/dom/java-applet-calls.html

Issue 55025: Remove tests that have been upstreamed. Update test_expectations list... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <HTML>
2 <HEAD>
3 <TITLE>Call Java from JS</TITLE>
4 <script type="text/javascript">
5 if (window.layoutTestController)
6 layoutTestController.dumpAsText();
7 function runTest() {
8 try {
9 document.testapplet.setString("abcdefg");
10 if (document.testapplet.getString() == "abcdefg")
11 document.getElementById("result").innerHTML = "TEST PASSED!";
12 } catch (e) {
13 }
14 }
15 </script>
16
17 </HEAD>
18 <BODY onload="runTest()">
19 Requires Java plugin been installed.<br>
20 This tests that calling functions on Java Applet works.<br>
21 <div id="result">FAIL</div>
22 <APPLET CODEBASE="." CODE="TestApplet.class" WIDTH=1 HEIGHT=1 NAME="testapplet">
23 </APPLET>
24 </BODY>
25 </HTML>
26
27
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698