mirror of
https://github.com/servo/servo.git
synced 2025-08-08 23:15:33 +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,55 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<title>CSS Test: left float, ellipse radii in % units</title>
|
||||
<link href="mailto:rhauck@adobe.com" rel="author" title="Rebecca Hauck">
|
||||
<link href="http://www.w3.org/TR/css-shapes-1/#funcdef-ellipse" rel="help">
|
||||
<link href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property" rel="help">
|
||||
<link href="reference/shape-outside-ellipse-030-ref.htm" rel="match">
|
||||
<meta content="ahem dom" name="flags">
|
||||
<meta content="The test verifies that text wraps around a
|
||||
left float with a shape-outside defined as
|
||||
an ellipse with radii in % units." name="assert">
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
.container {
|
||||
font: 15px Ahem, sans-serif;
|
||||
line-height: 20px;
|
||||
width: 400px;
|
||||
height: 200px;
|
||||
color: green;
|
||||
}
|
||||
.ellipse {
|
||||
width: 160px;
|
||||
height: 160px;
|
||||
shape-outside: ellipse(50% 25% at 50% 25%);
|
||||
}
|
||||
</style></head>
|
||||
|
||||
<body>
|
||||
<p>The test passes if all of the squares are green. There should be no red.</p>
|
||||
<div class="container">
|
||||
X<br>
|
||||
<div style="float: left" class="ellipse"></div>
|
||||
<span id="test0">X</span><br>
|
||||
<span id="test1">X</span><br>
|
||||
<span id="test2">X</span><br>
|
||||
<span id="test3">X</span><br>
|
||||
<span id="test4">X
|
||||
</span></div>
|
||||
<script src="../support/rounded-rectangle.js"></script>
|
||||
<script src="../support/subpixel-utils.js"></script>
|
||||
<script src="../support/test-utils.js"></script>
|
||||
<script>
|
||||
verifyTextPoints({
|
||||
roundedRect: {x: 0, y: 20, width: 160, height: 80, rx: 80, ry: 40},
|
||||
containerWidth: 200,
|
||||
containerHeight: 200,
|
||||
lineHeight: 20
|
||||
}, 9);
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
Loading…
Add table
Add a link
Reference in a new issue