blob: 3adf327b049d22f1b431f3cc6a2abd6a19ef33f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
div {
background-color: blue;
position: absolute;
margin: 0px;
padding: 0px;
width: 100px;
height: 100px;
top: 10px;
}
div.auto {
left: 10px;
mask-mode: match-source;
mask-image: -moz-element(#blue-bg);
}
div.alpha {
left: 120px;
mask-mode: alpha;
mask-image: -moz-element(#blue-bg);
}
div.luminance1 {
left: 230px;
mask-mode: luminance;
mask-image: -moz-element(#blue-bg);
}
div.luminance2 {
left: 340px;
mask-mode: luminance;
mask-image: -moz-element(#red-bg);
}
div.luminance3 {
left: 450px;
mask-mode: luminance;
mask-image: -moz-element(#lime-bg);
}
</style>
</head>
<body>
<div class="auto"></div>
<div class="alpha"></div>
<div class="luminance1"></div>
<div class="luminance2"></div>
<div class="luminance3"></div>
<div style="overflow:hidden; height:0;">
<div id="blue-bg" style="width:100px; height:100px; background-color: blue;"> </div>
</div>
<div style="overflow:hidden; height:0;">
<div id="red-bg" style="width:100px; height:100px; background-color: red;"></div>
</div>
<div style="overflow:hidden; height:0;">
<div id="lime-bg" style="width:100px; height:100px; background-color: lime;"></div>
</div>
</body>
</html>
|