diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /browser/components/sessionstore/test/browser_async_duplicate_tab.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'browser/components/sessionstore/test/browser_async_duplicate_tab.js')
-rw-r--r-- | browser/components/sessionstore/test/browser_async_duplicate_tab.js | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/browser/components/sessionstore/test/browser_async_duplicate_tab.js b/browser/components/sessionstore/test/browser_async_duplicate_tab.js new file mode 100644 index 000000000..8696a284f --- /dev/null +++ b/browser/components/sessionstore/test/browser_async_duplicate_tab.js @@ -0,0 +1,78 @@ +"use strict"; + +const URL = "data:text/html;charset=utf-8,<a href=%23>clickme</a>"; + +add_task(function* test_duplicate() { + // Create new tab. + let tab = gBrowser.addTab(URL); + let browser = tab.linkedBrowser; + yield promiseBrowserLoaded(browser); + + // Flush to empty any queued update messages. + yield TabStateFlusher.flush(browser); + + // Click the link to navigate, this will add second shistory entry. + yield ContentTask.spawn(browser, null, function* () { + return new Promise(resolve => { + addEventListener("hashchange", function onHashChange() { + removeEventListener("hashchange", onHashChange); + resolve(); + }); + + // Click the link. + content.document.querySelector("a").click(); + }); + }); + + // Duplicate the tab. + let tab2 = ss.duplicateTab(window, tab); + + // Wait until the tab has fully restored. + yield promiseTabRestored(tab2); + yield TabStateFlusher.flush(tab2.linkedBrowser); + + // There should be two history entries now. + let {entries} = JSON.parse(ss.getTabState(tab2)); + is(entries.length, 2, "there are two shistory entries"); + + // Cleanup. + yield promiseRemoveTab(tab2); + yield promiseRemoveTab(tab); +}); + +add_task(function* test_duplicate_remove() { + // Create new tab. + let tab = gBrowser.addTab(URL); + let browser = tab.linkedBrowser; + yield promiseBrowserLoaded(browser); + + // Flush to empty any queued update messages. + yield TabStateFlusher.flush(browser); + + // Click the link to navigate, this will add second shistory entry. + yield ContentTask.spawn(browser, null, function* () { + return new Promise(resolve => { + addEventListener("hashchange", function onHashChange() { + removeEventListener("hashchange", onHashChange); + resolve(); + }); + + // Click the link. + content.document.querySelector("a").click(); + }); + }); + + // Duplicate the tab. + let tab2 = ss.duplicateTab(window, tab); + + // Before the duplication finished, remove the tab. + yield Promise.all([promiseRemoveTab(tab), promiseTabRestored(tab2)]); + yield TabStateFlusher.flush(tab2.linkedBrowser); + + // There should be two history entries now. + let {entries} = JSON.parse(ss.getTabState(tab2)); + is(entries.length, 2, "there are two shistory entries"); + + // Cleanup. + yield promiseRemoveTab(tab2); +}); |