1
0
Fork 0
firefox/testing/web-platform/mozilla/tests/mathml/tables/mtable-width.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

46 lines
794 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Check that mtable supports the width attribute</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="match" href="mtable-width-ref.html"/>
</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>