michael@0: /* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- michael@0: * vim:set ts=2 sw=2 sts=2 et: michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: /** michael@0: * Tests bug 449406 to ensure that TRANSITION_DOWNLOAD, TRANSITION_EMBED and michael@0: * TRANSITION_FRAMED_LINK bookmarked uri's show up in the location bar. michael@0: */ michael@0: michael@0: // Define some shared uris and titles (each page needs its own uri) michael@0: let kURIs = [ michael@0: "http://download/bookmarked", michael@0: "http://embed/bookmarked", michael@0: "http://framed/bookmarked", michael@0: "http://download", michael@0: "http://embed", michael@0: "http://framed", michael@0: ]; michael@0: let kTitles = [ michael@0: "download-bookmark", michael@0: "embed-bookmark", michael@0: "framed-bookmark", michael@0: "download2", michael@0: "embed2", michael@0: "framed2", michael@0: ]; michael@0: michael@0: // Add download and embed uris michael@0: addPageBook(0, 0, 0, undefined, undefined, TRANSITION_DOWNLOAD); michael@0: addPageBook(1, 1, 1, undefined, undefined, TRANSITION_EMBED); michael@0: addPageBook(2, 2, 2, undefined, undefined, TRANSITION_FRAMED_LINK); michael@0: addPageBook(3, 3, undefined, undefined, undefined, TRANSITION_DOWNLOAD); michael@0: addPageBook(4, 4, undefined, undefined, undefined, TRANSITION_EMBED); michael@0: addPageBook(5, 5, undefined, undefined, undefined, TRANSITION_FRAMED_LINK); michael@0: michael@0: // Provide for each test: description; search terms; array of gPages indices of michael@0: // pages that should match; optional function to be run before the test michael@0: let gTests = [ michael@0: ["0: Searching for bookmarked download uri matches", michael@0: kTitles[0], [0]], michael@0: ["1: Searching for bookmarked embed uri matches", michael@0: kTitles[1], [1]], michael@0: ["2: Searching for bookmarked framed uri matches", michael@0: kTitles[2], [2]], michael@0: ["3: Searching for download uri does not match", michael@0: kTitles[3], []], michael@0: ["4: Searching for embed uri does not match", michael@0: kTitles[4], []], michael@0: ["5: Searching for framed uri does not match", michael@0: kTitles[5], []], michael@0: ];