- same change as below, only tested this time
* DumpRenderTree/DumpRenderTree.m: (main): Explicitly turn "tab to links"
mode off. I think we need to do this because WebPreferences saves things
for us automatically. It would be good to turn that off for DumpRenderTree,
but for now lets handle this like the other preferences (set it explicitly
each time).
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@17673
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-11-08 Darin Adler <darin@apple.com>
+
+ Reviewed by Anders.
+
+ - same change as below, only tested this time
+
+ * DumpRenderTree/DumpRenderTree.m: (main): Explicitly turn "tab to links"
+ mode off. I think we need to do this because WebPreferences saves things
+ for us automatically. It would be good to turn that off for DumpRenderTree,
+ but for now lets handle this like the other preferences (set it explicitly
+ each time).
+
2006-11-08 Darin Adler <darin@apple.com>
Reviewed by Anders.
[preferences setJavaEnabled:NO];
[preferences setJavaScriptCanOpenWindowsAutomatically:NO];
[preferences setEditableLinkBehavior:WebKitEditableLinkOnlyLiveWithShiftKey];
+ [preferences setTabsToLinks:NO];
int option;
while ((option = getopt_long(argc, (char * const *)argv, "", options, NULL)) != -1)