| Index: LayoutTests/fast/table/border-collapsing/cached-change-cell-border-width.html
|
| diff --git a/LayoutTests/fast/table/border-collapsing/cached-change-cell-border-width.html b/LayoutTests/fast/table/border-collapsing/cached-change-cell-border-width.html
|
| index 18bb9a2f971c9f00325807986ef365a906815d11..fc35967144fc97999dd1b986201e67423baf51a3 100644
|
| --- a/LayoutTests/fast/table/border-collapsing/cached-change-cell-border-width.html
|
| +++ b/LayoutTests/fast/table/border-collapsing/cached-change-cell-border-width.html
|
| @@ -6,12 +6,17 @@ Here we change cell border width, 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.borderWidth = "4px";
|
| + testRunner.waitUntilDone();
|
| + runAfterDisplay(function() {
|
| + document.getElementById("foo").style.borderWidth = "4px";
|
| + document.getElementById("foo").style.borderColor = "lime";
|
| + if (window.testRunner)
|
| + testRunner.notifyDone();
|
| + });
|
| }
|
| </script>
|
| </head>
|
|
|