mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
908 B
JavaScript
29 lines
908 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/*
|
|
* These tests make sure that resetting the 'New Tage Page' works as expected.
|
|
*/
|
|
function runTests() {
|
|
// Disabled until bug 716543 is fixed.
|
|
return;
|
|
|
|
// create a new tab page and check its modified state after blocking a site
|
|
yield setLinks("0,1,2,3,4,5,6,7,8");
|
|
setPinnedLinks("");
|
|
|
|
yield addNewTabPageTab();
|
|
let resetButton = getContentDocument().getElementById("toolbar-button-reset");
|
|
|
|
checkGrid("0,1,2,3,4,5,6,7,8");
|
|
ok(!resetButton.hasAttribute("modified"), "page is not modified");
|
|
|
|
yield blockCell(4);
|
|
checkGrid("0,1,2,3,5,6,7,8,");
|
|
ok(resetButton.hasAttribute("modified"), "page is modified");
|
|
|
|
yield getContentWindow().gToolbar.reset(TestRunner.next);
|
|
checkGrid("0,1,2,3,4,5,6,7,8");
|
|
ok(!resetButton.hasAttribute("modified"), "page is not modified");
|
|
}
|