| OLD | NEW |
| 1 {{header}} | 1 {{header}} |
| 2 {{object 1 0}} << | 2 {{object 1 0}} << |
| 3 /Type /Catalog | 3 /Type /Catalog |
| 4 /Pages 2 0 R | 4 /Pages 2 0 R |
| 5 /OpenAction 10 0 R | 5 /OpenAction 10 0 R |
| 6 >> | 6 >> |
| 7 endobj | 7 endobj |
| 8 {{object 2 0}} << | 8 {{object 2 0}} << |
| 9 /Type /Pages | 9 /Type /Pages |
| 10 /Count 1 | 10 /Count 1 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 {{object 10 0}} << | 27 {{object 10 0}} << |
| 28 /Type /Action | 28 /Type /Action |
| 29 /S /JavaScript | 29 /S /JavaScript |
| 30 /JS 11 0 R | 30 /JS 11 0 R |
| 31 >> | 31 >> |
| 32 endobj | 32 endobj |
| 33 % JS program to exexute | 33 % JS program to exexute |
| 34 {{object 11 0}} << | 34 {{object 11 0}} << |
| 35 >> | 35 >> |
| 36 stream | 36 stream |
| 37 app.alert("This test passes if alert() logs output under the test utility."); | 37 var result; |
| 38 app.alert("message", 1, 2, "title"); | |
| 39 app.alert({"cMsg": "message", "cTitle": "title"}); | |
| 40 app.alert({"cMsg": "message", "cTitle": "title", "nIcon": 3, "nType": 4}); | |
| 41 app.alert(undefined); | |
| 42 app.alert(null); | |
| 43 app.alert(true); | |
| 44 app.alert(false); | |
| 45 app.alert(42); | |
| 46 app.alert([1, 2, 3]); | |
| 47 app.alert([1, 2, {"color": "red"}]); | |
| 48 app.alert({"color": "red"}, 5, 6, "title"); | |
| 49 try { | 38 try { |
| 50 app.alert(); | 39 result = app.response("question"); |
| 40 app.alert("result: " + result); |
| 41 result = app.response("question", "title", "default", true, "label"); |
| 42 app.alert("result: " + result); |
| 43 result = app.response({"cQuestion": "question"}); |
| 44 app.alert("result: " + result); |
| 45 result = app.response({ |
| 46 "cQuestion": "question", |
| 47 "cTitle": "title", |
| 48 "cDefault": "default", |
| 49 "bPassword": true, |
| 50 "cLabel": "label" |
| 51 }); |
| 52 app.alert("result: " + result); |
| 53 } catch (e) { |
| 54 app.alert("unexpected error " + e); |
| 55 } |
| 56 try { |
| 57 app.response(); |
| 58 app.alert("unexpected success"); |
| 51 } catch (e) { | 59 } catch (e) { |
| 52 app.alert("Caught expected error " + e); | 60 app.alert("Caught expected error " + e); |
| 53 } | 61 } |
| 54 try { | 62 try { |
| 55 app.alert({}); | 63 app.response({}); |
| 64 app.alert("unexpected success"); |
| 56 } catch (e) { | 65 } catch (e) { |
| 57 app.alert("Caught expected error " + e); | 66 app.alert("Caught expected error " + e); |
| 58 } | 67 } |
| 59 try { | |
| 60 app.alert({"color": "red", "size": 42}); | |
| 61 } catch (e) { | |
| 62 app.alert("Caught expected error " + e); | |
| 63 } | |
| 64 endstream | 68 endstream |
| 65 endobj | 69 endobj |
| 66 {{xref}} | 70 {{xref}} |
| 67 trailer << | 71 trailer << |
| 68 /Root 1 0 R | 72 /Root 1 0 R |
| 69 >> | 73 >> |
| 70 {{startxref}} | 74 {{startxref}} |
| 71 %%EOF | 75 %%EOF |
| OLD | NEW |