1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!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>
|