aboutsummaryrefslogtreecommitdiffstats
path: root/test/errors/inavlidxml2.fo
blob: 4ff0a6941d964d27d9400cbd05b8a07b6c64df43 (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
<?xml version="1.0" encoding="utf-8"?>
fegsdfgdsgfsdgf

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">

  <!-- defines page layout -->
  <fo:layout-master-set>
    <fo:simple-page-master master-name="first"
                           page-height="29.7cm" page-width="21cm"
                           margin-top="1cm"
                           margin-bottom="2cm"
                           margin-left="2.5cm"
                           margin-right="2.5cm">
      <fo:region-body margin-top="3cm"/>
      <fo:region-before extent="3cm"/>
      <fo:region-after extent="1.5cm"/>
    </fo:simple-page-master>
  </fo:layout-master-set>
  <!-- end: defines page layout -->

  <!-- actual layout -->
  <fo:page-sequence master-reference="first">

    <!-- text body -->
    <fo:flow flow-name="xsl-region-body">

      <!-- Normal text -->
      <fo:block text-align="center">0. Normal text without link
      </fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>