40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
const PREFIX =
|
|
"https://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);
|
|
});
|