1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/384649-1.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 +<head> 1.6 +<style> 1.7 + 1.8 +/* use attribute selector instead of the .class shorthand to work around bug 379178 */ 1.9 + 1.10 +*[class="fixed"] { position: fixed; } 1.11 + 1.12 +math, mtable, mtr { position: inherit; } 1.13 + 1.14 +</style> 1.15 +</head> 1.16 + 1.17 +<body> 1.18 + 1.19 +<div class="fixed"> 1.20 + <math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> 1.21 + <mtable> 1.22 + <mtr class="fixed"> 1.23 + <mtd><mi>x</mi></mtd> 1.24 + </mtr> 1.25 + <mtr> 1.26 + <mtd><mi>y</mi></mtd> 1.27 + </mtr> 1.28 + </mtable> 1.29 + </math> 1.30 +</div> 1.31 + 1.32 +</body> 1.33 + 1.34 +</html>