applet
provides a keyboard mechanism to return focus to the parent window.
applet
may not provide a keyboard mechanism to return focus to the parent window.
Question | Does this applet provide a keyboard mechanism that returns focus to the parent window? |
---|---|
PASS | applet provides a keyboard mechanism that returns focus to the parent window. |
FAIL | applet does not provide a keyboard mechanism that returns focus to the parent window. |
applet
.applet
is to repeatedly press the 'tab' key until the keyboard focus leaves the applet
.applet
provides a keyboard mechanism to return focus to the parent window.applet
or do not use it.applet
has a keyboard mechanism that returns focus to the parent window.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <title>ATRC Testfile - Check #258.2 - Positive</title> </head> <body> <p>The following applet is not working. This is just an example.</p> <applet code="Press2.class" width="500" height="500"></applet> </body> </html>
applet
does not have a keyboard mechanism that returns focus to the parent window.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <title>ATRC Testfile - Check #258.1 - Positive</title> </head> <body> <p>The following applet is not working. This is just an example.</p> <applet code="Press1.class" width="500" height="500"> </applet> </body> </html>