Update CSS tests to revision 7d0ff6117ee51720c307ea24d413d13eb5abf3e6

This commit is contained in:
Ms2ger 2016-03-01 16:08:43 +01:00
parent 40c52d55e2
commit 349c75536d
7391 changed files with 304135 additions and 153491 deletions

View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<title>CSS mask-composite reference</title>
<link href="mailto:cku@mozilla.com" rel="author" title="CJ Ku">
<link href="https://www.mozilla.org" rel="author" title="Mozilla">
<style type="text/css">
div {
position: absolute;
margin: 0px;
padding: 0px;
width: 100px;
height: 100px;
top: 10px;
}
div.add {
left: 10px;
background-color: blue;
}
div.substract {
left: 120px;
background-image: url(support/blue-100x50-transparent-100x50.svg);
}
div.exclude {
left: 340px;
background-color: blue;
}
</style>
</head>
<body>
<div class="add"></div>
<div class="substract"></div>
<div class="exclude"></div>
</body></html>