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