1
0
Fork 0
firefox/testing/web-platform/tests/css/css-masking/clip-path/clip-path-url-reference-empty-while-loading.tentative.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

17 lines
691 B
HTML

<!doctype html>
<html class="reftest-wait">
<title>clip-path url()s are represented as empty paths while loading</title>
<script src="/common/reftest-wait.js"></script>
<script src="/common/rendering-utils.js"></script>
<link rel="help" href="">
<link rel="match" href="reference/green-100x100.html">
<div style="width: 100px; height: 100px; background-color: green">
<div id="target" style="width: 100px; height: 100px; background-color: red"></div>
</div>
<script>
onload = () => {
const div = document.getElementById('target');
div.style.clipPath = `url("support/resources.svg?pipe=trickle(d10)#circleClip")`;
waitForAtLeastOneFrame().then(takeScreenshot);
};
</script>