Index: LayoutTests/svg/hittest/singular-transform-4.html |
diff --git a/LayoutTests/svg/hittest/singular-transform-4.html b/LayoutTests/svg/hittest/singular-transform-4.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..acf309f33ccc0f76928f5c300e12d30b49451e60 |
--- /dev/null |
+++ b/LayoutTests/svg/hittest/singular-transform-4.html |
@@ -0,0 +1,25 @@ |
+<!DOCTYPE html> |
+<script src="../../resources/js-test.js"></script> |
+<style> |
+body { margin: 0; } |
+.p .a { |
+ transform: scaleX(0); |
+} |
+.p:hover .a { |
+ transform: scaleX(1); |
+ fill: red; |
+} |
+</style> |
+<svg width="400" height="100"> |
+ <g class="p"> |
+ <image class="a" width="200" height="100" preserveAspectRatio="none" |
+ xlink:href="../custom/resources/red-checker.png"></image> |
+ <rect class="b" width="100" height="100" fill="green"/> |
+ </g> |
+</svg> |
+<script> |
+if (window.testRunner) |
+ eventSender.mouseMoveTo(150, 50); |
+ |
+shouldBeNull("document.querySelector('.p:hover .a')"); |
+</script> |