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