mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
30 lines
553 B
XML
30 lines
553 B
XML
<svg xmlns="http://www.w3.org/2000/svg"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
onload="setTimeout(boom, 30);"
|
|
class="reftest-wait">
|
|
|
|
<html:script>
|
|
|
|
function boom()
|
|
{
|
|
document.getElementById("text").appendChild(document.getElementById("fo"));
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</html:script>
|
|
|
|
<defs>
|
|
<marker>
|
|
<text id="text">svg:text</text>
|
|
</marker>
|
|
</defs>
|
|
|
|
<foreignObject id="fo">
|
|
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
<p>HTML in a foreignObject</p>
|
|
</div>
|
|
</foreignObject>
|
|
|
|
</svg>
|