mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
<!--
|
|
DO NOT MODIFY THIS FILE UNLESS YOU KNOW WHAT YOU ARE DOING!
|
|
|
|
This file is specifically designed to create a page larger than
|
|
any screen fennec could run on (to allow panning in both axes).
|
|
It is filled with 100x100 pixel boxes that are of unique colour,
|
|
so that we can identify exactly what part of the page we are
|
|
rendering at any given time. A lot of the tests depend on this
|
|
behaviour, so ensure that all the tests pass (on a variety of
|
|
screen sizes) when making any changes to this file.
|
|
-->
|
|
<html style="margin: 0; padding: 0">
|
|
<head>
|
|
<title>Browser Box test</title>
|
|
<meta name="viewport" content="initial-scale=1.0"/>
|
|
</head>
|
|
<body style="margin: 0; padding: 0">
|
|
<script type="text/javascript">
|
|
for (var y = 0; y < 2000; y += 100) {
|
|
document.write("<div style='width: 2000px; height: 100px; margin: 0; padding: 0; border: none'>\n");
|
|
for (var x = 0; x < 2000; x += 100) {
|
|
var r = (y + x) % 255;
|
|
var g = 255 - (y / 10);
|
|
var b = 255 - (x / 10);
|
|
document.write("<div style='float: left; width: 100px; height: 100px; margin: 0; padding: 0; border: none; background-color: rgb(" + r + "," + g + "," + b + ")'> </div>\n");
|
|
}
|
|
document.write("</div>\n");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|