gecko/layout/base/tests/test_scrolling.html
Robert O'Callahan 8383498b71 Bug 510856. Create tests for which areas of the page are repainted or blitted by scrolling. r=dbaron
--HG--
extra : rebase_source : ab2ce1c1a77c42b0ea319cfe4aa0da89395cd632
2009-09-07 12:35:13 +12:00

21 lines
623 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Test calculation of blitting and repaint rects for scrolling</title>
<script type="application/javascript" src="/MochiKit/packed.js"></script>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
SimpleTest.waitForExplicitFinish();
window.open("scrolling_helper.html", "", "width=620,height=320");
</script>
</pre>
</body>
</html>