haikuwebkit/LayoutTests/css3/background/background-repeat-space-pad...

24 lines
549 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<style>
div {
width: 400px;
height: 300px;
border: 50px solid transparent;
padding: 50px;
background-image: url("resources/circle.png");
background-size: 150px;
background-repeat: space;
background-origin: padding-box;
background-clip: padding-box;
}
</style>
</head>
<body>
<div />
</body>
</html>