From 837cacd29624ddf4f1a58fc7069121ee8652c8f7 Mon Sep 17 00:00:00 2001 From: Vincent Hennebert Date: Mon, 23 Mar 2009 12:12:36 +0000 Subject: [PATCH] Set svn:eol-style property on page-position-last_break-before_bugzilla46489.xml test case. Simplified it by removing superfluous content and references to fonts that are not available by default. Fixed small indentation issue in ElementListUtils. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@757382 13f79535-47bb-0310-9956-ffa450edef68 --- .../fop/layoutmgr/ElementListUtils.java | 3 +- ...sition-last_break-before_bugzilla46489.xml | 210 ++++++++---------- 2 files changed, 94 insertions(+), 119 deletions(-) diff --git a/src/java/org/apache/fop/layoutmgr/ElementListUtils.java b/src/java/org/apache/fop/layoutmgr/ElementListUtils.java index 7e337dc6b..d3403cd6b 100644 --- a/src/java/org/apache/fop/layoutmgr/ElementListUtils.java +++ b/src/java/org/apache/fop/layoutmgr/ElementListUtils.java @@ -199,8 +199,7 @@ public final class ElementListUtils { * @return true if the list starts with a forced break */ public static boolean startsWithForcedBreak(List elems) { - return !elems.isEmpty() - && ((ListElement) elems.get(0)).isForcedBreak(); + return !elems.isEmpty() && ((ListElement) elems.get(0)).isForcedBreak(); } /** diff --git a/test/layoutengine/standard-testcases/page-position-last_break-before_bugzilla46489.xml b/test/layoutengine/standard-testcases/page-position-last_break-before_bugzilla46489.xml index d3c106852..d855ffd76 100644 --- a/test/layoutengine/standard-testcases/page-position-last_break-before_bugzilla46489.xml +++ b/test/layoutengine/standard-testcases/page-position-last_break-before_bugzilla46489.xml @@ -1,117 +1,93 @@ - - - - - -

- This test checks page-masters (reference orientation). -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Some text - - - - - - More text before break. More text before break. More text before break. - - - - - - - - - - - - - - - TEXT AFTER BREAK - - - - - - - - - - - - - - - - - - - - - blah blah blah - - - - blah blah blah - - - - - - - - - - - - - -
+ + + + + +

+ This test checks page-masters (reference orientation). +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + Some text + + + More text before break. More text before break. More text before + break. + + + + + + + + + TEXT AFTER + BREAK + + + + + + + + + blah blah blah + blah blah blah + + + + + + + + + + + + +
-- 2.39.5