| Index: LayoutTests/svg/hittest/singular-transform-6.html
|
| diff --git a/LayoutTests/svg/hittest/singular-transform-6.html b/LayoutTests/svg/hittest/singular-transform-6.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e2b411b165a5f7669a7c0b4bec2932badedfed56
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/hittest/singular-transform-6.html
|
| @@ -0,0 +1,17 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../resources/js-test.js"></script>
|
| +<style>
|
| +body { margin: 0; }
|
| +</style>
|
| +<svg width="400" height="100" viewBox="0 0 0 0">
|
| + <g class="p">
|
| + <rect class="a" width="200" height="100"/>
|
| + <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>
|
|
|