1title[icon=1,type=2]: message 2Alert: PASS: app.alert('message', 1, 2, 'title') = 0 3title: message 4Alert: PASS: app.alert({'cMsg': 'message', 'cTitle': 'title'}) = 0 5title[icon=3,type=4]: message 6Alert: PASS: app.alert({'cMsg': 'message', 'cTitle': 'title', 'nIcon': 3, 'nType': 4}) = 0 7Alert: undefined 8Alert: PASS: app.alert(undefined) = 0 9Alert: null 10Alert: PASS: app.alert(null) = 0 11Alert: true 12Alert: PASS: app.alert(true) = 0 13Alert: false 14Alert: PASS: app.alert(false) = 0 15Alert: 42 16Alert: PASS: app.alert(42) = 0 17Alert: [1, 2, 3] 18Alert: PASS: app.alert([1, 2, 3]) = 0 19Alert: [1, 2, [object Object]] 20Alert: PASS: app.alert([1, 2, {'color': 'red'}]) = 0 21title[icon=5,type=6]: [object Object] 22Alert: PASS: app.alert({'color': 'red'}, 5, 6, 'title') = 0 23Alert: PASS: app.alert() threw app.alert: Incorrect number of parameters passed to function. 24Alert: PASS: app.alert({}) threw app.alert: Incorrect number of parameters passed to function. 25Alert: PASS: app.alert({'color': 'red', 'size': 42}) threw app.alert: Incorrect number of parameters passed to function. 26BEEP!!! 1 27Alert: PASS: app.beep(1) = undefined 28Alert: FAIL: app.browseForDoc() = undefined, expected to throw 29Alert: PASS: app.execDialog() = undefined 30Alert: PASS: app.execMenuItem() threw app.execMenuItem: Operation not supported. 31Alert: PASS: app.findComponent() = undefined 32Alert: PASS: app.goBack() = undefined 33Alert: PASS: app.goForward() = undefined 34Alert: PASS: app.launchURL() = undefined 35Alert: PASS: app.newDoc() threw app.newDoc: Operation not supported. 36Alert: PASS: app.newFDF() = undefined 37Alert: PASS: app.openDoc() threw app.openDoc: Operation not supported. 38Alert: PASS: app.openFDF() = undefined 39Alert: PASS: app.popUpMenuEx() threw app.popUpMenuEx: Operation not supported. 40Alert: PASS: app.popUpMenu() threw app.popUpMenu: Operation not supported. 41Mail Msg: 1, to=, cc=, bcc=, subject=, body= 42Alert: PASS: app.mailMsg(true) = undefined 43Mail Msg: 0, to=user@example.com, cc=, bcc=, subject=, body= 44Alert: PASS: app.mailMsg(false, 'user@example.com') = undefined 45Mail Msg: 0, to=user@example.com, cc=cc@example.com, bcc=bcc@example.com, subject=subject, body=body 46Alert: PASS: app.mailMsg(false, 'user@example.com', 'cc@example.com', 'bcc@example.com', 'subject', 'body') = undefined 47Mail Msg: 1, to=, cc=, bcc=, subject=, body= 48Alert: PASS: app.mailMsg({'bUI': true}) = undefined 49Mail Msg: 0, to=user@example.com, cc=, bcc=, subject=, body= 50Alert: PASS: app.mailMsg({'bUI': false, 'cTo': 'user@example.com'}) = undefined 51Mail Msg: 0, to=user@example.com, cc=cc@example.com, bcc=bcc@example.com, subject=subject, body=body 52Alert: PASS: app.mailMsg({'bUI': false, 'cTo': 'user@example.com', 'cCc': 'cc@example.com', 'cBcc': 'bcc@example.com', 'cSubject': 'subject', 'cMsg': 'body'}) = undefined 53Alert: PASS: app.mailMsg() threw app.mailMsg: Incorrect number of parameters passed to function. 54Alert: PASS: app.mailMsg(false) threw app.mailMsg: Incorrect number of parameters passed to function. 55Alert: PASS: app.mailMsg({'color': 'red', 'size': 42}) threw app.mailMsg: Incorrect number of parameters passed to function. 56PDF: question, defaultValue=, label=, isPassword=0, length=2048 57Alert: PASS: app.response('question') = No 58title: question, defaultValue=default, label=label, isPassword=1, length=2048 59Alert: PASS: app.response('question', 'title', 'default', true, 'label') = No 60PDF: question, defaultValue=, label=, isPassword=0, length=2048 61Alert: PASS: app.response({'cQuestion': 'question'}) = No 62title: question, defaultValue=default, label=label, isPassword=1, length=2048 63Alert: PASS: app.response({'cQuestion': 'question', 'cTitle': 'title', 'cDefault': 'default', 'bPassword': true, 'cLabel': 'label'}) = No 64Alert: PASS: app.response() threw app.response: Incorrect number of parameters passed to function. 65Alert: PASS: app.response({}) threw app.response: Incorrect number of parameters passed to function. 66