OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <!-- | |
3 Tests that an element with an overflow clip inside a LayoutSVGHiddenContainer | |
4 can be laid out without crashing. This entails that we create a PaintLayer, | |
5 since the layout code assumes that overflow clip gets a scrollable area. | |
6 --> | |
7 <svg> | |
8 <clipPath id="c"></clipPath> | |
9 </svg> | |
10 <p>PASS: did not crash.</p> | |
11 <script> | |
12 c.createShadowRoot().innerHTML = "<foreignObject><input>"; | |
13 if (window.testRunner) | |
14 testRunner.dumpAsText(); | |
15 </script> | |
OLD | NEW |