blob: a34552776af746c685b14a6b4792471c7f275084 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<svg xmlns="http://www.w3.org/2000/svg">
<script type="text/javascript">
function boom()
{
document.documentElement.style.columnCount = '15';
}
window.onload = function() { setTimeout(boom, 20); };
</script>
<foreignObject width="50" height="50" filter="url(#f1)"/>
<filter id="f1"/>
</svg>
|