DefinitelyTyped/types/java-applet/java-applet-tests.ts

30 lines
678 B
TypeScript
Raw Normal View History

2016-05-10 19:22:25 +00:00
/**
* @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;
2020-05-15 02:20:31 +00:00
}