blob: c1d2b3a7e92a6f13192ecac29f52c8ccd7b3dd45 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!DOCTYPE html>
<title>Should not crash on foreignObject under clipPath</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>test(()=>{})</script>
<svg>
<clipPath>
<foreignObject>ABC</foreignObject>
</clipPath>
</svg>
|