| Index: LayoutTests/fast/repaint/resources/frame-invalidated-by-timer.html
|
| diff --git a/LayoutTests/fast/repaint/resources/frame-invalidated-by-timer.html b/LayoutTests/fast/repaint/resources/frame-invalidated-by-timer.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4d119ab06b2f8ecba2e3f92427c340816bdada64
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/repaint/resources/frame-invalidated-by-timer.html
|
| @@ -0,0 +1,12 @@
|
| +<!DOCTYPE html>
|
| +<!-- A document which constantly invalidates itself using a timer. -->
|
| +<script>
|
| +var frame = 0;
|
| +function animate()
|
| +{
|
| + document.body.style.background = (frame++ % 2) ? 'lightblue' : 'cyan';
|
| +}
|
| +window.addEventListener('load', function() {
|
| + window.setInterval(animate, 0);
|
| +});
|
| +</script>
|
|
|