mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +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,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<title>CSS mix-blend-mode API Test</title>
|
||||
<link href="mailto:yangdemo@gmail.com" rel="author" title="dmyang">
|
||||
<link href="mailto:cabanier@adobe.com" rel="reviewer" title="Rik Cabanier"><!-- 11-09-2013 @TestTWF Shenzhen -->
|
||||
<link href="http://www.w3.org/TR/compositing-1/#mix-blend-mode" rel="help">
|
||||
<meta content="svg" name="flags">
|
||||
<style type="text/css">
|
||||
.svg {
|
||||
background-color: #888;
|
||||
width: 500px;
|
||||
display: block;
|
||||
height: 60px;
|
||||
margin: 10px auto;
|
||||
}
|
||||
.svg text {
|
||||
font-size: 25px;
|
||||
line-height: 20px;
|
||||
}
|
||||
</style>
|
||||
<style type="text/css" id="insert"></style>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
var SVG_NS = 'http://www.w3.org/2000/svg';
|
||||
var modes = [
|
||||
'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dodge',
|
||||
'color-burn', 'hard-light', 'soft-light', 'difference', 'exclusion'
|
||||
];
|
||||
var mode;
|
||||
var i = 0;
|
||||
var flagment = document.createDocumentFragment();
|
||||
var style = '';
|
||||
|
||||
while(mode = modes[i++]) {
|
||||
var svg = document.createElementNS(SVG_NS, 'svg');
|
||||
var text = document.createElementNS(SVG_NS, 'text');
|
||||
|
||||
svg.setAttribute('class', 'svg');
|
||||
text.setAttribute('x', 10);
|
||||
text.setAttribute('y', 20);
|
||||
text.setAttribute('class', mode);
|
||||
text.textContent = 'mix-blend-mode: ' + mode + ';';
|
||||
|
||||
svg.appendChild(text);
|
||||
flagment.appendChild(svg);
|
||||
|
||||
style += '.' + mode + ' {mix-blend-mode: ' + mode + ';}';
|
||||
}
|
||||
|
||||
document.getElementById('insert').innerHTML = style;
|
||||
document.body.appendChild(flagment);
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
Loading…
Add table
Add a link
Reference in a new issue