2 <title>SVG root 'display: block' hit test
</title>
10 background-color: blue;
14 <svg width=
"200" height=
"200"></svg>
15 <p>SVG root with 'display: block' gets intersected.
</p>
17 if (window
.testRunner
)
18 testRunner
.dumpAsText();
20 var svgRoot
= document
.querySelector('svg');
21 var result
= (svgRoot
=== document
.elementFromPoint(100, 100));
22 document
.write(result
? 'PASS' : 'FAIL');