michael@0: /* Any copyright is dedicated to the Public Domain.
michael@0: http://creativecommons.org/publicdomain/zero/1.0/ */
michael@0:
michael@0: /*
michael@0: * The list of phases mapped to their corresponding profiles. The object
michael@0: * here must be in strict JSON format, as it will get parsed by the Python
michael@0: * testrunner (no single quotes, extra comma's, etc).
michael@0: */
michael@0: EnableEngines(["tabs"]);
michael@0:
michael@0: var phases = { "phase1": "profile1",
michael@0: "phase2": "profile2"};
michael@0:
michael@0: var tabs1 = [
michael@0: { uri: "data:text/html,
HowdyHowdy",
michael@0: title: "Howdy",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,AmericaAmerica",
michael@0: title: "America",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,AppleApple",
michael@0: title: "Apple",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,ThisThis",
michael@0: title: "This",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,BugBug",
michael@0: title: "Bug",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,IRCIRC",
michael@0: title: "IRC",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,TinderboxTinderbox",
michael@0: title: "Tinderbox",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,FoxFox",
michael@0: title: "Fox",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,HelloHello",
michael@0: title: "Hello",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,EagleEagle",
michael@0: title: "Eagle",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,TrainTrain",
michael@0: title: "Train",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,MacbookMacbook",
michael@0: title: "Macbook",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,ClockClock",
michael@0: title: "Clock",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,GoogleGoogle",
michael@0: title: "Google",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,HumanHuman",
michael@0: title: "Human",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,JetpackJetpack",
michael@0: title: "Jetpack",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,SeleniumSelenium",
michael@0: title: "Selenium",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,MozillaMozilla",
michael@0: title: "Mozilla",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,FirefoxFirefox",
michael@0: title: "Firefox",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,WeaveWeave",
michael@0: title: "Weave",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,AndroidAndroid",
michael@0: title: "Android",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,ByeBye",
michael@0: title: "Bye",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,HiHi",
michael@0: title: "Hi",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,FinalFinal",
michael@0: title: "Final",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,FennecFennec",
michael@0: title: "Fennec",
michael@0: profile: "profile1"
michael@0: },
michael@0: { uri: "data:text/html,MobileMobile",
michael@0: title: "Mobile",
michael@0: profile: "profile1"
michael@0: }
michael@0: ];
michael@0:
michael@0: Phase('phase1', [
michael@0: [Tabs.add, tabs1],
michael@0: [Sync]
michael@0: ]);
michael@0:
michael@0: Phase('phase2', [
michael@0: [Sync],
michael@0: [Tabs.verify, tabs1]
michael@0: ]);
michael@0: