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

Unified Diff: LayoutTests/svg/foreignObject/transformed-text-invalidation.html

Issue 802833003: Remove the SVG paint culling optimization (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove unused field Created 6 years 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/foreignObject/transformed-text-invalidation.html
diff --git a/LayoutTests/svg/foreignObject/transformed-text-invalidation.html b/LayoutTests/svg/foreignObject/transformed-text-invalidation.html
new file mode 100644
index 0000000000000000000000000000000000000000..bfd4dd6ba32c268c40be227495a98cd1574bbe5d
--- /dev/null
+++ b/LayoutTests/svg/foreignObject/transformed-text-invalidation.html
@@ -0,0 +1,18 @@
+<!DOCTYPE HTML>
+<style>
+ body {
+ margin-left: -100px;
+ margin-top: -100px;
+ }
+</style>
+<body>
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300" height="300">
+ <foreignObject xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300" height="300">
+ <svg>
+ <g transform="translate(130, 130)">
+ <text>PASS</text>
fs 2014/12/19 11:46:00 Maybe add a transform to <text> as well (see issue
pdr. 2014/12/19 18:39:15 Done.
+ </g>
+ </svg>
+ </foreignObject>
+ </svg>
+</body>

Powered by Google App Engine
This is Rietveld 408576698