| Index: LayoutTests/fast/events/drag-and-drop-autoscroll-inner-frame.html
|
| diff --git a/LayoutTests/fast/events/drag-and-drop-autoscroll-inner-frame.html b/LayoutTests/fast/events/drag-and-drop-autoscroll-inner-frame.html
|
| index 9547a19d59f1047c7f769a723d911fd6e806d9e1..1746bed929a76ab17b5bc1c5952a131e20be051f 100644
|
| --- a/LayoutTests/fast/events/drag-and-drop-autoscroll-inner-frame.html
|
| +++ b/LayoutTests/fast/events/drag-and-drop-autoscroll-inner-frame.html
|
| @@ -27,7 +27,8 @@ function setUpTest()
|
|
|
| window.jsTestIsAsync = true;
|
| iframe = document.getElementById('scrollable');
|
| - if (iframe.contentDocument.readyState != "complete")
|
| + // iframes start in readyState complete, but with the about:blank doc, make sure our doc is loaded.
|
| + if (iframe.src != iframe.contentDocument.URL || iframe.contentDocument.readyState != "complete")
|
| iframe.onload = testIt;
|
| else
|
| testIt();
|
|
|