mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
436 B
HTML
29 lines
436 B
HTML
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
document.getElementById("foo").appendChild(document.getElementById("bar"));
|
||
|
}
|
||
|
|
||
|
window.addEventListener("load", boom, false);
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div id="foo"></div>
|
||
|
|
||
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
<defs>
|
||
|
<linearGradient id="grad1"/>
|
||
|
</defs>
|
||
|
<rect id="bar" style="fill:url(#grad1);" />
|
||
|
</svg>
|
||
|
|
||
|
</body>
|
||
|
</html>
|