summaryrefslogtreecommitdiffstats
path: root/gfx/tests/chrome/test_device_reset.html
blob: a081c26dc4e291c65bdfeecb5c6d48fc9aae55e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1274663
-->
  <head>
    <meta charset="utf-8">
    <title>Test device reset</title>
    <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
    <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
  </head>
  <body>
    <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1274663">Mozilla Bug 1274663</a>
    <script>
      var importObj = {};

      var windows = SpecialPowers.Services.ww.getWindowEnumerator();
      var windowutils;
      while (windows.hasMoreElements()) {
        windowutils = windows.getNext().windowUtils;
      }

      const PAGE_WIDTH = 200;
      const PAGE_HEIGHT = 200;

      // Helper functions

      function testCompositor(ctx) {
        takeWindowSnapshot(ctx);
        var testPassed = true;

        if (!verifyCanvasRendering(ctx)) {
          testPassed = false;
        }

        return testPassed;
      }

      function testPixel(ctx, x, y, r, g, b, a, fuzz) {
        var data = ctx.getImageData(x, y, 1, 1);

        if (Math.abs(data.data[0] - r) <= fuzz &&
            Math.abs(data.data[1] - g) <= fuzz &&
            Math.abs(data.data[2] - b) <= fuzz &&
            Math.abs(data.data[3] - a) <= fuzz) {
          return true;
        }
        return false;
      }

      function verifyCanvasRendering(ctx) {
        return testPixel(ctx, 20, 20, 140, 25, 86, 255, 0);
      }

      function takeWindowSnapshot(ctx) {
        var flags = ctx.DRAWWINDOW_DRAW_CARET | ctx.DRAWWINDOW_DRAW_VIEW | ctx.DRAWWINDOW_USE_WIDGET_LAYERS;
        ctx.drawWindow(window, 0, 0, PAGE_WIDTH, PAGE_HEIGHT, "rgb(140,25,86)", flags);
      }

      function createCanvas() {
        let canvas = document.createElementNS("http://www.w3.org/1999/xhtml", "canvas");

        canvas.setAttribute("width", PAGE_WIDTH + "px");
        canvas.setAttribute("height", PAGE_HEIGHT + "px");

        return canvas;
      }

      // Test runner code
      windowutils.triggerDeviceReset();

      SimpleTest.waitForExplicitFinish();
      window.addEventListener("MozAfterPaint", function paintHandle(e) {
         // Add more latency before calling runCanvasTest()
         // runCanvasTest() needs to be called after gecko's device reset handling.
         // Since Bug 1757879 fix, the triggerDeviceReset() does the device reset
         // handling asynchronously.
         window.requestAnimationFrame(() => {
           runCanvasTest();
        });
        window.removeEventListener("MozAfterPaint", paintHandle);
      });

      function runCanvasTest() {
        const canvas = createCanvas();
        const ctx = canvas.getContext("2d");
        document.body.appendChild(canvas);

        ok(testCompositor(ctx), "Canvas did not get rendered after device reset");
        SimpleTest.finish();
      }
    </script>
  </body>
</html>