Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: LayoutTests/svg/W3C-SVG-1.1/pservers-grad-17-b.svg

Issue 1085583003: Remove a duplicate test in LayoutTests/svg/W3C-SVG-1.1 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove 1 duplicate tests in LayoutTests/svg/W3C-SVG-1.1 Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/svg/W3C-SVG-1.1/pservers-grad-17-b.svg
diff --git a/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-17-b.svg b/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-17-b.svg
deleted file mode 100644
index a4b7a98eb3537dacd1e7921c877cbf35f11489e7..0000000000000000000000000000000000000000
--- a/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-17-b.svg
+++ /dev/null
@@ -1,62 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic-flat.dtd">
-<!--========================================================================-->
- <!--= Copyright 2006 World Wide Web Consortium, (Massachusetts =-->
- <!--= Institute of Technology, European Research Consortium for =-->
- <!--= Informatics and Mathematics (ERCIM), Keio University). =-->
- <!--= All Rights Reserved. =-->
- <!--= See http://www.w3.org/Consortium/Legal/. =-->
-<!--========================================================================-->
- <!-- NOTE: CVS will automatically update the -->
- <!-- "$RCSfile: pservers-grad-17-b.svg,v $" and "$Revision: 1.4 $" -->
- <!-- fields in the file. -->
- <!-- There is no need to update this information. -->
- <!-- =====================================================================-->
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="basic" id="svg-root"
- width="100%" height="100%" viewBox="0 0 480 360">
- <SVGTestCase xmlns:testcase="http://www.w3.org/2000/02/svg/testsuite/description/" xmlns="http://www.w3.org/2000/02/svg/testsuite/description/" reviewer="AE" owner="ED"
- desc="Test that checks that a gradient with objectBoundingBox is not applied on an element without width or height." status="accepted" version="$Revision: 1.4 $" testname="$RCSfile: pservers-grad-17-b.svg,v $">
- <OperatorScript>
- <Paragraph>
- This test has a gradient with gradientUnits='objectBoundingBox' which is a fade from black to white.
- The gradient is used for the stroke of a line. Lines don't have a boundingbox, since they are one-dimensional, even though the
- stroke-width makes it look like they should have a boundingbox with non-zero width and height.
- See the coordinate chapter, last paragraph of 7.11.
- </Paragraph>
- <Paragraph>
- The left rectangle has four 'line' elements rotated in different ways. The right rectangle has four 'rect' elements
- rotated in the same way as the 'line' elements. Both of these rectangles and their contents should look the same
- for the test to pass; all lines are solid black except for the diagonal from bottom left to top right, which has a black to white gradient.
- </Paragraph>
- </OperatorScript>
- </SVGTestCase>
- <title id="test-title">$RCSfile: pservers-grad-17-b.svg,v $</title>
- <g id="test-body-content">
- <defs>
- <linearGradient id="grad">
- <stop offset="0" stop-color="black" />
- <stop offset="1" stop-color="white" />
- </linearGradient>
- </defs>
-
- <g transform="translate(50, 100) scale(0.3)" stroke="#f00">
- <rect x="0" y="-60" width="480" height="480" fill="none" stroke="black"/>
- <line x1="0" y1="180" x2="480" y2="180" stroke="url(#grad)" stroke-width="20"/>
- <line x1="0" y1="180" x2="480" y2="180" stroke="url(#grad)" stroke-width="20" transform="rotate(45 240 180)"/>
- <line x1="0" y1="180" x2="480" y2="180" stroke="url(#grad)" stroke-width="20" transform="rotate(90 240 180)"/>
- <line x1="410" y1="10" x2="70" y2="350" stroke="url(#grad)" stroke-width="20"/>
- </g>
- <text x="120" y="250" text-anchor="middle">Using lines</text>
-
- <g transform="translate(280,100) scale(0.3)" fill="#f00">
- <rect x="0" y="-60" width="480" height="480" fill="none" stroke="black"/>
- <rect x="0" y="170" width="480" height="20" fill="black"/>
- <rect x="0" y="170" width="480" height="20" fill="black" transform="rotate(45 240 180)"/>
- <rect x="0" y="170" width="480" height="20" fill="black" transform="rotate(90 240 180)"/>
- <rect x="0" y="170" width="480" height="20" fill="url(#grad)" transform="rotate(315 240 180)"/>
- </g>
- <text x="350" y="250" text-anchor="middle">Using rects</text>
- </g>
- <text id="revision" x="10" y="340" font-size="40" stroke="none" fill="black">$Revision: 1.4 $</text>
- <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
-</svg>

Powered by Google App Engine
This is Rietveld 408576698