Get foreground tab on Android
[chromium-blink-merge.git] / content / test / data / npapi / npapi.js
blob6c3ef8d746d01fb5865211e07600b7e72ffaf196
1 //
2 // This script provides some mechanics for testing NPAPI
3 //
5 /* public */ function onSuccess(name, id)
7 setTimeout(onFinished, 0, name, id, "OK");
10 /* public */ function onFailure(name, id, status)
12 setTimeout(onFinished, 0, name, id, status);
17 // Finish running a test by setting the status
18 // and the cookie.
19 /* private */ function onFinished(name, id, result)
21 var statusPanel = document.getElementById("statusPanel");
22 if (statusPanel) {
23 statusPanel.innerHTML = result;
26 if (result == "OK")
27 document.title = "OK";
28 else
29 document.title = "FAIL";