mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-11 16:32:59 +00:00
new table regression testcases - not part of the build
This commit is contained in:
parent
05f6d1c0b2
commit
009c63bbfe
30
layout/html/tests/table/bugs/bug101201.html
Normal file
30
layout/html/tests/table/bugs/bug101201.html
Normal file
@ -0,0 +1,30 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>dom test - editor inspired - border width dropped during reflow</title>
|
||||
<script>
|
||||
function domfunc(){
|
||||
var td1= document.getElementById("stretch");
|
||||
var text = document.createTextNode("100000");
|
||||
td1.appendChild(text);
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
td {border:solid 5px green}
|
||||
</style>
|
||||
</head>
|
||||
<body onload="domfunc()">
|
||||
dom access
|
||||
<table border="1" cellspacing="1" >
|
||||
<tr>
|
||||
<td id="stretch"></td>
|
||||
</tr>
|
||||
</table>
|
||||
reference
|
||||
<table border="1" cellspacing="1" >
|
||||
<tr>
|
||||
<td>100000</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
27
layout/html/tests/table/bugs/bug108340.html
Normal file
27
layout/html/tests/table/bugs/bug108340.html
Normal file
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
||||
"http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title> reflow style changed - target: outertable frame </title>
|
||||
<script type="text/javascript">
|
||||
|
||||
function buildTable_dom_html() {
|
||||
|
||||
var d1 = document.getElementsByTagName("table")[0];
|
||||
d1.setAttribute("style", "font-size:30pt;");
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body onload="buildTable_dom_html()" >
|
||||
<div>
|
||||
<table border="1">
|
||||
<tr>
|
||||
<td>
|
||||
aaaaa
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -2,6 +2,7 @@ file:///s|/mozilla/layout/html/tests/table/bugs/bug10009.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug106336.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug106816.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug1010.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug101201.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug101759.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug10140.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug10216.html
|
||||
@ -18,6 +19,7 @@ file:///s|/mozilla/layout/html/tests/table/bugs/bug10565.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug10633.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug1067-1.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug1067-2.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug108340.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug11026.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug1128.html
|
||||
file:///s|/mozilla/layout/html/tests/table/bugs/bug11321.html
|
||||
|
Loading…
Reference in New Issue
Block a user