]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Typo. Sorry.
authorJeremias Maerki <jeremias@apache.org>
Sun, 13 Nov 2005 15:02:06 +0000 (15:02 +0000)
committerJeremias Maerki <jeremias@apache.org>
Sun, 13 Nov 2005 15:02:06 +0000 (15:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@333014 13f79535-47bb-0310-9956-ffa450edef68

test/layoutengine/standard-testcases/block-container_content_size_percentage.xml [new file with mode: 0644]
test/layoutengine/standard-testcases/block-container_content_size_precentage.xml [deleted file]

diff --git a/test/layoutengine/standard-testcases/block-container_content_size_percentage.xml b/test/layoutengine/standard-testcases/block-container_content_size_percentage.xml
new file mode 100644 (file)
index 0000000..de4aaa0
--- /dev/null
@@ -0,0 +1,83 @@
+<?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 if block-container provides the right base values for percentage evaluations for its children.
+    </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/>
+        </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="100pt" height="100pt" background-color="yellow">
+            <fo:block-container width="50%" height="50%" background-color="orange"><fo:block>50% nested</fo:block></fo:block-container>
+          </fo:block-container>
+          <fo:block-container width="100pt" background-color="yellow" space-before="10pt">
+            <fo:block-container width="50%" height="10%" background-color="orange"><fo:block>50% nested autoheight</fo:block></fo:block-container>
+          </fo:block-container>
+          <fo:block-container width="100pt" height="100pt" absolute-position="absolute" left="150pt" top="50pt" background-color="yellow">
+            <fo:block-container width="50%" height="50%" background-color="orange"><fo:block>50% nested abs</fo:block></fo:block-container>
+          </fo:block-container>
+          <fo:block-container width="100pt" absolute-position="absolute" left="150pt" top="200pt" background-color="yellow">
+            <fo:block-container width="50%" height="10%" background-color="orange"><fo:block>50% nested abs autoheight</fo:block></fo:block-container>
+          </fo:block-container>
+        </fo:flow>
+      </fo:page-sequence>
+    </fo:root>
+  </fo>
+  <checks>
+    <eval expected="360000" xpath="//regionBody/@bpd"/>
+    <eval expected="360000" xpath="//regionBody/@ipd"/>
+
+    <!-- relative -->
+    <eval expected="100000" xpath="//flow/block[1]/@bpd"/>
+    <eval expected="100000" xpath="//flow/block[1]/@ipd"/>
+    <eval expected="50000" xpath="//flow/block[1]/block[1]/block[1]/@bpd"/>
+    <eval expected="50000" xpath="//flow/block[1]/block[1]/block[1]/@ipd"/>
+
+    <!-- relative with autoheight -->
+    <!-- from the spec: If that dimension is not specified explicitly (i.e., it depends on 
+         content's blockprogression-dimension), the value is interpreted as "auto". -->
+    <!-- The 10% are ignored in this case. -->
+    <eval expected="28800" xpath="//flow/block[2]/@bpd"/> <!-- 2 lines -->
+    <eval expected="100000" xpath="//flow/block[2]/@ipd"/>
+    <eval expected="28800" xpath="//flow/block[2]/block[1]/block[1]/@bpd"/>
+    <eval expected="50000" xpath="//flow/block[2]/block[1]/block[1]/@ipd"/>
+
+    <!-- absolute -->
+    <eval expected="100000" xpath="//flow/block[3]/@bpd"/>
+    <eval expected="100000" xpath="//flow/block[3]/@ipd"/>
+    <eval expected="50000" xpath="//flow/block[3]/block[1]/block[1]/@bpd"/>
+    <eval expected="50000" xpath="//flow/block[3]/block[1]/block[1]/@ipd"/>
+
+    <!-- absolute with autoheight -->
+    <!-- from the spec: If that dimension is not specified explicitly (i.e., it depends on 
+         content's blockprogression-dimension), the value is interpreted as "auto". -->
+    <!-- The 10% are ignored in this case. -->
+    <eval expected="43200" xpath="//flow/block[4]/@bpd"/> <!-- 3 lines -->
+    <eval expected="100000" xpath="//flow/block[4]/@ipd"/>
+    <eval expected="43200" xpath="//flow/block[4]/block[1]/block[1]/@bpd"/>
+    <eval expected="50000" xpath="//flow/block[4]/block[1]/block[1]/@ipd"/>
+  </checks>
+</testcase>
diff --git a/test/layoutengine/standard-testcases/block-container_content_size_precentage.xml b/test/layoutengine/standard-testcases/block-container_content_size_precentage.xml
deleted file mode 100644 (file)
index de4aaa0..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-<?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 if block-container provides the right base values for percentage evaluations for its children.
-    </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/>
-        </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="100pt" height="100pt" background-color="yellow">
-            <fo:block-container width="50%" height="50%" background-color="orange"><fo:block>50% nested</fo:block></fo:block-container>
-          </fo:block-container>
-          <fo:block-container width="100pt" background-color="yellow" space-before="10pt">
-            <fo:block-container width="50%" height="10%" background-color="orange"><fo:block>50% nested autoheight</fo:block></fo:block-container>
-          </fo:block-container>
-          <fo:block-container width="100pt" height="100pt" absolute-position="absolute" left="150pt" top="50pt" background-color="yellow">
-            <fo:block-container width="50%" height="50%" background-color="orange"><fo:block>50% nested abs</fo:block></fo:block-container>
-          </fo:block-container>
-          <fo:block-container width="100pt" absolute-position="absolute" left="150pt" top="200pt" background-color="yellow">
-            <fo:block-container width="50%" height="10%" background-color="orange"><fo:block>50% nested abs autoheight</fo:block></fo:block-container>
-          </fo:block-container>
-        </fo:flow>
-      </fo:page-sequence>
-    </fo:root>
-  </fo>
-  <checks>
-    <eval expected="360000" xpath="//regionBody/@bpd"/>
-    <eval expected="360000" xpath="//regionBody/@ipd"/>
-
-    <!-- relative -->
-    <eval expected="100000" xpath="//flow/block[1]/@bpd"/>
-    <eval expected="100000" xpath="//flow/block[1]/@ipd"/>
-    <eval expected="50000" xpath="//flow/block[1]/block[1]/block[1]/@bpd"/>
-    <eval expected="50000" xpath="//flow/block[1]/block[1]/block[1]/@ipd"/>
-
-    <!-- relative with autoheight -->
-    <!-- from the spec: If that dimension is not specified explicitly (i.e., it depends on 
-         content's blockprogression-dimension), the value is interpreted as "auto". -->
-    <!-- The 10% are ignored in this case. -->
-    <eval expected="28800" xpath="//flow/block[2]/@bpd"/> <!-- 2 lines -->
-    <eval expected="100000" xpath="//flow/block[2]/@ipd"/>
-    <eval expected="28800" xpath="//flow/block[2]/block[1]/block[1]/@bpd"/>
-    <eval expected="50000" xpath="//flow/block[2]/block[1]/block[1]/@ipd"/>
-
-    <!-- absolute -->
-    <eval expected="100000" xpath="//flow/block[3]/@bpd"/>
-    <eval expected="100000" xpath="//flow/block[3]/@ipd"/>
-    <eval expected="50000" xpath="//flow/block[3]/block[1]/block[1]/@bpd"/>
-    <eval expected="50000" xpath="//flow/block[3]/block[1]/block[1]/@ipd"/>
-
-    <!-- absolute with autoheight -->
-    <!-- from the spec: If that dimension is not specified explicitly (i.e., it depends on 
-         content's blockprogression-dimension), the value is interpreted as "auto". -->
-    <!-- The 10% are ignored in this case. -->
-    <eval expected="43200" xpath="//flow/block[4]/@bpd"/> <!-- 3 lines -->
-    <eval expected="100000" xpath="//flow/block[4]/@ipd"/>
-    <eval expected="43200" xpath="//flow/block[4]/block[1]/block[1]/@bpd"/>
-    <eval expected="50000" xpath="//flow/block[4]/block[1]/block[1]/@ipd"/>
-  </checks>
-</testcase>