blob: 90965e93019f5d5b0a0c0233f24ac493b8bcaf9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" class="reftest-wait">
<foreignObject width="500" height="500">
<iframe xmlns="http://www.w3.org/1999/xhtml"
srcdoc="A test">
</iframe>
<div xmlns="http://www.w3.org/1999/xhtml"
style="color: green" id="myDiv">This should remain green</div>
</foreignObject>
<script>
let el = document.getElementById('myDiv');
frames[0].onload = function() {
var doc = frames[0].document;
doc.body.appendChild(el);
document.documentElement.removeAttribute("class");
}
</script>
</svg>
|