mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-26 23:23:33 +00:00
new regression tests
This commit is contained in:
parent
325e6127c6
commit
7575c07a5b
layout/html/tests/table
16
layout/html/tests/table/bugs/bug12008.html
Normal file
16
layout/html/tests/table/bugs/bug12008.html
Normal file
@ -0,0 +1,16 @@
|
||||
<html>
|
||||
<style>
|
||||
body
|
||||
{
|
||||
background-color: white;
|
||||
}
|
||||
td.gurk
|
||||
{
|
||||
background: url("../images/rock_gra.gif") top left repeat-x fixed;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<table border width="100%" height="100%">
|
||||
<tr><td>Hurz</td><td class="gurk">very long text that forces the browser window
|
||||
to be scrolled</td></tr>
|
||||
</body>
|
8
layout/html/tests/table/bugs/bug5798.html
Normal file
8
layout/html/tests/table/bugs/bug5798.html
Normal file
@ -0,0 +1,8 @@
|
||||
<html><body bgcolor=#c0c0c0>
|
||||
|
||||
<table border=5 height=100%>
|
||||
<tr>
|
||||
<td>This table is set to a height of 100%. It should just fit the page.</td>
|
||||
</table>
|
||||
|
||||
</body></html>
|
@ -9,6 +9,7 @@ file:///s:/mozilla/layout/html/tests/table/bugs/bug1128.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug1164.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug1188.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug11944.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug12008.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug1220.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug1224.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug12268.html
|
||||
@ -72,6 +73,7 @@ file:///s:/mozilla/layout/html/tests/table/bugs/bug4739.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug4803.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug5188.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug5797.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug5798.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug5838.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug625.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug6184.html
|
||||
|
@ -1,13 +1,14 @@
|
||||
file:///s:/mozilla/layout/html/tests/table/core/backgrounds.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/bloomberg.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/one_row.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/col_span.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/col_widths.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/conflicts.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/columns.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/col_widths2.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/misc.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/row_span.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/col_span.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/col_span2.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/col_widths.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/col_widths2.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/conflicts.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/misc.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/one_row.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/row_span.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/table_heights.html
|
||||
file:///s:/mozilla/layout/html/tests/table/core/table_widths.html
|
||||
|
||||
|
19
layout/html/tests/table/core/table_heights.html
Normal file
19
layout/html/tests/table/core/table_heights.html
Normal file
@ -0,0 +1,19 @@
|
||||
<html>
|
||||
<style>
|
||||
html {
|
||||
marginx:10px; padding:10px; border:2px solid red;
|
||||
}
|
||||
body
|
||||
{
|
||||
margin:10px; paddingx:10px;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<table border width="100%" height="100%">
|
||||
<tr>
|
||||
<td>FOO</td>
|
||||
<td>BAR</td></tr>
|
||||
</table>
|
||||
</body>
|
||||
|
||||
|
30
layout/html/tests/table/interactive/bug11479.html
Normal file
30
layout/html/tests/table/interactive/bug11479.html
Normal file
@ -0,0 +1,30 @@
|
||||
<html><head><title>weird bug</title></head>
|
||||
<body>
|
||||
<form><table border=1>
|
||||
<tr>
|
||||
<td nowrap>
|
||||
<fieldset>
|
||||
<legend align=center>Spacing</legend>
|
||||
<table width="100%" border=1>
|
||||
<tr>
|
||||
<td>
|
||||
<label>
|
||||
Letter:<br>
|
||||
<select type="select-one" name="letter-spacing-selector" size=1 maxlength=80>
|
||||
<option>foo</option>
|
||||
</select>
|
||||
</label>
|
||||
When in GFX render mode for combobox a table cell grows with each click of the
|
||||
combobox button.
|
||||
|
||||
Example:
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user