This commit is contained in:
jruderman@hmc.edu 2007-12-23 19:01:26 -08:00
Родитель 7e4b7d38ec
Коммит 0e4b4d6f1d
4 изменённых файлов: 75 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,29 @@
<html>
<head>
<style id="style"></style>
<script>
function hmm()
{
document.getElementById("style").textContent = "td { overflow: scroll; } table { background: lightblue; }";
}
</script>
</head>
<body onload="hmm()">
<table><tr><td>Foopy</td></tr></table>
</body>
</html>

Просмотреть файл

@ -0,0 +1,20 @@
<html class="reftest-wait">
<head>
<script>
function boom() {
var newNode = document.createElementNS("http://www.w3.org/1999/xhtml", 'table');
document.getElementById('td').appendChild(newNode);
document.getElementById('table2').setAttribute('align', 'right');
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom,30)">
<table id="table2"><tr><td id="td"></table>
</body>
</html>

Просмотреть файл

@ -0,0 +1,23 @@
<html class="reftest-wait">
<head>
<script>
function boom() {
var $table2 = document.getElementById('table2');
$table2.setAttribute('width', '30%');
var $th273 = document.getElementById('th273');
$th273.style.position = "relative";
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom,30)">
<table id="table2"><tr><div><th id="th273"></th></div></table>
</body>
</html>

Просмотреть файл

@ -21,6 +21,7 @@ load 336999-1.xul
load 337268-1.html
load 337419-1.html
load 337476-1.xul
load 338703-1.html
load 339651-1.html
load 343540-1.html
load 344340-1.xul
@ -42,6 +43,8 @@ load 371681-1.xhtml
load 372237-1.html
load 372475-1.xhtml
load 372550-1.html
load 374297-1.html
load 374297-2.html
load 376223-1.xhtml
load 379419-1.xhtml
load 379799-1.html