Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / hittest / singular-transform-6.html
blobe2b411b165a5f7669a7c0b4bec2932badedfed56
1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script>
3 <style>
4 body { margin: 0; }
5 </style>
6 <svg width="400" height="100" viewBox="0 0 0 0">
7 <g class="p">
8 <rect class="a" width="200" height="100"/>
9 <rect class="b" width="100" height="100" fill="green"/>
10 </g>
11 </svg>
12 <script>
13 if (window.testRunner)
14 eventSender.mouseMoveTo(150, 50);
16 shouldBeNull("document.querySelector('.p:hover .a')");
17 </script>