blob: c5ea1020e6caa47f4e355b002e19cc99c9322946 (
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2005 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- $Id$ -->
<testcase>
<info>
<p>
This test checks in-flow block-containers with reference orientation.
</p>
</info>
<fo>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:svg="http://www.w3.org/2000/svg">
<fo:layout-master-set>
<fo:simple-page-master master-name="normal" page-width="5in" page-height="5in">
<fo:region-body column-count="2"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="normal" white-space-collapse="true">
<fo:flow flow-name="xsl-region-body">
<fo:block-container width="120pt" height="80pt" margin="0pt" border="solid 5pt" border-top-color="red" reference-orientation="0">
<!-- note: start|end-indent="0pt" is needed to reset the start-indent otherwise inherited from the parent. -->
<fo:block start-indent="0pt" end-indent="0pt" text-align-last="justify" background-color="orange">ro = 0</fo:block>
</fo:block-container>
<fo:block-container width="80pt" height="120pt" margin="0pt" border="solid 5pt" border-top-color="red" reference-orientation="90">
<fo:block start-indent="0pt" end-indent="0pt" text-align-last="justify" background-color="orange">ro = 90</fo:block>
</fo:block-container>
<fo:block-container width="120pt" height="80pt" margin="0pt" border="solid 5pt" border-top-color="red" reference-orientation="180">
<fo:block start-indent="0pt" end-indent="0pt" text-align-last="justify" background-color="orange">ro = 180</fo:block>
</fo:block-container>
<fo:block-container width="80pt" height="120pt" margin="0pt" border="solid 5pt" border-top-color="red" reference-orientation="270">
<fo:block start-indent="0pt" end-indent="0pt" text-align-last="justify" background-color="orange">ro = 270</fo:block>
</fo:block-container>
<fo:block-container width="120pt" height="80pt" margin="0pt" border="solid 5pt" border-top-color="red" reference-orientation="0">
<!-- note: start|end-indent="0pt" is needed to reset the start-indent otherwise inherited from the parent. -->
<fo:block start-indent="0pt" end-indent="0pt" text-align-last="justify" background-color="orange">ro = 0</fo:block>
</fo:block-container>
<fo:block-container width="80pt" height="120pt" margin="0pt" border="solid 5pt" border-top-color="red" reference-orientation="-90">
<fo:block start-indent="0pt" end-indent="0pt" text-align-last="justify" background-color="orange">ro = -90</fo:block>
</fo:block-container>
<fo:block-container width="120pt" height="80pt" margin="0pt" border="solid 5pt" border-top-color="red" reference-orientation="-180">
<fo:block start-indent="0pt" end-indent="0pt" text-align-last="justify" background-color="orange">ro = -180</fo:block>
</fo:block-container>
<fo:block-container width="80pt" height="120pt" margin="0pt" border="solid 5pt" border-top-color="red" reference-orientation="-270">
<fo:block start-indent="0pt" end-indent="0pt" text-align-last="justify" background-color="orange">ro = -270</fo:block>
</fo:block-container>
</fo:flow>
</fo:page-sequence>
</fo:root>
</fo>
<checks>
<!-- first block-container -->
<true xpath="//mainReference/span/flow[1]/block[1]/@is-viewport-area"/>
<eval expected="120000" xpath="//mainReference/span/flow[1]/block[1]/@ipd"/>
<eval expected="130000" xpath="//mainReference/span/flow[1]/block[1]/@ipda"/>
<eval expected="80000" xpath="//mainReference/span/flow[1]/block[1]/@bpd"/>
<eval expected="90000" xpath="//mainReference/span/flow[1]/block[1]/@bpda"/>
<eval expected="[1.0 0.0 0.0 1.0 5000.0 5000.0]" xpath="//mainReference/span/flow[1]/block[1]/@ctm"/>
<!-- -> reference area -->
<true xpath="//mainReference/span/flow[1]/block[1]/block[1]/@is-reference-area"/>
<!-- -> containing block -->
<eval expected="120000" xpath="//mainReference/span/flow[1]/block[1]/block[1]/block[1]/@ipd"/>
<eval expected="120000" xpath="//mainReference/span/flow[1]/block[1]/block[1]/block[1]/@ipda"/>
<eval expected="14400" xpath="//mainReference/span/flow[1]/block[1]/block[1]/block[1]/@bpd"/>
<eval expected="14400" xpath="//mainReference/span/flow[1]/block[1]/block[1]/block[1]/@bpda"/>
<!-- second block-container -->
<true xpath="//mainReference/span/flow[1]/block[2]/@is-viewport-area"/>
<eval expected="120000" xpath="//mainReference/span/flow[1]/block[2]/@ipd"/>
<eval expected="130000" xpath="//mainReference/span/flow[1]/block[2]/@ipda"/>
<eval expected="80000" xpath="//mainReference/span/flow[1]/block[2]/@bpd"/>
<eval expected="90000" xpath="//mainReference/span/flow[1]/block[2]/@bpda"/>
<eval expected="[0.0 -1.0 1.0 0.0 5000.0 85000.0]" xpath="//mainReference/span/flow[1]/block[2]/@ctm"/>
<!-- -> reference area -->
<true xpath="//mainReference/span/flow[1]/block[2]/block[1]/@is-reference-area"/>
<!-- -> containing block -->
<eval expected="80000" xpath="//mainReference/span/flow[1]/block[2]/block[1]/block[1]/@ipd"/>
<eval expected="80000" xpath="//mainReference/span/flow[1]/block[2]/block[1]/block[1]/@ipda"/>
<eval expected="14400" xpath="//mainReference/span/flow[1]/block[2]/block[1]/block[1]/@bpd"/>
<eval expected="14400" xpath="//mainReference/span/flow[1]/block[2]/block[1]/block[1]/@bpda"/>
<!-- third block-container -->
<true xpath="//mainReference/span/flow[1]/block[3]/@is-viewport-area"/>
<eval expected="120000" xpath="//mainReference/span/flow[1]/block[3]/@ipd"/>
<eval expected="130000" xpath="//mainReference/span/flow[1]/block[3]/@ipda"/>
<eval expected="80000" xpath="//mainReference/span/flow[1]/block[3]/@bpd"/>
<eval expected="90000" xpath="//mainReference/span/flow[1]/block[3]/@bpda"/>
<eval expected="[-1.0 -0.0 0.0 -1.0 125000.0 85000.0]" xpath="//mainReference/span/flow[1]/block[3]/@ctm"/>
<!-- -> reference area -->
<true xpath="//mainReference/span/flow[1]/block[3]/block[1]/@is-reference-area"/>
<!-- -> containing block -->
<eval expected="120000" xpath="//mainReference/span/flow[1]/block[3]/block[1]/block[1]/@ipd"/>
<eval expected="120000" xpath="//mainReference/span/flow[1]/block[3]/block[1]/block[1]/@ipda"/>
<eval expected="14400" xpath="//mainReference/span/flow[1]/block[3]/block[1]/block[1]/@bpd"/>
<eval expected="14400" xpath="//mainReference/span/flow[1]/block[3]/block[1]/block[1]/@bpda"/>
<!-- fourth block-container -->
<true xpath="//mainReference/span/flow[1]/block[4]/@is-viewport-area"/>
<eval expected="120000" xpath="//mainReference/span/flow[1]/block[4]/@ipd"/>
<eval expected="130000" xpath="//mainReference/span/flow[1]/block[4]/@ipda"/>
<eval expected="80000" xpath="//mainReference/span/flow[1]/block[4]/@bpd"/>
<eval expected="90000" xpath="//mainReference/span/flow[1]/block[4]/@bpda"/>
<eval expected="[0.0 1.0 -1.0 0.0 125000.0 5000.0]" xpath="//mainReference/span/flow[1]/block[4]/@ctm"/>
<!-- -> reference area -->
<true xpath="//mainReference/span/flow[1]/block[4]/block[1]/@is-reference-area"/>
<!-- -> containing block -->
<eval expected="80000" xpath="//mainReference/span/flow[1]/block[4]/block[1]/block[1]/@ipd"/>
<eval expected="80000" xpath="//mainReference/span/flow[1]/block[4]/block[1]/block[1]/@ipda"/>
<eval expected="14400" xpath="//mainReference/span/flow[1]/block[4]/block[1]/block[1]/@bpd"/>
<eval expected="14400" xpath="//mainReference/span/flow[1]/block[4]/block[1]/block[1]/@bpda"/>
<!-- firth block-container (same as first, no need to check) -->
<!-- sixth block-container (same as fourth) -->
<true xpath="//mainReference/span/flow[2]/block[2]/@is-viewport-area"/>
<eval expected="120000" xpath="//mainReference/span/flow[2]/block[2]/@ipd"/>
<eval expected="130000" xpath="//mainReference/span/flow[2]/block[2]/@ipda"/>
<eval expected="80000" xpath="//mainReference/span/flow[2]/block[2]/@bpd"/>
<eval expected="90000" xpath="//mainReference/span/flow[2]/block[2]/@bpda"/>
<eval expected="[0.0 1.0 -1.0 0.0 125000.0 5000.0]" xpath="//mainReference/span/flow[2]/block[2]/@ctm"/>
<!-- -> reference area -->
<true xpath="//mainReference/span/flow[2]/block[2]/block[1]/@is-reference-area"/>
<!-- -> containing block -->
<eval expected="80000" xpath="//mainReference/span/flow[2]/block[2]/block[1]/block[1]/@ipd"/>
<eval expected="80000" xpath="//mainReference/span/flow[2]/block[2]/block[1]/block[1]/@ipda"/>
<eval expected="14400" xpath="//mainReference/span/flow[2]/block[2]/block[1]/block[1]/@bpd"/>
<eval expected="14400" xpath="//mainReference/span/flow[2]/block[2]/block[1]/block[1]/@bpda"/>
<!-- seventh block-container (same as third) -->
<true xpath="//mainReference/span/flow[2]/block[3]/@is-viewport-area"/>
<eval expected="120000" xpath="//mainReference/span/flow[2]/block[3]/@ipd"/>
<eval expected="130000" xpath="//mainReference/span/flow[2]/block[3]/@ipda"/>
<eval expected="80000" xpath="//mainReference/span/flow[2]/block[3]/@bpd"/>
<eval expected="90000" xpath="//mainReference/span/flow[2]/block[3]/@bpda"/>
<eval expected="[-1.0 -0.0 0.0 -1.0 125000.0 85000.0]" xpath="//mainReference/span/flow[2]/block[3]/@ctm"/>
<!-- -> reference area -->
<true xpath="//mainReference/span/flow[2]/block[3]/block[1]/@is-reference-area"/>
<!-- -> containing block -->
<eval expected="120000" xpath="//mainReference/span/flow[2]/block[3]/block[1]/block[1]/@ipd"/>
<eval expected="120000" xpath="//mainReference/span/flow[2]/block[3]/block[1]/block[1]/@ipda"/>
<eval expected="14400" xpath="//mainReference/span/flow[2]/block[3]/block[1]/block[1]/@bpd"/>
<eval expected="14400" xpath="//mainReference/span/flow[2]/block[3]/block[1]/block[1]/@bpda"/>
<!-- eighth block-container (same as second) -->
<true xpath="//mainReference/span/flow[2]/block[4]/@is-viewport-area"/>
<eval expected="120000" xpath="//mainReference/span/flow[2]/block[4]/@ipd"/>
<eval expected="130000" xpath="//mainReference/span/flow[2]/block[4]/@ipda"/>
<eval expected="80000" xpath="//mainReference/span/flow[2]/block[4]/@bpd"/>
<eval expected="90000" xpath="//mainReference/span/flow[2]/block[4]/@bpda"/>
<eval expected="[0.0 -1.0 1.0 0.0 5000.0 85000.0]" xpath="//mainReference/span/flow[2]/block[4]/@ctm"/>
<!-- -> reference area -->
<true xpath="//mainReference/span/flow[2]/block[4]/block[1]/@is-reference-area"/>
<!-- -> containing block -->
<eval expected="80000" xpath="//mainReference/span/flow[2]/block[4]/block[1]/block[1]/@ipd"/>
<eval expected="80000" xpath="//mainReference/span/flow[2]/block[4]/block[1]/block[1]/@ipda"/>
<eval expected="14400" xpath="//mainReference/span/flow[2]/block[4]/block[1]/block[1]/@bpd"/>
<eval expected="14400" xpath="//mainReference/span/flow[2]/block[4]/block[1]/block[1]/@bpda"/>
</checks>
</testcase>
|