| Index: LayoutTests/svg/custom/resource-client-removal.svg
|
| diff --git a/LayoutTests/svg/custom/resource-client-removal.svg b/LayoutTests/svg/custom/resource-client-removal.svg
|
| index 0bf7b96c0f6d806ec26eb081f70bcaf47b47f3a4..3fd84f48949257aa8f549900a36f132e37ea9078 100644
|
| --- a/LayoutTests/svg/custom/resource-client-removal.svg
|
| +++ b/LayoutTests/svg/custom/resource-client-removal.svg
|
| @@ -6,16 +6,18 @@ window.testIsAsync = true;
|
| function repaintTest() {
|
| container = document.getElementById("inneruse");
|
| stop = document.getElementById("offset");
|
| - setTimeout(offset, 0);
|
| + // FIXME: we need a better way of waiting for layout/repainting to happen
|
| + setTimeout(offset, 1);
|
| }
|
| var turns = 5;
|
| function offset(){
|
| container.setAttribute ("transform", "");
|
| stop.setAttribute ("offset", "1.0");
|
| turns--;
|
| - if (turns > 0)
|
| - window.setTimeout("offset()", 0)
|
| - else
|
| + if (turns > 0) {
|
| + // FIXME: we need a better way of waiting for layout/repainting to happen
|
| + window.setTimeout("offset()", 1)
|
| + } else
|
| finishRepaintTest();
|
| }
|
| ]]>
|
|
|