servo/tests/wpt/web-platform-tests/web-locks/bfcache/helpers.js

15 lines
344 B
JavaScript

export function runWebLocksBfcacheTest(params, description) {
runBfcacheTest(
{
scripts: ["/web-locks/resources/helpers.js"],
openFunc: url =>
window.open(
url + `&prefix=${location.pathname}-${description}`,
"_blank",
"noopener"
),
...params,
},
description
);
}