Remove outdated list style types
[chromium-blink-merge.git] / third_party / WebKit / ManualTests / java-string-object-type.html
blobef74626b5773c0295175773fd0fbdf9bdba19169
1 <html>
2 <body onload="test();">
3 <script>
4 function test()
6 document.getElementById("results").innerHTML =
7 "<p>Type of Java String object is: " + typeof(document.getElementById('applet').getString());
9 </script>
11 <p>This test verifies that Java String objects are of the correct type when returned to JavaScript.</p>
13 <p>On success, the Java String object will be of type &quot;object&quot;.<br/>
14 On failure, the type will be &quot;function&quot;.<br/>
15 See Radar 4212626.</p>
17 <div id="results">
18 </div>
20 <APPLET id="applet" code="StringTypeTest.class" codebase="resources" width="0" height="0">
21 </APPLET>
23 </body>
24 </html>