diff options
author | Jeremias Maerki <jeremias@apache.org> | 2006-02-11 20:23:47 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2006-02-11 20:23:47 +0000 |
commit | ebbf1fb43bc9974f2aead1afd06d6104eec579dd (patch) | |
tree | 31b7018d76128abd1fb2f01cbf8cdf89d9e8eb1f /test | |
parent | 17094f3329733ab1e0b68b8e9b3c302382572f25 (diff) | |
download | xmlgraphics-fop-ebbf1fb43bc9974f2aead1afd06d6104eec579dd.tar.gz xmlgraphics-fop-ebbf1fb43bc9974f2aead1afd06d6104eec579dd.zip |
Bugzilla #38618:
cleanup of rgb() and implementation of system-color()
Submitted by: Max Berger <max.at.berger.name>
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@377045 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/fotree/testcases/color-functions.fo | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/test/fotree/testcases/color-functions.fo b/test/fotree/testcases/color-functions.fo new file mode 100644 index 000000000..9f87a1994 --- /dev/null +++ b/test/fotree/testcases/color-functions.fo @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright 2006 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$ --> +<!-- This test verifies all the different method for specifying a color. --> +<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:test="http://xmlgraphics.apache.org/fop/test"> + <fo:layout-master-set> + <fo:simple-page-master page-width="5in" page-height="5in" master-name="normal"> + <fo:region-body/> + </fo:simple-page-master> + </fo:layout-master-set> + <fo:page-sequence master-reference="normal"> + <fo:flow flow-name="xsl-region-body"> + <fo:block>All the next blocks (other than this one) should be in blue</fo:block> + <fo:block color="#0000FF"><test:assert property="color" expected="#0000ff"/>#0000FF</fo:block> + <fo:block color="#00F"><test:assert property="color" expected="#0000ff"/>#00F</fo:block> + <fo:block color="rgb(0,0,255)"><test:assert property="color" expected="#0000ff"/>rgb(0,0,255)</fo:block> + <fo:block color="rgb(0%,0%,100%)"><test:assert property="color" expected="#0000ff"/>rgb(0%,0%,100%)</fo:block> + <fo:block color="system-color(blue)"><test:assert property="color" expected="#0000ff"/>system-color(blue)</fo:block> + <fo:block color="blue"><test:assert property="color" expected="#0000ff"/>blue</fo:block> + </fo:flow> + </fo:page-sequence> +</fo:root> |