will-change-in-foreign-object-paint-order.html (632B)
1 <!doctype html> 2 <title>A foreignObject element containing will-change content is painted in correct order</title> 3 <link rel="help" href="https://svgwg.org/svg2-draft/single-page.html#embedded-ForeignObjectElement"/> 4 <link rel="author" title="Xianzhu Wang" href="mailto:wangxianzhu@chromium.org"> 5 <link rel="match" href="will-change-in-foreign-object-paint-order-ref.html"> 6 <svg style="width: 100px; height: 100px;"> 7 <foreignObject width="100" height="100"> 8 <div style="will-change: transform; width: 100px; height: 100px; background: red"></div> 9 </foreignObject> 10 <rect width="100" height="100" fill="green"></rect> 11 </svg>