Bug 1900426 - Implement DnD for shadow-crossing selection r=jjaschke,smaug,dom-core
[gecko.git] / layout / reftests / pagination / 745025-1.html
blobfa179d19bf901f5e85e719727cb7c177f03df038
1 <!DOCTYPE html>
2 <html class="reftest-wait reftest-paged">
3 <body>
4 <canvas id="canvas" width="10" height="10"></canvas>
5 <script>
6 var canvas = document.getElementById('canvas');
7 canvas.mozPrintCallback = function(obj) {
8 setTimeout(function() {
9 var ctx = obj.context;
10 ctx.fillStyle = 'rgb(255, 0, 0)';
11 ctx.fillRect(0, 0, 10, 10);
12 obj.done();
13 document.documentElement.classList.toggle("reftest-wait");
14 }, 0);
16 </script>
17 </body>
18 </html>