summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/urlbar/browser_urlbar_locationchange_urlbar_edit_dos.js
blob: 63ed58a622f6ae0c6b566b6eccc04bd5b7df801f (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
"use strict";

function* checkURLBarValueStays(browser) {
  gURLBar.select();
  EventUtils.synthesizeKey("a", {});
  is(gURLBar.value, "a", "URL bar value should match after sending a key");
  yield new Promise(resolve => {
    let listener = {
      onLocationChange(aWebProgress, aRequest, aLocation, aFlags) {
        ok(aFlags & Ci.nsIWebProgressListener.LOCATION_CHANGE_SAME_DOCUMENT,
           "Should only get a same document location change");
        gBrowser.selectedBrowser.removeProgressListener(filter);
        filter = null;
        resolve();
      },
    };
    let filter = Cc["@mozilla.org/appshell/component/browser-status-filter;1"]
                     .createInstance(Ci.nsIWebProgress);
    filter.addProgressListener(listener, Ci.nsIWebProgress.NOTIFY_ALL);
    gBrowser.selectedBrowser.addProgressListener(filter);
  });
  is(gURLBar.value, "a", "URL bar should not have been changed by location changes.");
}

add_task(function*() {
  yield BrowserTestUtils.withNewTab({
    gBrowser,
    url: "http://example.com/browser/browser/base/content/test/urlbar/file_urlbar_edit_dos.html"
  }, function*(browser) {
    yield ContentTask.spawn(browser, "", function() {
      content.wrappedJSObject.dos_hash();
    });
    yield checkURLBarValueStays(browser);
    yield ContentTask.spawn(browser, "", function() {
      content.clearTimeout(content.wrappedJSObject.dos_timeout);
      content.wrappedJSObject.dos_pushState();
    });
    yield checkURLBarValueStays(browser);
  });
});