summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/tabs/browser_long_data_url_label_truncation.js
blob: db0571a2c04b3591d5ac2320a9792ec1c336b2df (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/**
 * Ensure that tab labels for base64 data: URLs are always truncated
 * to ensure that we don't hang trying to paint really long overflown
 * text runs.
 * This becomes a performance issue with 1mb or so long data URIs;
 * this test uses a much shorter one for simplicity's sake.
 */
add_task(async function test_ensure_truncation() {
  const MOBY = `
  <!DOCTYPE html>
  <meta charset="utf-8">
    Call me Ishmael. Some years ago—never mind how
    long precisely—having little or no money in my purse, and nothing particular
    to interest me on shore, I thought I would sail about a little and see the
    watery part of the world. It is a way I have of driving off the spleen and
    regulating the circulation. Whenever I find myself growing grim about the
    mouth; whenever it is a damp, drizzly November in my soul; whenever I find
    myself involuntarily pausing before coffin warehouses, and bringing up the
    rear of every funeral I meet; and especially whenever my hypos get such an
    upper hand of me, that it requires a strong moral principle to prevent me
    from deliberately stepping into the street, and methodically knocking
    people's hats off—then, I account it high time to get to sea as soon as I
    can. This is my substitute for pistol and ball. With a philosophical
    flourish Cato throws himself upon his sword; I quietly take to the ship.
    There is nothing surprising in this. If they but knew it, almost all men in
    their degree, some time or other, cherish very nearly the same feelings
    towards the ocean with me.`;

  let fileReader = new FileReader();
  const DATA_URL = await new Promise(resolve => {
    fileReader.addEventListener("load", e => resolve(fileReader.result));
    fileReader.readAsDataURL(new Blob([MOBY], { type: "text/html" }));
  });
  // Substring the full URL to avoid log clutter because Assert will print
  // the entire thing.
  Assert.stringContains(
    DATA_URL.substring(0, 30),
    "base64",
    "data URL needs to be base64"
  );

  let newTab;
  function tabLabelChecker() {
    Assert.lessOrEqual(
      newTab.label.length,
      501,
      "Tab label should not exceed 500 chars + ellipsis."
    );
  }
  let mutationObserver = new MutationObserver(tabLabelChecker);
  registerCleanupFunction(() => mutationObserver.disconnect());

  gBrowser.tabContainer.addEventListener(
    "TabOpen",
    event => {
      newTab = event.target;
      tabLabelChecker();
      mutationObserver.observe(newTab, {
        attributeFilter: ["label"],
      });
    },
    { once: true }
  );

  await BrowserTestUtils.withNewTab(DATA_URL, async () => {
    // Wait another longer-than-tick to ensure more mutation observer things have
    // come in.
    await new Promise(executeSoon);

    // Check one last time for good measure, for the final label:
    tabLabelChecker();
  });
});