Mercurial > nightly_tester_tools
comparison chrome/content/suite.js @ 2:472a16863ecc
expanded nightly.jar
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Tue, 02 Dec 2008 20:38:20 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1:93e46514f20d | 2:472a16863ecc |
---|---|
1 var nightlyApp = { | |
2 | |
3 init: function() | |
4 { | |
5 var brandbundle = document.getElementById("bundle_brand"); | |
6 if (nightly.variables.name==null) | |
7 { | |
8 nightly.variables.name=brandbundle.getString("brandShortName"); | |
9 } | |
10 nightly.variables.brandname=brandbundle.getString("brandFullName"); | |
11 nightly.variables.defaulttitle=nightlyApp.storedTitle; | |
12 }, | |
13 | |
14 detectLeaks: function(event) | |
15 { | |
16 this.openURL('chrome://nightly/content/leaks/leaks.xul', event); | |
17 }, | |
18 | |
19 openURL: function(url, event) | |
20 { | |
21 openTopWin(url); | |
22 }, | |
23 | |
24 setCustomTitle: function(title) | |
25 { | |
26 }, | |
27 | |
28 setBlankTitle: function() | |
29 { | |
30 }, | |
31 | |
32 setStandardTitle: function() | |
33 { | |
34 } | |
35 | |
36 } |