+2006-03-19 Darin Adler <darin@apple.com>
+
+ Reviewed by Anders.
+
+ * DumpRenderTree/DumpRenderTree.m: (main): Turn on pop-up blocking so that
+ we can test it in layout tests. We don't really need tests that run with
+ pop-up blocking off at the moment. If we do some day, we can add some
+ API for turning it off in the layout test controller.
+
+ * Scripts/run-webkit-tests: Since we don't use NSLanguage at all any more,
+ don't ignore the leak; it should no longer show up.
+
2006-03-17 Anders Carlsson <andersca@mac.com>
Reviewed by Eric.
[preferences setDefaultFixedFontSize:13];
[preferences setMinimumFontSize:9];
[preferences setJavaEnabled:NO];
+ [preferences setJavaScriptCanOpenWindowsAutomatically:NO];
int option;
while ((option = getopt_long(argc, (char * const *)argv, "", options, NULL)) != -1)
my @exclude = (
"pthread_create", # false positive leak of 'THRD', Radar 3387783
"_CFPreferencesDomainDeepCopyDictionary", # leak apparently in CFPreferences, Radar 4220786
- "+[NSLanguage initialize]", # leak apparently in NSLanguage, Radar 3986177
"FOGetCoveredUnicodeChars", # leak apparently in ATS, Radar 3943604
"PCFragPrepareClosureFromFile", # leak in Code Fragment Manager, Radar 3426998
"Flash_EnforceLocalSecurity", # leaks in flash plugin code, Radar 4449747
"ICCFPrefWrapper::GetPrefDictionary()" # leaks in quicktime plugin code, Radar 4449794
);
- # Note that this exclusion doesn't quite work right; sometimes a leak of 'THRD' with no stack trace will
+ # Note that the exclusion for bug 3387783 doesn't quite work right; sometimes a leak of 'THRD' will
# still appear in the leaks output.
my $excludes = "-exclude '" . (join "' -exclude '", @exclude) . "'";