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> |