mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset 52f9c007281d (bug 1224251) for Android Reftest failures on a CLOSED TREE
This commit is contained in:
parent
cc20ee2504
commit
ab68a167ba
@ -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
|
||||
|
@ -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>
|
@ -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>
|
@ -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>
|
@ -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>
|
Loading…
Reference in New Issue
Block a user