mirror of
https://github.com/servo/servo.git
synced 2025-08-08 15:05:35 +01:00
Update CSS tests to revision b9c63d615a65c4d96f26969bcd504d4e1c3cdab8
This commit is contained in:
parent
0e0e902edd
commit
4d13f9f5d5
641 changed files with 24127 additions and 11370 deletions
57
tests/wpt/css-tests/css-masking-1_dev/html/mask-clip-1.htm
Normal file
57
tests/wpt/css-tests/css-masking-1_dev/html/mask-clip-1.htm
Normal file
|
@ -0,0 +1,57 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Masking: mask-clip: clip mask image</title>
|
||||
<link href="mailto:aschen@mozilla.com" rel="author" title="Astley Chen">
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla">
|
||||
<link href="http://www.w3.org/TR/css-masking-1/#the-mask-clip" rel="help">
|
||||
<link href="reference/mask-clip-1-ref.htm" rel="match">
|
||||
<meta content="border-box, padding-box, and content-box values of mask-clip should clip to the appropriate boxes." name="assert">
|
||||
<style type="text/css">
|
||||
div {
|
||||
/*
|
||||
* content box: 40 x 20
|
||||
* padding box: 52 x 38
|
||||
* border box: 60 x 50
|
||||
* margin box: 66 x 54
|
||||
*/
|
||||
background-color: purple;
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
margin: 1px 2px 3px 4px;
|
||||
border: solid transparent;
|
||||
border-width: 8px 2px 4px 6px;
|
||||
padding: 6px 9px 12px 3px;
|
||||
width: 40px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
div.mask {
|
||||
mask-size: 100% 100%;
|
||||
mask-origin: border-box;
|
||||
mask-image: url(support/transparent-100x50-blue-100x50.svg);
|
||||
}
|
||||
|
||||
div.border {
|
||||
left: 10px;
|
||||
mask-clip: border-box;
|
||||
}
|
||||
|
||||
div.padding {
|
||||
left: 110px;
|
||||
mask-clip: padding-box;
|
||||
}
|
||||
|
||||
div.content {
|
||||
left: 210px;
|
||||
mask-clip: content-box;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="outer mask border"></div>
|
||||
<div class="outer mask padding"></div>
|
||||
<div class="outer mask content"></div>
|
||||
|
||||
|
||||
</body></html>
|
Loading…
Add table
Add a link
Reference in a new issue