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