diff options
Diffstat (limited to 'layout/reftests/bugs/363874-max-width.html')
-rw-r--r-- | layout/reftests/bugs/363874-max-width.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/bugs/363874-max-width.html b/layout/reftests/bugs/363874-max-width.html new file mode 100644 index 0000000000..026d8724f4 --- /dev/null +++ b/layout/reftests/bugs/363874-max-width.html @@ -0,0 +1,19 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> +<html> +<head> + <title>Testcase, bug 363874</title> +</head> +<body> + +<table border width="100%"> + <tr><td style="max-width: 100em">100</td><td width="50">50</td></tr> +</table> + +<table border> + <tr><td style="max-width: 100em">aoeui aoeui aoeui aoeui aoeui aoeui aoeui aoeui aoeui</td></tr> + <tr><td width="100">100</td></tr> +</table> + +</body> +</html> |