diff options
Diffstat (limited to 'browser/base/content/test/newtab/browser_newtab_bug1178586.js')
-rw-r--r-- | browser/base/content/test/newtab/browser_newtab_bug1178586.js | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/browser/base/content/test/newtab/browser_newtab_bug1178586.js b/browser/base/content/test/newtab/browser_newtab_bug1178586.js deleted file mode 100644 index 84d5cb577..000000000 --- a/browser/base/content/test/newtab/browser_newtab_bug1178586.js +++ /dev/null @@ -1,83 +0,0 @@ -/* Any copyright is dedicated to the Public Domain. - http://creativecommons.org/publicdomain/zero/1.0/ */ - -/* - * These tests make sure that pinned suggested tile turns into history tile - * and remains a history tile after a user clicks on it - */ - -gDirectorySource = "data:application/json," + JSON.stringify({ - "suggested": [{ - url: "http://example.com/hardlanding/page.html", - imageURI: "data:image/png;base64,helloWORLD3", - enhancedImageURI: "data:image/png;base64,helloWORLD2", - title: "title", - type: "affiliate", - adgroup_name: "example", - frecent_sites: ["example0.com"], - }] -}); - -add_task(function* () { - let origGetFrecentSitesName = DirectoryLinksProvider.getFrecentSitesName; - DirectoryLinksProvider.getFrecentSitesName = () => ""; - - function getData(cellNum) { - return performOnCell(cellNum, cell => { - if (!cell.site) - return null; - let siteNode = cell.site.node; - return { - type: siteNode.getAttribute("type"), - thumbnail: siteNode.querySelector(".newtab-thumbnail.thumbnail").style.backgroundImage, - enhanced: siteNode.querySelector(".enhanced-content").style.backgroundImage, - title: siteNode.querySelector(".newtab-title").textContent, - suggested: siteNode.getAttribute("suggested"), - url: siteNode.querySelector(".newtab-link").getAttribute("href"), - }; - }); - } - - yield setLinks("0,1,2,3,4,5,6,7,8,9"); - setPinnedLinks(""); - - yield* addNewTabPageTab(); - // load another newtab since the first may not get suggested tile - yield* addNewTabPageTab(); - yield* checkGrid("http://example.com/hardlanding/page.html,0,1,2,3,4,5,6,7,8,9"); - // evaluate suggested tile - let tileData = yield getData(0); - is(tileData.type, "affiliate", "unpinned type"); - is(tileData.thumbnail, "url(\"data:image/png;base64,helloWORLD3\")", "unpinned thumbnail"); - is(tileData.enhanced, "url(\"data:image/png;base64,helloWORLD2\")", "unpinned enhanced"); - is(tileData.suggested, "true", "has suggested set", "unpinned suggested exists"); - is(tileData.url, "http://example.com/hardlanding/page.html", "unpinned landing page"); - - // suggested tile should not be pinned - is(NewTabUtils.pinnedLinks.isPinned({url: "http://example.com/hardlanding/page.html"}), false, "suggested tile is not pinned"); - - // pin suggested tile - let updatedPromise = whenPagesUpdated(); - yield BrowserTestUtils.synthesizeMouseAtCenter(".newtab-site > .newtab-control-pin", {}, gBrowser.selectedBrowser); - yield updatedPromise; - - // tile should be pinned and turned into history tile - is(NewTabUtils.pinnedLinks.isPinned({url: "http://example.com/hardlanding/page.html"}), true, "suggested tile is pinned"); - tileData = yield getData(0); - is(tileData.type, "history", "pinned type"); - is(tileData.suggested, null, "no suggested attribute"); - is(tileData.url, "http://example.com/hardlanding/page.html", "original landing page"); - - // click the pinned tile - yield BrowserTestUtils.synthesizeMouseAtCenter(".newtab-site", {}, gBrowser.selectedBrowser); - // add new page twice to avoid using cached version - yield* addNewTabPageTab(); - yield* addNewTabPageTab(); - - // check that type and suggested did not change - tileData = yield getData(0); - is(tileData.type, "history", "pinned type"); - is(tileData.suggested, null, "no suggested attribute"); - - DirectoryLinksProvider.getFrecentSitesName = origGetFrecentSitesName; -}); |