mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
62 lines
No EOL
1.9 KiB
HTML
62 lines
No EOL
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Test: shape-outside from first frame of animated gif</title>
|
|
<link href="mailto:rhauck@adobe.com" rel="author" title="Rebecca Hauck">
|
|
<link href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image" rel="help">
|
|
<link href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property" rel="help">
|
|
<link href="reference/shape-image-025-ref.htm" rel="match">
|
|
<meta content="ahem" name="flags">
|
|
<meta content="This test verifies that shape-outside is extracted from the
|
|
first frame of an animated gif." name="assert">
|
|
<style type="text/css">
|
|
body { margin: 0; }
|
|
.container {
|
|
left: 10px;
|
|
width: 200px;
|
|
font: 50px/1 Ahem;
|
|
color: rgb(0,100,0);
|
|
}
|
|
#image {
|
|
float: left;
|
|
shape-outside: url("support/animated.gif");
|
|
}
|
|
.blue-line {
|
|
top: 50px;
|
|
left: 60px;
|
|
width: 2px;
|
|
height: 140px;
|
|
background-color: blue;
|
|
}
|
|
.square {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.green {
|
|
left: 10px;
|
|
background-color: rgb(0,100,0);
|
|
}
|
|
.failure {
|
|
left: 60px;
|
|
background-color: red;
|
|
z-index: -1;
|
|
}
|
|
.container, .blue-line, .square, .failure { position: absolute; }
|
|
.container, .square, .failure { top: 70px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
The test passes if there are two identical green rectangles on either side of the blue line.
|
|
There should be no red.
|
|
</p>
|
|
<div class="container">
|
|
<img src="support/animated.gif" id="image">
|
|
X<br>X
|
|
</div>
|
|
<div class="green square"></div>
|
|
<div class="blue-line"></div>
|
|
<div class="failure square"></div>
|
|
|
|
|
|
|
|
</body></html> |