mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
23 lines
No EOL
1.1 KiB
HTML
23 lines
No EOL
1.1 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
|
<title>CSS Test: Order of images</title>
|
|
<link href="http://www.microsoft.com/" rel="author" title="Microsoft">
|
|
<link href="http://www.w3.org/TR/css3-background/#the-background-image" rel="help">
|
|
<meta content="" name="flags">
|
|
<meta content="Background images are listed in order, with the first image being rendered on top of all the other images, and so on." name="assert">
|
|
<style type="text/css">
|
|
div
|
|
{
|
|
width: 250px;
|
|
height: 250px;
|
|
background-image: url("support/blue_color.png"), url("support/orange_color.png"), url("support/black_color.png");
|
|
background-repeat: no-repeat;
|
|
background-position: 30px 30px, 60px 60px, 90px 90px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if a blue box overlaps an orange box, which overlaps a black box.</p>
|
|
<div></div>
|
|
|
|
</body></html> |