| Index: LayoutTests/svg/hittest/singular-transform-7.html
|
| diff --git a/LayoutTests/svg/hittest/singular-transform-7.html b/LayoutTests/svg/hittest/singular-transform-7.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2a5f4a3a2d46424747be8535266c22a5d82cbfe3
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/hittest/singular-transform-7.html
|
| @@ -0,0 +1,28 @@
|
| +<!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">
|
| + <foreignObject transform="scale(0)" width="200" height="100">
|
| + <svg>
|
| + <rect class="a" width="200" height="100"/>
|
| + </svg>
|
| + </foreignObject>
|
| + <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>
|
|
|