object--pct-pct--0-0.html (837B)
1 <!-- 2 Any copyright is dedicated to the Public Domain. 3 http://creativecommons.org/publicdomain/zero/1.0/ 4 --> 5 <html> 6 <head> 7 8 <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=288276 --> 9 10 <title>Test: the width/height of SVG embedded by reference must be overridden</title> 11 12 <style type="text/css"> 13 14 * { 15 padding: 0; 16 border: 0; 17 margin: 0; 18 width: 100%; 19 height: 100%; 20 background: red; 21 } 22 23 </style> 24 25 </head> 26 <body> 27 <!-- embedded SVG has width="0" height="0" which should be overridden --> 28 <object type="image/svg+xml" data="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIwIiBoZWlnaHQ9IjAiPg0KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJsaW1lIi8%2BDQo8L3N2Zz4%3D">FAILED TO LOAD</object> 29 </body> 30 </html>