1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-21 14:45:07 +00:00
serenity/Tests/LibWeb/Ref/assets/background-repeat-x.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
226 B
HTML

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