More regression tests

This commit is contained in:
bzbarsky%mit.edu 2006-04-26 03:32:01 +00:00
parent 3dccac0b7a
commit 8f771760d6
6 changed files with 37 additions and 3 deletions

View File

@ -0,0 +1,16 @@
<html>
<title>
Tests HTML buttons and min/max-width, quirks mode
</title>
<body>
<div>
<button style="width: 200px">200px button</button>
</div>
<div>
<button style="min-width: 200px">200px button</button>
</div>
<div>
<button style="max-width: 200px"><div style="width: 300px">200px button</div></button>
</div>
</body>
</html>

View File

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<title>
Tests HTML buttons and min/max-width, standards mode
</title>
<body>
<div>
<button style="width: 200px">200px button</button>
</div>
<div>
<button style="min-width: 200px">200px button</button>
</div>
<div>
<button style="max-width: 200px"><div style="width: 300px">200px button</div></button>
</div>
</body>
</html>

View File

@ -1,6 +1,6 @@
<html>
<title>
Tests HTML buttons with margins, quirks mode
Tests HTML buttons without margins, quirks mode
</title>
<body>
<div>

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<title>
Tests HTML buttons with margins, quirks mode
Tests HTML buttons without margins, standards mode
</title>
<body>
<div>

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<title>
Tests HTML buttons with margins, quirks mode
Tests HTML buttons with margins, standards mode
</title>
<body>
<div>

View File

@ -39,3 +39,4 @@ button_no_margin.html
button_no_margin_strict.html
button_with_margin.html
button_with_margin_strict.html
button_min_max_widths.html