gecko/layout/reftests/svg/foreignObject-fixedpos-01.html
Boris Zbarsky 94ceecd475 Bug 640917. Treat foreignObject as a fixed position containing block. r=jwatt
--HG--
rename : layout/reftests/svg/foreignObject-dynamic-abspos-01.html => layout/reftests/svg/foreignObject-dynamic-fixedpos-01.html
rename : layout/reftests/svg/foreignObject-dynamic-abspos-01-ref.html => layout/reftests/svg/foreignObject-fixedpos-01.html
2012-02-21 18:01:41 -05:00

11 lines
266 B
HTML

<!DOCTYPE html>
<div style="height: 100px">
</div>
<svg width="200" height="200" style="overflow: visible">
<foreignObject width="200" height="200">
<div id="x" style="position:fixed; top: 0; left: 0">
This is a test
</div>
</foreignObject>
</svg>