Title: [156109] trunk/Tools
Revision
156109
Author
[email protected]
Date
2013-09-19 12:22:41 -0700 (Thu, 19 Sep 2013)

Log Message

REGRESSION (r129451): run-safari --no-saved-state is broken
https://bugs.webkit.org/show_bug.cgi?id=121566

Undo a last minute change that doesn't actually work.

* Scripts/webkitdirs.pm: (argumentsForRunAndDebugMacWebKitApp): "-1" cannot be passed
via command line, <rdar://problem/15032886>.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (156108 => 156109)


--- trunk/Tools/ChangeLog	2013-09-19 19:06:54 UTC (rev 156108)
+++ trunk/Tools/ChangeLog	2013-09-19 19:22:41 UTC (rev 156109)
@@ -1,3 +1,13 @@
+2013-09-19  Alexey Proskuryakov  <[email protected]>
+
+        REGRESSION (r129451): run-safari --no-saved-state is broken
+        https://bugs.webkit.org/show_bug.cgi?id=121566
+
+        Undo a last minute change that doesn't actually work.
+
+        * Scripts/webkitdirs.pm: (argumentsForRunAndDebugMacWebKitApp): "-1" cannot be passed
+        via command line, <rdar://problem/15032886>.
+
 2013-09-19  Dan Bernstein  <[email protected]>
 
         Add a style guideline regarding spacing in range-based for loops

Modified: trunk/Tools/Scripts/webkitdirs.pm (156108 => 156109)


--- trunk/Tools/Scripts/webkitdirs.pm	2013-09-19 19:06:54 UTC (rev 156108)
+++ trunk/Tools/Scripts/webkitdirs.pm	2013-09-19 19:22:41 UTC (rev 156109)
@@ -2471,8 +2471,7 @@
 sub argumentsForRunAndDebugMacWebKitApp()
 {
     my @args = ();
-    use constant ignoreStateWithLoggingSuppressed => "-1";
-    push @args, ("-ApplePersistenceIgnoreState", ignoreStateWithLoggingSuppressed) if checkForArgumentAndRemoveFromARGV("--no-saved-state");
+    push @args, ("-ApplePersistenceIgnoreState", "YES") if checkForArgumentAndRemoveFromARGV("--no-saved-state");
     push @args, ("-WebKit2UseXPCServiceForWebProcess", "YES") if shouldUseXPCServiceForWebProcess();
     unshift @args, @ARGV;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to