You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

page-number-citation_complex_2.xml 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <!-- $Id$ -->
  17. <testcase>
  18. <info>
  19. <p>
  20. This test checks page-number-citations with all combinations of
  21. inline-level IDs.
  22. </p>
  23. <p>
  24. TODO:
  25. Test inline-container, bidi-override once implemented.
  26. </p>
  27. </info>
  28. <fo>
  29. <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:svg="http://www.w3.org/2000/svg">
  30. <fo:layout-master-set>
  31. <fo:simple-page-master master-name="normal" page-width="5in" page-height="20in"
  32. margin="20pt">
  33. <fo:region-body background-color="yellow"/>
  34. </fo:simple-page-master>
  35. </fo:layout-master-set>
  36. <fo:page-sequence id="page-sequence1" master-reference="normal" white-space-collapse="true">
  37. <fo:flow flow-name="xsl-region-body">
  38. <fo:block>text<fo:inline id="inline1">inline</fo:inline>text</fo:block>
  39. <fo:block>text<fo:wrapper id="wrapper1">wrapper</fo:wrapper>text</fo:block>
  40. <fo:block>text<!--fo:inline-container id="inline-container1"><fo:block>inline-container</fo:block></fo:inline-container-->text</fo:block>
  41. <fo:block>text<fo:page-number id="page-number1"/>text</fo:block>
  42. <fo:block>text<fo:page-number-citation id="page-number-citation1" ref-id="inline1"/>text</fo:block>
  43. <fo:block>text<fo:leader id="leader1" leader-pattern="dots" leader-length="2cm"/>text</fo:block>
  44. <fo:block>text<fo:character id="char1" character="X"/>text</fo:block>
  45. <fo:block>text<!--fo:bidi-override id="bidi1" direction="ltr">bidi-override</fo:bidi-override-->text</fo:block>
  46. <fo:block>text<fo:basic-link id="link1" internal-destination="page-number1">link</fo:basic-link>text</fo:block>
  47. <fo:block>text<fo:instream-foreign-object id="ifo1" content-height="12pt">
  48. <svg:svg viewBox="0 0 20 20">
  49. <svg:g style="fill:red; stroke:#000000">
  50. <svg:rect x="0" y="0" width="15" height="15"/>
  51. <svg:rect x="5" y="5" width="15" height="15"/>
  52. </svg:g>
  53. </svg:svg>
  54. </fo:instream-foreign-object>text</fo:block>
  55. <fo:block>text<fo:external-graphic id="eg1" src="../resources/images/bgimg72dpi.jpg" content-height="12pt"/>text</fo:block>
  56. </fo:flow>
  57. </fo:page-sequence>
  58. <fo:page-sequence master-reference="normal">
  59. <fo:flow flow-name="xsl-region-body" font-size="8pt">
  60. <fo:block><fo:page-number-citation ref-id="inline1"/></fo:block>
  61. <fo:block><fo:page-number-citation ref-id="wrapper1"/></fo:block>
  62. <fo:block><fo:page-number-citation ref-id="inline-container1"/></fo:block>
  63. <fo:block><fo:page-number-citation ref-id="page-number1"/></fo:block>
  64. <fo:block><fo:page-number-citation ref-id="page-number-citation1"/></fo:block>
  65. <fo:block><fo:page-number-citation ref-id="leader1"/></fo:block>
  66. <fo:block><fo:page-number-citation ref-id="char1"/></fo:block>
  67. <fo:block><fo:page-number-citation ref-id="bidi1"/></fo:block>
  68. <fo:block><fo:page-number-citation ref-id="link1"/></fo:block>
  69. <fo:block><fo:page-number-citation ref-id="ifo1"/></fo:block>
  70. <fo:block><fo:page-number-citation ref-id="eg1"/></fo:block>
  71. </fo:flow>
  72. </fo:page-sequence>
  73. </fo:root>
  74. </fo>
  75. <checks>
  76. <true fail-msg="no ID for inline" xpath="'1' = //pageViewport[@nr=2]/page/regionViewport/regionBody/mainReference/span/flow/block[1]"/>
  77. <true fail-msg="no ID for wrapper" xpath="'1' = //pageViewport[@nr=2]/page/regionViewport/regionBody/mainReference/span/flow/block[2]"/>
  78. <true fail-msg="no ID for inline-container" xpath="'1' = //pageViewport[@nr=2]/page/regionViewport/regionBody/mainReference/span/flow/block[3]"/>
  79. <true fail-msg="no ID for page-number" xpath="'1' = //pageViewport[@nr=2]/page/regionViewport/regionBody/mainReference/span/flow/block[4]"/>
  80. <true fail-msg="no ID for page-number-citation" xpath="'1' = //pageViewport[@nr=2]/page/regionViewport/regionBody/mainReference/span/flow/block[5]"/>
  81. <true fail-msg="no ID for leader" xpath="'1' = //pageViewport[@nr=2]/page/regionViewport/regionBody/mainReference/span/flow/block[6]"/>
  82. <true fail-msg="no ID for character" xpath="'1' = //pageViewport[@nr=2]/page/regionViewport/regionBody/mainReference/span/flow/block[7]"/>
  83. <true fail-msg="no ID for bidi-override" xpath="'1' = //pageViewport[@nr=2]/page/regionViewport/regionBody/mainReference/span/flow/block[8]"/>
  84. <true fail-msg="no ID for basik-link" xpath="'1' = //pageViewport[@nr=2]/page/regionViewport/regionBody/mainReference/span/flow/block[9]"/>
  85. <true fail-msg="no ID for instream-foreign-object" xpath="'1' = //pageViewport[@nr=2]/page/regionViewport/regionBody/mainReference/span/flow/block[10]"/>
  86. <true fail-msg="no ID for external-graphic" xpath="'1' = //pageViewport[@nr=2]/page/regionViewport/regionBody/mainReference/span/flow/block[11]"/>
  87. </checks>
  88. </testcase>