mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: Background with (attachment image position repeat)</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#propdef-background">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties">
|
|
<meta name="flags" content="image interact">
|
|
<meta name="assert" content="Background with (attachment image position repeat) sets the tiles the image across the x-axis within the background and the image scrolls with the box.">
|
|
<style type="text/css">
|
|
#div1
|
|
{
|
|
height: 200px;
|
|
width: 200px;
|
|
overflow: scroll;
|
|
}
|
|
div div
|
|
{
|
|
background: scroll url("support/cat.png") bottom repeat-x;
|
|
height: 400px;
|
|
width: 400px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if in the box below, there is a picture of a cat repeated across the bottom of the box that moves with the scrollbar when the box is scrolled to the right.</p>
|
|
<div id="div1">
|
|
<div></div>
|
|
</div>
|
|
</body>
|
|
</html> |