summaryrefslogtreecommitdiffstats
path: root/docshell/test/browser/browser_bug852909.js
blob: 108baa06260435c472e45ae534e8425337a58a3d (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
var rootDir = "http://mochi.test:8888/browser/docshell/test/browser/";

function test() {
  waitForExplicitFinish();

  gBrowser.selectedTab = BrowserTestUtils.addTab(
    gBrowser,
    rootDir + "file_bug852909.png"
  );
  BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser).then(image);
}

function image(event) {
  ok(
    !gBrowser.selectedTab.mayEnableCharacterEncodingMenu,
    "Docshell should say the menu should be disabled for images."
  );

  gBrowser.removeCurrentTab();
  gBrowser.selectedTab = BrowserTestUtils.addTab(
    gBrowser,
    rootDir + "file_bug852909.pdf"
  );
  BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser).then(pdf);
}

function pdf(event) {
  ok(
    !gBrowser.selectedTab.mayEnableCharacterEncodingMenu,
    "Docshell should say the menu should be disabled for PDF.js."
  );

  gBrowser.removeCurrentTab();
  finish();
}