mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab
This commit is contained in:
parent
1a81b18b9f
commit
2c9faf5363
91915 changed files with 5979820 additions and 0 deletions
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<title>CSS Test: shape-outside from first frame of animated gif</title>
|
||||
<link href="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>
|
Loading…
Add table
Add a link
Reference in a new issue