mtable-width.html 758 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Check that mtable supports the width attribute</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  6. </head>
  7. <body>
  8. <div>
  9. <math>
  10. <mtext>|</mtext>
  11. <mtable width="8em">
  12. <mtr>
  13. <mtd></mtd>
  14. </mtr>
  15. </mtable>
  16. <mtext>|</mtext>
  17. </math>
  18. </div>
  19. <div>
  20. <math>
  21. <mtext>|</mtext>
  22. <mtable width="30px">
  23. <mtr>
  24. <mtd></mtd>
  25. </mtr>
  26. </mtable>
  27. <mtext>|</mtext>
  28. </math>
  29. </div>
  30. <div>
  31. <math>
  32. <mtext>|</mtext>
  33. <mtable width="auto">
  34. <mtr>
  35. <mtd></mtd>
  36. </mtr>
  37. </mtable>
  38. <mtext>|</mtext>
  39. </math>
  40. </div>
  41. </body>
  42. </html>