Index: LayoutTests/svg/custom/js-late-pattern-creation.svg |
diff --git a/LayoutTests/svg/custom/js-late-pattern-creation.svg b/LayoutTests/svg/custom/js-late-pattern-creation.svg |
index 4d1e4d30a3432ca28671a377a5e05e97a9d819a0..a090c4821154eb5e58035bfb8b30d1f018589a3b 100644 |
--- a/LayoutTests/svg/custom/js-late-pattern-creation.svg |
+++ b/LayoutTests/svg/custom/js-late-pattern-creation.svg |
@@ -10,7 +10,8 @@ |
var content = document.getElementById("content"); |
function repaintTest() { |
- setTimeout(createPattern, 0); |
+ // FIXME: we need a better way of waiting for layout/repainting to happen |
+ setTimeout(createPattern, 1); |
} |
function createPattern() |