summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/markup/test/browser_markup_copy_image_data.js
blob: 0386551c418c3ff39c11ca7772b8b01bee5b4587 (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
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test that image nodes have the "copy data-uri" contextual menu item enabled
// and that clicking it puts the image data into the clipboard

add_task(async function () {
  await addTab(URL_ROOT + "doc_markup_image_and_canvas.html");
  const { inspector } = await openInspector();

  await selectNode("div", inspector);
  await assertCopyImageDataNotAvailable(inspector);

  await selectNode("img", inspector);
  await assertCopyImageDataAvailable(inspector);
  const expectedSrc = await getContentPageElementAttribute("img", "src");
  await triggerCopyImageUrlAndWaitForClipboard(expectedSrc, inspector);

  await selectNode("canvas", inspector);
  await assertCopyImageDataAvailable(inspector);
  const expectedURL = await SpecialPowers.spawn(
    gBrowser.selectedBrowser,
    [],
    () => content.document.querySelector(".canvas").toDataURL()
  );
  await triggerCopyImageUrlAndWaitForClipboard(expectedURL, inspector);

  // Check again that the menu isn't available on the DIV (to make sure our
  // menu updating mechanism works)
  await selectNode("div", inspector);
  await assertCopyImageDataNotAvailable(inspector);
});

function assertCopyImageDataNotAvailable(inspector) {
  const allMenuItems = openContextMenuAndGetAllItems(inspector);
  const item = allMenuItems.find(i => i.id === "node-menu-copyimagedatauri");

  ok(item, "The menu item was found in the contextual menu");
  ok(item.disabled, "The menu item is disabled");
}

function assertCopyImageDataAvailable(inspector) {
  const allMenuItems = openContextMenuAndGetAllItems(inspector);
  const item = allMenuItems.find(i => i.id === "node-menu-copyimagedatauri");

  ok(item, "The menu item was found in the contextual menu");
  ok(!item.disabled, "The menu item is enabled");
}

function triggerCopyImageUrlAndWaitForClipboard(expected, inspector) {
  return new Promise(resolve => {
    SimpleTest.waitForClipboard(
      expected,
      () => {
        inspector.markup
          .getContainer(inspector.selection.nodeFront)
          .copyImageDataUri();
      },
      () => {
        ok(
          true,
          "The clipboard contains the expected value " +
            expected.substring(0, 50) +
            "..."
        );
        resolve();
      },
      () => {
        ok(
          false,
          "The clipboard doesn't contain the expected value " +
            expected.substring(0, 50) +
            "..."
        );
        resolve();
      }
    );
  });
}