- add third_party src.
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / resources / repaint.js
1 // Note: pixel based repaint tests are now deprecated. Please use text-based-repaint.js in new repaint tests.
2 function runRepaintTest()
3 {
4     if (window.testRunner) {
5         if (document.body)
6             document.body.offsetTop;
7         else if (document.documentElement)
8             document.documentElement.offsetTop;
9
10         testRunner.display();
11         repaintTest();
12     } else {
13         setTimeout(repaintTest, 100);
14     }
15 }