Bug 722880 - reftests for attribute width on mtable. r=karlt

This commit is contained in:
François Wang 2012-02-27 18:57:28 -05:00
parent b7b50cb81c
commit 6049fbc6ef
3 changed files with 92 additions and 0 deletions

View File

@ -0,0 +1,45 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<div>
<math>
<mtext>|</mtext>
<mtable style="width:8em">
<mtr>
<mtd></mtd>
</mtr>
</mtable>
<mtext>|</mtext>
</math>
</div>
<div>
<math>
<mtext>|</mtext>
<mtable style="width:30px">
<mtr>
<mtd></mtd>
</mtr>
</mtable>
<mtext>|</mtext>
</math>
</div>
<div>
<math>
<mtext>|</mtext>
<mtable>
<mtr>
<mtd></mtd>
</mtr>
</mtable>
<mtext>|</mtext>
</math>
</div>
</body>
</html>

View File

@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<head>
<title>Check that mtable supports the width attribute</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<div>
<math>
<mtext>|</mtext>
<mtable width="8em">
<mtr>
<mtd></mtd>
</mtr>
</mtable>
<mtext>|</mtext>
</math>
</div>
<div>
<math>
<mtext>|</mtext>
<mtable width="30px">
<mtr>
<mtd></mtd>
</mtr>
</mtable>
<mtext>|</mtext>
</math>
</div>
<div>
<math>
<mtext>|</mtext>
<mtable width="auto">
<mtr>
<mtd></mtd>
</mtr>
</mtable>
<mtext>|</mtext>
</math>
</div>
</body>
</html>

View File

@ -96,3 +96,4 @@ fails == mstyle-5.xhtml mstyle-5-ref.xhtml # See bug 569125#c29
!= link-1.xhtml link-ref.xhtml
== munderover-empty-scripts.html munderover-empty-scripts-ref.html
== positive-namedspace.html positive-namedspace-ref.html
== mtable-width.html mtable-width-ref.html