servo/tests/wpt/css-tests/css-masking-1_dev/xhtml1/clip-path-polygon-013.xht

45 lines
No EOL
1.7 KiB
HTML

<!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>