blob: 0ae0a20dc7be4af83cfa34c8a705e1195a5e23d9 (
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
28
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>When the filtered element's BBox relative to the page changes, the filtered element needs to be invalidated</title>
<style>
#spacer {
height: 50px;
}
#filtered {
width: 100px;
height: 100px;
background-color: lime;
}
</style>
<svg height="0"></svg>
<div id="spacer"></div>
<div id="filtered"></div>
|