Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: display == 'wayland'
- Manifest: remote/cdp/test/browser/page/browser.toml
/* Any copyright is dedicated to the Public Domain.
"use strict";
add_task(async function singleEntry({ client }) {
const { Page } = client;
const data = generateHistoryData(1);
for (const entry of data) {
await loadURL(entry.userTypedURL);
}
const history = await Page.getNavigationHistory();
assertHistoryEntries(history, data, 0);
});
add_task(async function multipleEntriesWithLastIndex({ client }) {
const { Page } = client;
const data = generateHistoryData(3);
for (const entry of data) {
await loadURL(entry.userTypedURL);
}
const history = await Page.getNavigationHistory();
assertHistoryEntries(history, data, data.length - 1);
});
add_task(async function multipleEntriesWithFirstIndex({ client }) {
const { Page } = client;
const data = generateHistoryData(3);
for (const entry of data) {
await loadURL(entry.userTypedURL);
}
await gotoHistoryIndex(0);
const history = await Page.getNavigationHistory();
assertHistoryEntries(history, data, 0);
});
add_task(async function locationRedirect({ client }) {
const { Page } = client;
const pageEmptyURL =
const sjsURL =
const redirectURL = `${sjsURL}?${pageEmptyURL}`;
const data = [
{
url: pageEmptyURL,
userTypedURL: redirectURL,
title: "Empty page",
},
];
await loadURL(redirectURL, pageEmptyURL);
const history = await Page.getNavigationHistory();
assertHistoryEntries(history, data, 0);
});