Backed out changeset 52f9c007281d (bug 1224251) for Android Reftest failures on a CLOSED TREE

This commit is contained in:
Carsten "Tomcat" Book 2015-11-30 12:17:47 +01:00
parent cc20ee2504
commit ab68a167ba
5 changed files with 0 additions and 167 deletions

View File

@ -58,5 +58,3 @@ skip-if(B2G||Mulet) == border-separate-opacity-table.html border-separate-opacit
== scrollable-rowgroup-separate-border.html scrollable-rowgroup-separate-notref.html # scrolling rowgroups were removed in bug 28800
== empty-cells-default-1.html empty-cells-default-1-ref.html
== empty-cells-default-2.html empty-cells-default-2-ref.html
fails == table-row-opacity-dynamic-1.html table-row-opacity-dynamic-1-ref.html # bug 1224253
fails == table-row-opacity-dynamic-2.html table-row-opacity-dynamic-2-ref.html # bug 1224251

View File

@ -1,28 +0,0 @@
<!DOCTYPE HTML>
<html>
<title>Test for bug 1224253</title>
<style>
body { background: white; color: black }
table {
padding: 0;
border-spacing: 0;
border: none;
width: 15em;
}
tr {
background: rgba(0, 0, 255, 0.8);
}
td {
border: none;
}
</style>
<table>
<tr style="opacity: 0.8"><td>cell</td></tr>
</table>

View File

@ -1,55 +0,0 @@
<!DOCTYPE HTML>
<html class="reftest-wait">
<title>Test for bug 1224253</title>
<style>
body { background: white; color: black }
table {
padding: 0;
border-spacing: 0;
border: none;
width: 15em;
}
tr {
background: rgba(0, 0, 255, 0.8);
}
td {
border: none;
}
</style>
<table>
<tr><td>cell</td></tr>
</table>
<script>
var tr = document.getElementsByTagName("tr")[0];
document.addEventListener("MozReftestInvalidate", step1, false);
function step1(event) {
requestAnimationFrame(step2);
}
function step2(now) {
tr.style.opacity = "0.8";
setTimeout(step3, 0);
}
function step3() {
tr.style.opacity = "0.8";
setTimeout(step4, 0);
}
function step4() {
tr.style.opacity = "0.8";
document.documentElement.classList.remove("reftest-wait");
}
</script>

View File

@ -1,28 +0,0 @@
<!DOCTYPE HTML>
<html>
<title>Test for bug 1224253</title>
<style>
body { background: white; color: black }
table {
padding: 0;
border-spacing: 0;
border: none;
width: 15em;
}
tr {
background: rgba(0, 0, 255, 0.8);
}
td {
border: none;
}
</style>
<table>
<tr><td>cell</td></tr>
</table>

View File

@ -1,54 +0,0 @@
<!DOCTYPE HTML>
<html class="reftest-wait">
<title>Test for bug 1224251</title>
<style>
body { background: white; color: black }
table {
padding: 0;
border-spacing: 0;
border: none;
width: 15em;
}
tr {
background: rgba(0, 0, 255, 0.8);
}
td {
border: none;
}
</style>
<table>
<tr style="opacity: 0.8"><td>cell</td></tr>
</table>
<script>
var tr = document.getElementsByTagName("tr")[0];
// Not sure why, but to make this test fail without the patch, this has to
// be a setTimeout(0) rather than waiting for MozReftestInvalidate.
setTimeout(step1, 0);
function step1() {
tr.style.opacity = "0.8";
setTimeout(step2, 0);
}
function step2() {
tr.style.opacity = "0.8";
setTimeout(step3, 0);
}
function step3() {
tr.style.opacity = "";
document.documentElement.classList.remove("reftest-wait");
}
</script>