зеркало из https://github.com/mozilla/gecko-dev.git
Adding tests
This commit is contained in:
Родитель
c682072500
Коммит
7c8c6db158
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
table { background: white; }
|
||||
td { color: white; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table>
|
||||
<td>One</td>
|
||||
<td>Two</td>
|
||||
<td>Three</td>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="reftest-wait">
|
||||
<head>
|
||||
<style>
|
||||
table { background: white; }
|
||||
col { background: green; }
|
||||
td { color: white; }
|
||||
</style>
|
||||
<script>
|
||||
function boom()
|
||||
{
|
||||
var col = document.getElementsByTagName("col")[0];
|
||||
col.parentNode.removeChild(col);
|
||||
document.documentElement.className = "";
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body onload="boom();">
|
||||
<table>
|
||||
<col span="3">
|
||||
<td>One</td>
|
||||
<td>Two</td>
|
||||
<td>Three</td>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
table { background: white; }
|
||||
td { color: black; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table>
|
||||
<td>One</td>
|
||||
<td>Two</td>
|
||||
<td>Three</td>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="reftest-wait">
|
||||
<head>
|
||||
<style>
|
||||
table { background: white; }
|
||||
col { visibility: collapse; }
|
||||
td { color: black; }
|
||||
</style>
|
||||
<script>
|
||||
function boom()
|
||||
{
|
||||
var col = document.getElementsByTagName("col")[0];
|
||||
col.parentNode.removeChild(col);
|
||||
document.documentElement.className = "";
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body onload="boom();">
|
||||
<table>
|
||||
<col span="3">
|
||||
<td>One</td>
|
||||
<td>Two</td>
|
||||
<td>Three</td>
|
||||
</body>
|
||||
</html>
|
|
@ -471,6 +471,8 @@ fails == 386310-1d.html 386310-1-ref.html
|
|||
== 398797-1b.html 398797-1-ref.html
|
||||
== 398797-1c.html 398797-1-ref.html
|
||||
== 398797-1d.html 398797-1-ref.html
|
||||
== 399209-1.html 399209-1-ref.html
|
||||
== 399209-2.html 399209-2-ref.html
|
||||
== 399384-1.html 399384-1-ref.html
|
||||
== 400081-1.html about:blank
|
||||
== 400171-1a.html 400171-1-ref.html
|
||||
|
|
Загрузка…
Ссылка в новой задаче