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

Unified Diff: LayoutTests/svg/text/obb-paintserver-expected.html

Issue 230443003: Fix application of OBB paint-servers when device scale != 1 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 6 years, 8 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
« no previous file with comments | « LayoutTests/svg/text/obb-paintserver.html ('k') | Source/core/rendering/svg/RenderSVGResourceContainer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/text/obb-paintserver-expected.html
diff --git a/LayoutTests/svg/text/obb-paintserver-expected.html b/LayoutTests/svg/text/obb-paintserver-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..3105144b7d84dc81ce26aed2db091e02f090dcbe
--- /dev/null
+++ b/LayoutTests/svg/text/obb-paintserver-expected.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<svg width="200" height="400">
+ <linearGradient id="gradient" x1="0" x2="0" y1="0" y2="1">
+ <stop offset="0" stop-color="green"/>
+ <stop offset="0.99" stop-color="green"/>
+ <stop offset="1" stop-color="red"/>
+ </linearGradient>
+ <pattern id="pattern" x="0" y="0" width="1" height="1" viewBox="0 0 10 10">
+ <rect width="10" height="10" fill="lime"/>
+ <rect width="5" height="5" fill="green"/>
+ <rect x="5" y="5" width="5" height="5" fill="green"/>
+ </pattern>
+ <rect width="100%" height="100%" fill="gray"/>
+ <g font-size="100px" font-family="Ahem">
+ <g fill="url(#pattern)">
+ <rect y="200" width="1em" height="1em"/>
+ <rect y="300" width="1em" height="1em"/>
+ </g>
+ <g fill="url(#gradient)">
+ <rect x="100" y="200" width="1em" height="1em"/>
+ <rect x="100" y="300" width="1em" height="1em"/>
+ </g>
+</svg>
« no previous file with comments | « LayoutTests/svg/text/obb-paintserver.html ('k') | Source/core/rendering/svg/RenderSVGResourceContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698