mirror of
https://github.com/servo/servo.git
synced 2025-07-03 05:23:38 +01:00
20 lines
489 B
HTML
20 lines
489 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<link rel="match" href="invalid-image-pending-script-ref.html">
|
|
<style>
|
|
#output {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-image: paint(invalid);
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<script src="/common/reftest-wait.js"></script>
|
|
<script src="/common/css-paint-tests.js"></script>
|
|
<body>
|
|
<div id="output"></div>
|
|
<script>
|
|
importPaintWorkletAndTerminateTestAfterAsyncPaint("");
|
|
</script>
|
|
</body>
|
|
</html>
|