Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/svg/font/FontInfoBuilder.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/svg/font/FontInfoBuilder.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/svg/font/FontInfoBuilder.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/svg/font/FontInfoBuilder.java
 Thu Jan 30 15:51:03 2014
@@ -31,7 +31,7 @@ import org.apache.fop.fonts.EncodingMode
 import org.apache.fop.fonts.Font;
 import org.apache.fop.fonts.FontInfo;
 import org.apache.fop.fonts.FontMetrics;
-import org.apache.fop.fonts.truetype.TTFFontLoader;
+import org.apache.fop.fonts.truetype.OFFontLoader;
 
 class FontInfoBuilder {
 
@@ -82,7 +82,7 @@ class FontInfoBuilder {
             throws IOException, URISyntaxException {
         URI baseURI = new File("test/resources/fonts/ttf").toURI();
         InternalResourceResolver resolver = 
ResourceResolverFactory.createDefaultInternalResourceResolver(baseURI);
-        TTFFontLoader fontLoader = new TTFFontLoader(new URI(filename), null, 
true,
+        OFFontLoader fontLoader = new OFFontLoader(new URI(filename), null, 
true,
                 EmbeddingMode.AUTO, EncodingMode.AUTO, true, useAdvanced, 
resolver);
         FontMetrics font = fontLoader.getFont();
         registerFont(font, "F" + fontKey++, fontName);

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/text/linebreak/LineBreakStatusTestCase.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/text/linebreak/LineBreakStatusTestCase.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/text/linebreak/LineBreakStatusTestCase.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/text/linebreak/LineBreakStatusTestCase.java
 Thu Jan 30 15:51:03 2014
@@ -19,10 +19,10 @@
 
 package org.apache.fop.text.linebreak;
 
-import static org.junit.Assert.assertTrue;
-
 import org.junit.Test;
 
+import static org.junit.Assert.assertTrue;
+
 
 /**
  * JUnit test case for the LineBreakStatus class

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/text/linebreak/LineBreakUtilsTestCase.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/text/linebreak/LineBreakUtilsTestCase.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/text/linebreak/LineBreakUtilsTestCase.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/text/linebreak/LineBreakUtilsTestCase.java
 Thu Jan 30 15:51:03 2014
@@ -19,10 +19,10 @@
 
 package org.apache.fop.text.linebreak;
 
-import static org.junit.Assert.assertEquals;
-
 import org.junit.Test;
 
+import static org.junit.Assert.assertEquals;
+
 /**
  * TODO add javadoc
  *

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/threading/FOProcessorImpl.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/threading/FOProcessorImpl.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/threading/FOProcessorImpl.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/threading/FOProcessorImpl.java
 Thu Jan 30 15:51:03 2014
@@ -81,8 +81,8 @@ public class FOProcessorImpl extends Abs
         }
     }
 
-    /** {@inheritDoc} 
-     * @throws URISyntaxException 
+    /** {@inheritDoc}
+     * @throws URISyntaxException
      * @throws SAXException */
     public void process(Source src, Templates templates, OutputStream out)
             throws java.io.IOException, URISyntaxException, SAXException {

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/threading/Main.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/threading/Main.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/threading/Main.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/threading/Main.java
 Thu Jan 30 15:51:03 2014
@@ -32,7 +32,10 @@ import org.apache.avalon.framework.logge
 /**
  * Starter class for the multi-threading testbed.
  */
-public class Main {
+public final class Main {
+
+    private Main() {
+    }
 
     private static void prompt() throws IOException {
         BufferedReader in = new BufferedReader(new 
java.io.InputStreamReader(System.in));

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/traits/BorderPropsTestCase.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/traits/BorderPropsTestCase.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/traits/BorderPropsTestCase.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/traits/BorderPropsTestCase.java
 Thu Jan 30 15:51:03 2014
@@ -23,14 +23,14 @@ import java.awt.Color;
 
 import org.junit.Test;
 
+import static org.junit.Assert.assertEquals;
+
 import org.apache.xmlgraphics.java2d.color.ColorWithAlternatives;
 import org.apache.xmlgraphics.java2d.color.DeviceCMYKColorSpace;
 
 import org.apache.fop.fo.Constants;
 import org.apache.fop.util.ColorUtil;
 
-import static org.junit.Assert.assertEquals;
-
 /**
  * Tests the BorderProps class.
  */
@@ -67,7 +67,7 @@ public class BorderPropsTestCase {
         Color col = new Color(1.0f, 1.0f, 0.5f, 1.0f);
         //Normalize: Avoid false alarms due to color conversion (rounding)
         col = ColorUtil.parseColorString(null, ColorUtil.colorToString(col));
-        for(BorderProps.Mode mode : BorderProps.Mode.values()) {
+        for (BorderProps.Mode mode : BorderProps.Mode.values()) {
             BorderProps sut = BorderProps.makeRectangular(Constants.EN_SOLID, 
10, col, mode);
             testSerialization(sut);
             sut = new BorderProps(Constants.EN_SOLID, 10, 4, 3, col, mode);

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/traits/MinOptMaxTestCase.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/traits/MinOptMaxTestCase.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/traits/MinOptMaxTestCase.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/traits/MinOptMaxTestCase.java
 Thu Jan 30 15:51:03 2014
@@ -19,13 +19,13 @@
 
 package org.apache.fop.traits;
 
+import org.junit.Test;
+
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertTrue;
 import static org.junit.Assert.fail;
 
-import org.junit.Test;
-
 /**
  * Tests the {@link MinOptMax} class.
  */

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/AdvancedMessageFormatTestCase.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/AdvancedMessageFormatTestCase.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/AdvancedMessageFormatTestCase.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/AdvancedMessageFormatTestCase.java
 Thu Jan 30 15:51:03 2014
@@ -19,15 +19,16 @@
 
 package org.apache.fop.util;
 
-import static org.junit.Assert.assertEquals;
-
 import java.util.Map;
 
-import org.apache.fop.events.model.EventSeverity;
-import org.apache.fop.util.text.AdvancedMessageFormat;
 import org.junit.Test;
 import org.xml.sax.helpers.LocatorImpl;
 
+import static org.junit.Assert.assertEquals;
+
+import org.apache.fop.events.model.EventSeverity;
+import org.apache.fop.util.text.AdvancedMessageFormat;
+
 /**
  * Tests for EventFormatter.
  */

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/BitmapImageUtilTestCase.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/BitmapImageUtilTestCase.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/BitmapImageUtilTestCase.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/BitmapImageUtilTestCase.java
 Thu Jan 30 15:51:03 2014
@@ -19,8 +19,6 @@
 
 package org.apache.fop.util;
 
-import static org.junit.Assert.assertEquals;
-
 import java.awt.Color;
 import java.awt.Dimension;
 import java.awt.Graphics2D;
@@ -31,13 +29,18 @@ import java.io.IOException;
 import java.io.InputStream;
 import java.io.StringWriter;
 
+import org.junit.Test;
+
+import static org.junit.Assert.assertEquals;
+
 import org.apache.commons.io.IOUtils;
-import org.apache.fop.util.bitmap.BitmapImageUtil;
-import org.apache.fop.util.bitmap.MonochromeBitmapConverter;
+
 import org.apache.xmlgraphics.image.writer.ImageWriterUtil;
 import org.apache.xmlgraphics.util.WriterOutputStream;
 import org.apache.xmlgraphics.util.io.ASCIIHexOutputStream;
-import org.junit.Test;
+
+import org.apache.fop.util.bitmap.BitmapImageUtil;
+import org.apache.fop.util.bitmap.MonochromeBitmapConverter;
 
 /**
  * Tests {@link BitmapImageUtil}.

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/ColorUtilTestCase.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/ColorUtilTestCase.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/ColorUtilTestCase.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/ColorUtilTestCase.java
 Thu Jan 30 15:51:03 2014
@@ -26,6 +26,11 @@ import java.net.URI;
 
 import org.junit.Test;
 
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+
 import org.apache.xmlgraphics.java2d.color.ColorSpaces;
 import org.apache.xmlgraphics.java2d.color.ColorWithAlternatives;
 import org.apache.xmlgraphics.java2d.color.NamedColorSpace;
@@ -34,11 +39,6 @@ import org.apache.xmlgraphics.java2d.col
 import org.apache.fop.apps.FOUserAgent;
 import org.apache.fop.apps.FopFactory;
 
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertNotNull;
-import static org.junit.Assert.assertTrue;
-
 /**
  * Tests the ColorUtil class.
  */

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/DigestFilter.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/DigestFilter.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/DigestFilter.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/DigestFilter.java
 Thu Jan 30 15:51:03 2014
@@ -95,9 +95,6 @@ public class DigestFilter extends XMLFil
         super.endDocument();
     }
 
-    /* (non-Javadoc)
-     * @see org.xml.sax.ContentHandler#startElement(java.lang.String, 
java.lang.String, java.lang.String, org.xml.sax.Attributes)
-     */
     public void startElement(
         String url,
         String localName,

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/ElementListUtilsTestCase.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/ElementListUtilsTestCase.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/ElementListUtilsTestCase.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/ElementListUtilsTestCase.java
 Thu Jan 30 15:51:03 2014
@@ -19,17 +19,18 @@
 
 package org.apache.fop.util;
 
+import java.util.LinkedList;
+
+import org.junit.Test;
+
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertFalse;
 
-import java.util.LinkedList;
-
 import org.apache.fop.layoutmgr.ElementListUtils;
 import org.apache.fop.layoutmgr.KnuthBox;
 import org.apache.fop.layoutmgr.KnuthElement;
 import org.apache.fop.layoutmgr.KnuthGlue;
 import org.apache.fop.layoutmgr.KnuthPenalty;
-import org.junit.Test;
 
 /**
  * Test class for ElementListUtils.

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/LanguageTagsTestCase.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/LanguageTagsTestCase.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/LanguageTagsTestCase.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/LanguageTagsTestCase.java
 Thu Jan 30 15:51:03 2014
@@ -19,12 +19,12 @@
 
 package org.apache.fop.util;
 
-import static org.junit.Assert.assertEquals;
-
 import java.util.Locale;
 
 import org.junit.Test;
 
+import static org.junit.Assert.assertEquals;
+
 /**
  * Tests {@link LanguageTags}.
  */

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/XMLResourceBundleTestCase.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/XMLResourceBundleTestCase.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/XMLResourceBundleTestCase.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/util/XMLResourceBundleTestCase.java
 Thu Jan 30 15:51:03 2014
@@ -19,15 +19,15 @@
 
 package org.apache.fop.util;
 
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.fail;
-
 import java.util.Locale;
 import java.util.MissingResourceException;
 import java.util.ResourceBundle;
 
 import org.junit.Test;
 
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.fail;
+
 /**
  * Tests for XMLResourceBundle.
  */

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/visual/BitmapComparator.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/visual/BitmapComparator.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/visual/BitmapComparator.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/visual/BitmapComparator.java
 Thu Jan 30 15:51:03 2014
@@ -30,11 +30,12 @@ import java.io.IOException;
 import java.io.InputStream;
 import java.net.URL;
 
+import org.apache.commons.io.IOUtils;
+
 import org.apache.batik.ext.awt.image.GraphicsUtil;
 import org.apache.batik.ext.awt.image.renderable.Filter;
 import org.apache.batik.ext.awt.image.spi.ImageTagRegistry;
 import org.apache.batik.util.ParsedURL;
-import org.apache.commons.io.IOUtils;
 
 /**
  * Helper class to visually compare two bitmap images.
@@ -45,7 +46,11 @@ import org.apache.commons.io.IOUtils;
  * <p>
  * TODO Move as utility class to XML Graphics Commons when possible
  */
-public class BitmapComparator {
+public final class BitmapComparator {
+
+
+    private BitmapComparator() {
+    }
 
     /**
      * Builds a new BufferedImage that is the difference between the two input 
images
@@ -79,15 +84,14 @@ public class BitmapComparator {
         int w = ref.getWidth();
         int h = ref.getHeight();
 
-        int y, i, val;
         int [] refPix = null;
         int [] genPix = null;
-        for (y = 0; y < h; y++) {
-            refPix = refWR.getPixels (0, y, w, 1, refPix);
-            genPix = genWR.getPixels (0, y, w, 1, genPix);
-            for (i = 0; i < refPix.length; i++) {
+        for (int y = 0; y < h; y++) {
+            refPix = refWR.getPixels(0, y, w, 1, refPix);
+            genPix = genWR.getPixels(0, y, w, 1, genPix);
+            for (int i = 0; i < refPix.length; i++) {
                 // val = ((genPix[i] - refPix[i]) * 5) + 128;
-                val = ((refPix[i] - genPix[i]) * 10) + 128;
+                int val = ((refPix[i] - genPix[i]) * 10) + 128;
                 if ((val & 0xFFFFFF00) != 0) {
                     if ((val & 0x80000000) != 0) {
                         val = 0;

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/visual/ConvertUtils.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/visual/ConvertUtils.java?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/visual/ConvertUtils.java
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/java/org/apache/fop/visual/ConvertUtils.java
 Thu Jan 30 15:51:03 2014
@@ -27,7 +27,10 @@ import org.apache.commons.logging.Log;
 /**
  * Utilities for converting files with external converters.
  */
-public class ConvertUtils {
+public final class ConvertUtils {
+
+    private ConvertUtils() {
+    }
 
     /**
      * Calls an external converter application (GhostScript, for example).

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/layoutengine/disabled-testcases.xml
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/layoutengine/disabled-testcases.xml?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/layoutengine/disabled-testcases.xml
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/layoutengine/disabled-testcases.xml
 Thu Jan 30 15:51:03 2014
@@ -91,16 +91,15 @@
     NullPointerException.</description>
   </testcase>
   <testcase>
-    <name>inline-container is not implemented, yet.</name>
-    <file>inline-container_block_nested.xml</file>
-    <description>inline-container is not implemented, yet. Content of an 
-    inline-container will get swallowed. The test case contains no 
checks.</description>
+    <name>Keeps on inline-container are not implemented, yet.</name>
+    <file>inline-container_keeps.xml</file>
+    <description>The keep-with-previous and keep-with-next properties have not 
been implemented on 
+      inline-container yet. They will be treated as if they had the value 
"auto".</description>
   </testcase>
   <testcase>
-    <name>inline-container is not implemented, yet.</name>
+    <name>Borders and padding inline-container are not implemented, yet.</name>
     <file>inline-container_border_padding.xml</file>
-    <description>inline-container is not implemented, yet. Content of an 
-    inline-container will get swallowed.</description>
+    <description>Borders and paddings on an inline-container will be 
ignored.</description>
   </testcase>
   <testcase>
     <name>inline letter-spacing</name>

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/layoutengine/standard-testcases/fox_external-document_2.xml
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/layoutengine/standard-testcases/fox_external-document_2.xml?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/layoutengine/standard-testcases/fox_external-document_2.xml
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/layoutengine/standard-testcases/fox_external-document_2.xml
 Thu Jan 30 15:51:03 2014
@@ -71,8 +71,8 @@
     <eval expected="0 0 597172 843913" xpath="//viewport[@prod-id = 
'img4']/@pos"/>
 
     <eval expected="0 0 843913 597172" xpath="//pageViewport[@nr = 
'6']/page/regionViewport/@rect"/>
-    <eval expected="843913" xpath="//pageViewport[@nr = 
'6']/page/regionViewport/@ipd"/>
-    <eval expected="597172" xpath="//pageViewport[@nr = 
'6']/page/regionViewport/@bpd"/>
+    <eval expected="597172" xpath="//pageViewport[@nr = 
'6']/page/regionViewport/@ipd"/>
+    <eval expected="843913" xpath="//pageViewport[@nr = 
'6']/page/regionViewport/@bpd"/>
     <eval expected="597172" xpath="//pageViewport[@nr = 
'6']/page/regionViewport/regionBody/@ipd"/>
     <eval expected="843913" xpath="//pageViewport[@nr = 
'6']/page/regionViewport/regionBody/@bpd"/>
     <eval expected="[0.0 -1.0 1.0 0.0 0.0 597172.0]" xpath="//pageViewport[@nr 
= '6']/page/regionViewport/regionBody/@ctm"/>

Modified: 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/layoutengine/testcase2checks.xsl
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/layoutengine/testcase2checks.xsl?rev=1562866&r1=1562865&r2=1562866&view=diff
==============================================================================
--- 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/layoutengine/testcase2checks.xsl
 (original)
+++ 
xmlgraphics/fop/branches/Temp_FopFontsForSVG/test/layoutengine/testcase2checks.xsl
 Thu Jan 30 15:51:03 2014
@@ -25,6 +25,7 @@
   <checks>
     <xsl:apply-templates select="checks"/>
     <xsl:apply-templates select="if-checks"/>
+    <xsl:apply-templates select="event-checks"/>
   </checks>
 </xsl:template>
 
@@ -40,7 +41,13 @@
     <xsl:copy-of select="*"/>
   </if-checks>
 </xsl:template>
-  
+
+<xsl:template match="event-checks">
+  <event-checks>
+    <xsl:copy-of select="*"/>
+  </event-checks>
+</xsl:template>
+
 <xsl:template match="text()" />
 
 </xsl:stylesheet>



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to