fixing test bustage from restrictions imposed by bug 292789 (chrome://mochikit needs contentaccessible=yes). r=gavin

This commit is contained in:
dveditz%cruzio.com 2008-04-13 01:31:00 +00:00
Родитель afee2a207a
Коммит b0b4033bb6
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -529,7 +529,7 @@ CHROMEEND
my $manifest = $directories . "chrome/mochikit.manifest";
open(MANIFEST, ">$manifest") ||
die("Could not open manifest file $!");
print MANIFEST ("content mochikit $chrometest_dir\n");
print MANIFEST ("content mochikit $chrometest_dir contentaccessible=yes\n");
if ($do_browser_tests) {
print MANIFEST ("overlay " . BROWSER_CHROME_URL . " chrome://mochikit/content/browser-test-overlay.xul\n");
}

Просмотреть файл

@ -474,7 +474,7 @@ toolbar#nav-bar {
(path, leaf) = os.path.split(options.app)
manifest = path + "/" + "chrome/mochikit.manifest"
manifestFile = open(manifest, "w")
manifestFile.write("content mochikit " + chrometestDir + "\n")
manifestFile.write("content mochikit " + chrometestDir + " contentaccessible=yes\n")
if options.browserChrome:
overlayLine = "overlay " + BROWSER_CHROME_URL + " " \
"chrome://mochikit/content/browser-test-overlay.xul\n"