Bug 774689 - Make 632781-verybig.html allocate canvas big enough to test software rendering while being less likely to cause OOM. r=Bas

This commit is contained in:
Nicolas Silva 2016-01-21 14:10:47 +01:00
Родитель 65aeb7ca6d
Коммит f5ff561792
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -11,17 +11,17 @@
correctly skip the padding.
-->
<div id="container" style="width: 100px; height: 100px; padding: 10px; overflow: hidden">
<canvas width="10000" height="10000" id="c"></canvas>
<canvas width="10000" height="120" id="c"></canvas>
</div>
<script>
var ctx = document.getElementById("c").getContext("2d");
ctx.fillStyle = "red";
ctx.fillRect(0, 0, 10000, 5000);
ctx.fillStyle = "green";
ctx.fillRect(0, 5000, 10000, 5000);
ctx.fillRect(5000, 0, 10000, 5000);
var container = document.getElementById("container");
container.scrollLeft = 10;
container.scrollTop = 5010;
container.scrollLeft = 5010;
container.scrollTop = 10;
</script>
</body>
</html>