blob: 20dd6e92621fc85918c4d9b7266a34e96dc4c5a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="resources/squash-with-ancestor-property.css">
<style>
#ancestor {
background-blend-mode: difference, normal;
}
#composited-overlap-child {
background-image: url(resources/blue.png);
}
</style>
<script src="resources/squash-with-ancestor-property.js"></script>
<script>
window.onload = generateDom;
</script>
</head>
<body>
</body>
|