dynamic--object-svg-unloaded-b.xhtml (808B)
1 <!-- 2 Any copyright is dedicated to the Public Domain. 3 http://creativecommons.org/publicdomain/zero/1.0/ 4 --> 5 <html xmlns="http://www.w3.org/1999/xhtml"> 6 <head> 7 8 <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=294086 --> 9 10 <title>SVG embedded by reference by dynamic--object-svg-unloaded.xhtml</title> 11 12 <style type="text/css"> 13 14 html { 15 padding: 0; 16 border: 0; 17 margin: 0; 18 background: lime; 19 } 20 21 </style> 22 23 <script type="text/javascript"> 24 25 var embedding_element; 26 27 function handle_load(e) 28 { 29 embedding_element = e.originalTarget.defaultView.frameElement; 30 embedding_element.ownerDocument.documentElement.removeAttribute('class'); 31 } 32 33 </script> 34 35 </head> 36 <body onload="handle_load(event);" style="display:none;"></body> 37 </html>