mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
29 lines
677 B
TypeScript
29 lines
677 B
TypeScript
|
|
|
|
/**
|
|
* @summary Test for the typage.
|
|
*/
|
|
function testTypage() {
|
|
var applet: HTMLAppletElement = <HTMLAppletElement>document.getElementById('applet');
|
|
var javaApplet: JavaApplet = applet;
|
|
}
|
|
|
|
/**
|
|
* @summary Test for the java applet status.
|
|
*/
|
|
function testStatus() {
|
|
var applet: JavaApplet = <JavaApplet>document.getElementById('applet');
|
|
var status: number = applet.status;
|
|
}
|
|
|
|
/**
|
|
* @summary Test for the handlers.
|
|
*/
|
|
function testHandlers() {
|
|
var applet: JavaApplet = <JavaApplet>document.getElementById('applet');
|
|
|
|
var handler: Function = () => {};
|
|
applet.onError = handler;
|
|
applet.onLoad = handler;
|
|
applet.onStop = handler;
|
|
} |