blob: 8420d0105da1b2dc7777f37e8e4601ac3c09af10 (
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
|
<!DOCTYPE html>
<html>
<head>
<title>Test context-fill-opacity with different fill-opacity values (test image caching correctness)</title>
<style>
img {
width: 100px;
height: 100px;
-moz-context-properties: fill-opacity;
}
#img1 {
fill-opacity: 0.3;
}
#img2 {
fill-opacity: 0.7;
}
</style>
</head>
<body>
<img id="img1" src="context-fill-opacity-02.svg">
<img id="img2" src="context-fill-opacity-02.svg">
</body>
</html>
|