mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
22 lines
354 B
HTML
22 lines
354 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function tweak(){
|
|
document.body.innerHTML="fuzz"
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="tweak()">
|
|
<svg xmlns="http://www.w3.org/2000/svg">
|
|
<text>
|
|
<foreignObject requiredFeatures="foo">
|
|
<svg style="position: absolute;"/>
|
|
</foreignObject>
|
|
</text>
|
|
</svg>
|
|
</body>
|
|
</html>
|
|
|
|
|