Bug 547801 - Fix sort-additive-1 test to use MozReftestInvalidate. r=dholbert

This commit is contained in:
Matt Woodrow 2012-03-01 21:26:09 +13:00
Родитель 70ef613582
Коммит cf5338f1be
1 изменённых файлов: 2 добавлений и 24 удалений

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

@ -1,40 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
class="reftest-wait"
onload="swapAnimations()">
class="reftest-wait">
<script type="text/ecmascript"><![CDATA[
// debugging bug 547801:
var called_shuffleAnimations = false;
function swapAnimations() {
setTimeout('shuffleAnimations()',10);
setTimeout('finished()',20);
}
function shuffleAnimations()
{
called_shuffleAnimations = true;
var high = document.getElementById("high");
high.parentNode.insertBefore(high, null);
var low = document.getElementById("low");
low.parentNode.insertBefore(low, low.parentNode.firstChild);
}
function finished()
{
if (!called_shuffleAnimations) {
var line =
document.createElementNS('http://www.w3.org/2000/svg', 'line');
line.setAttribute('x2', '100%');
line.setAttribute('y2', '100%');
line.setAttribute('stroke', 'red');
line.setAttribute('stroke-width', '10');
document.documentElement.appendChild(line);
}
setTimeAndSnapshot(3.1, true);
}
window.addEventListener("MozReftestInvalidate", swapAnimations, false);
]]></script>
<script xlink:href="../smil-util.js" type="text/javascript"/>
<!-- start line -->

До

Ширина:  |  Высота:  |  Размер: 5.4 KiB

После

Ширина:  |  Высота:  |  Размер: 4.9 KiB