| Index: LayoutTests/svg/custom/js-late-pattern-and-object-creation.svg
|
| diff --git a/LayoutTests/svg/custom/js-late-pattern-and-object-creation.svg b/LayoutTests/svg/custom/js-late-pattern-and-object-creation.svg
|
| index bfe76a1c9e3dc3c939e7a94ab6907eafddd0b374..c21c2dc6a0deeac09743d0d21e678bc763965c93 100644
|
| --- a/LayoutTests/svg/custom/js-late-pattern-and-object-creation.svg
|
| +++ b/LayoutTests/svg/custom/js-late-pattern-and-object-creation.svg
|
| @@ -9,7 +9,8 @@
|
| var content = document.getElementById("content");
|
|
|
| function repaintTest() {
|
| - setTimeout(createPatterns, 0);
|
| + // FIXME: we need a better way of waiting for layout/repainting to happen
|
| + setTimeout(createPatterns, 1);
|
| }
|
|
|
| function createPatterns()
|
| @@ -70,7 +71,8 @@
|
|
|
| content.appendChild(pattern2);
|
|
|
| - setTimeout(setupPatternUsers, 0);
|
| + // FIXME: we need a better way of waiting for layout/repainting to happen
|
| + setTimeout(setupPatternUsers, 1);
|
| }
|
|
|
| function setupPatternUsers()
|
|
|