File: test_ext_contentscript_canvas.html

package info (click to toggle)
thunderbird 1%3A68.10.0-1~deb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,754,812 kB
  • sloc: cpp: 5,411,679; javascript: 4,161,772; ansic: 2,639,702; python: 763,064; java: 346,606; xml: 266,623; asm: 265,884; sh: 117,270; lisp: 41,340; makefile: 23,560; perl: 18,042; objc: 5,277; yacc: 1,778; ada: 1,681; pascal: 1,673; lex: 1,417; cs: 879; exp: 527; awk: 495; php: 436; ruby: 221; sed: 69; csh: 27
file content (108 lines) | stat: -rw-r--r-- 3,495 bytes parent folder | download | duplicates (2)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!doctype html>
<html>
<head>
  <title>Test content script access to canvas drawWindow()</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<script>
"use strict";

add_task(async function test_drawWindow() {
  const permissions = [
    "<all_urls>",
  ];

  const content_scripts = [{
    matches: ["https://example.org/*"],
    js: ["content_script.js"],
  }];

  const files = {
    "content_script.js": () => {
      const canvas = document.createElement("canvas");
      const ctx = canvas.getContext("2d");
      try {
        ctx.drawWindow(window, 0, 0, 10, 10, "red");
        const {data} = ctx.getImageData(0, 0, 10, 10);
        browser.test.sendMessage("success", data.slice(0, 3).join());
      } catch (e) {
        browser.test.sendMessage("error", e.message);
      }
    },
  };

  const first = ExtensionTestUtils.loadExtension({manifest: {permissions, content_scripts}, files});
  const second = ExtensionTestUtils.loadExtension({manifest: {content_scripts}, files});

  await first.startup();
  await second.startup();

  const win = window.open("https://example.org/tests/toolkit/components/extensions/test/mochitest/file_to_drawWindow.html");

  const colour = await first.awaitMessage("success");
  is(colour, "255,255,153", "drawWindow() call was successful: #ff9 == rgb(255,255,153)");

  const error = await second.awaitMessage("error");
  is(error, "ctx.drawWindow is not a function", "drawWindow() method not awailable without permission");

  win.close();
  await first.unload();
  await second.unload();
});

add_task(async function test_tainted_canvas() {
  const permissions = [
    "<all_urls>",
  ];

  const content_scripts = [{
    matches: ["https://example.org/*"],
    js: ["content_script.js"],
  }];

  const files = {
    "content_script.js": () => {
      const canvas = document.createElement("canvas");
      const ctx = canvas.getContext("2d");
      const img = new Image();

      img.onload = function() {
        ctx.drawImage(img, 0, 0);
        try {
          const png = canvas.toDataURL();
          const {data} = ctx.getImageData(0, 0, 10, 10);
          browser.test.sendMessage("success", {png, colour: data.slice(0, 4).join()});
        } catch (e) {
          browser.test.log(`Exception: ${e.message}`);
          browser.test.sendMessage("error", e.message);
        }
      };

      // Cross-origin image from example.com.
      img.src = "https://example.com/tests/toolkit/components/extensions/test/mochitest/file_image_good.png";
    },
  };

  const first = ExtensionTestUtils.loadExtension({manifest: {permissions, content_scripts}, files});
  const second = ExtensionTestUtils.loadExtension({manifest: {content_scripts}, files});

  await first.startup();
  await second.startup();

  const win = window.open("https://example.org/tests/toolkit/components/extensions/test/mochitest/file_to_drawWindow.html");

  const {png, colour} = await first.awaitMessage("success");
  ok(png.startsWith("data:image/png;base64,"), "toDataURL() call was successful.");
  is(colour, "0,0,0,0", "getImageData() returned the correct colour (transparent).");

  const error = await second.awaitMessage("error");
  is(error, "The operation is insecure.", "toDataURL() throws without permission.");

  win.close();
  await first.unload();
  await second.unload();
});

</script>