| Index: LayoutTests/fast/table/border-collapsing/cached-change-cell-border-color.html
|
| diff --git a/LayoutTests/fast/table/border-collapsing/cached-change-cell-border-color.html b/LayoutTests/fast/table/border-collapsing/cached-change-cell-border-color.html
|
| index cb21a733194faa099bdecbc82196531330fbe74a..ed865a3153e492de572af04c4e9b72a806454642 100644
|
| --- a/LayoutTests/fast/table/border-collapsing/cached-change-cell-border-color.html
|
| +++ b/LayoutTests/fast/table/border-collapsing/cached-change-cell-border-color.html
|
| @@ -6,12 +6,16 @@ Here we change cell border color, expect that cache is invalidated and paint pro
|
| <head>
|
| <title></title>
|
| <link rel="stylesheet" href="resources/cached.css">
|
| + <script src="../../../resources/run-after-display.js"></script>
|
| <script type="text/javascript">
|
| function test() {
|
| - document.body.offsetTop;
|
| if (window.testRunner)
|
| - testRunner.display();
|
| - document.getElementById("foo").style.borderColor = "lime";
|
| + testRunner.waitUntilDone();
|
| + runAfterDisplay(function() {
|
| + document.getElementById("foo").style.borderColor = "lime";
|
| + if (window.testRunner)
|
| + testRunner.notifyDone();
|
| + });
|
| }
|
| </script>
|
| </head>
|
|
|