1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-21 12:45:08 +00:00
serenity/Tests/LibWeb/Ref/assets/background-no-repeat.html
Sam Atkins 69afb43922 LibWeb: Add ref test for background-repeat
This is adapted from one of our existing test pages.
2023-11-18 15:08:21 +00:00

10 lines
227 B
HTML

<!DOCTYPE html>
<style>
body {
background: white url("smiley.png") no-repeat;
}
</style>
<body>
<!-- HACK: Force the document to wait for the image to load -->
<img src="smiley.png" style="opacity: 0"/>
</body>