summaryrefslogtreecommitdiff
path: root/testing/resources/javascript/annot_props.in
blob: 9c50e7252fc4ad135da7936c138549657f62b600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{{header}}
{{object 1 0}} <<
  /Type /Catalog
  /Pages 2 0 R
  /OpenAction 20 0 R
>>
endobj
{{object 2 0}} <<
  /Type /Pages
  /Count 1
  /Kids [10 0 R]
>>
endobj
{{object 10 0}} <<
  /Type /Page
  /Parent 2 0 R
  /MediaBox [0 0 612 792]
  /Annots [22 0 R]
  /Tabs /R
>>
endobj
{{object 20 0}} <<
  /Type /Action
  /S /JavaScript
  /JS 21 0 R
>>
endobj
{{object 21 0}} <<
>>
stream
app.alert("Test that non-existent annot fetch gives error");
try {
  var nonesuch = this.getAnnot(0, "nonesuch");
  app.alert("nonesuch: " + typeof nonesuch);
} catch (e) {
  app.alert("SUCCESS: " + e);
}
app.alert("Test initial cases");
try {
  var annot = this.getAnnot(0, "Annot-1");
  app.alert("annot: " + typeof annot);
  app.alert("hidden: " + annot.hidden);
  app.alert("name: " + annot.name);
  app.alert("type: " + annot.type);

  annot.hidden = true;
  app.alert("hidden now: " + annot.hidden);
  annot.hidden = false;
  app.alert("hidden now: " + annot.hidden);

  annot.name = "nonesuch";
  app.alert("name now: " + annot.name);
} catch (e) {
  app.alert("ERROR: " + e);
}
app.alert("Test assigment to read-only property gives error");
try {
  annot.type = 42;
} catch (e) {
  app.alert("SUCCESS: " + e);
}
app.alert("Test lookup after name change gives error");
try {
  annot = this.getAnnot(0, "Annot-1");
  app.alert("annot after name change: " + typeof annot);
} catch (e) {
  app.alert("SUCCESS: " + e);
}
app.alert("Test lookup under changed name");
try {
  nonesuch = this.getAnnot(0, "nonesuch");
  app.alert("nonesuch after name change: " + typeof nonesuch);
} catch (e) {
  app.alert("ERROR: " + e);
}
endstream
endobj
{{object 22 0}} <<
  /Type /Annot
  /Subtype /Highlight
  /Rect [475 681 512 690]
  /NM (Annot-1)
  /F 2
  /QuadPoints [475 688 512 688 475 679 512 679]
  /C [0.0001108646 0.001760244 0.9982184]
  /Contents ()
>>
endobj
{{xref}}
{{trailer}}
{{startxref}}
%%EOF