blob: 41e278ee54fa823c466361ff06b29963dbb903c4 (
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
|
const PREFIX =
"http://example.com/tests/toolkit/components/places/tests/browser/1601563";
function titleUpdate(pageUrl) {
let lastTitle = null;
return PlacesTestUtils.waitForNotification("page-title-changed", events => {
if (pageUrl != events[0].url) {
return false;
}
lastTitle = events[0].title;
return true;
}).then(() => {
return lastTitle;
});
}
add_task(async function () {
registerCleanupFunction(PlacesUtils.history.clear);
const FIRST_URL = PREFIX + "-1.html";
const SECOND_URL = PREFIX + "-2.html";
let firstTitlePromise = titleUpdate(FIRST_URL);
let secondTitlePromise = titleUpdate(SECOND_URL);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, FIRST_URL);
let firstTitle = await firstTitlePromise;
is(firstTitle, "First title", "First title should match the page");
let secondTitle = await secondTitlePromise;
is(secondTitle, "Second title", "Second title should match the page");
let entry = await PlacesUtils.history.fetch(FIRST_URL);
is(
entry.title,
firstTitle,
"Should not override first title with document.open()ed frame"
);
await BrowserTestUtils.removeTab(tab);
});
|