gecko-dev/layout/reftests/bugs/1330051.svg
Manish Goregaokar b8c378e1a5 Bug 1330051; Reparse style attribute when adopting across style backends; r=bz
MozReview-Commit-ID: LWN57KApiMu

--HG--
extra : rebase_source : 20cfb66a8d6d5f88aa3db9cc6876f986d71290b4
2017-03-24 15:28:19 -07:00

17 lines
602 B
XML

<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>