mirror of
https://github.com/servo/servo.git
synced 2025-08-23 22:35: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,45 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<title>CSS Masking: Test clip-path and polygon different units</title>
|
||||
<link href="mailto:dschulze@adobe.com" rel="author" title="Dirk Schulze" />
|
||||
<link href="http://www.w3.org/TR/css-masking-1/#clipping-paths" rel="help" />
|
||||
<link href="http://www.w3.org/TR/css-masking-1/#propdef-clip-path" rel="help" />
|
||||
<link href="reference/clip-path-stripes-003-ref.xht" rel="match" />
|
||||
<meta content="Test the support of different units for
|
||||
polygon coordinates. The test passes if you see a multiple green and blue
|
||||
stripe pairs. For each pair, the blue and green stripe must be of same
|
||||
length." name="assert" />
|
||||
<style>
|
||||
div {
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
background-color: green;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
div:nth-child(odd) {
|
||||
margin-bottom: 5px;
|
||||
background-color: blue;
|
||||
}
|
||||
</style>
|
||||
</head><body>
|
||||
<p>The test passes if you see a multiple green and blue stripe pairs. For each pair, the blue and green stripe must be of same length.</p>
|
||||
<div style="clip-path: polygon(0 0, 50% 0, 50% 20px, 0 20px)"></div>
|
||||
<div style="width: 50%"></div>
|
||||
|
||||
<div style="clip-path: polygon(0 0, 20em 0, 20em 20px, 0 20px)"></div>
|
||||
<div style="width: 20em"></div>
|
||||
|
||||
<div style="clip-path: polygon(0 0, 50vw 0, 50vw 20px, 0 20px)"></div>
|
||||
<div style="width: 50vw"></div>
|
||||
|
||||
<div style="clip-path: polygon(0 0, 40vh 0, 40vh 20px, 0 20px)"></div>
|
||||
<div style="width: 40vh"></div>
|
||||
|
||||
<div style="clip-path: polygon(0 0, calc(30% + 15px) 0, calc(30% + 15px) 20px, 0 20px)"></div>
|
||||
<div style="width: calc(30% + 15px)"></div>
|
||||
|
||||
<div style="clip-path: polygon(0 0, 30ex 0, 30ex 20px, 0 20px)"></div>
|
||||
<div style="width: 30ex"></div>
|
||||
|
||||
</body></html>
|
Loading…
Add table
Add a link
Reference in a new issue