Title: [152189] branches/safari-537-branch/Tools
Revision
152189
Author
[email protected]
Date
2013-06-28 14:48:43 -0700 (Fri, 28 Jun 2013)

Log Message

Merged r152188.  <rdar://problem/14306452>

Modified Paths

Diff

Modified: branches/safari-537-branch/Tools/ChangeLog (152188 => 152189)


--- branches/safari-537-branch/Tools/ChangeLog	2013-06-28 21:45:26 UTC (rev 152188)
+++ branches/safari-537-branch/Tools/ChangeLog	2013-06-28 21:48:43 UTC (rev 152189)
@@ -1,3 +1,19 @@
+2013-06-28  Lucas Forschler  <[email protected]>
+
+        Merge r152188
+
+    2013-06-28  Jessie Berlin  <[email protected]>
+
+            WebKitTestRunner should disable automatic quote and dash substitution like DumpRenderTree does
+            https://bugs.webkit.org/show_bug.cgi?id=118201
+
+            Reviewed by Dean Jackson.
+
+            * WebKitTestRunner/mac/main.mm:
+            (main):
+            Modify NSUserDefaults directly since setAutomaticQuoteSubstitutionEnabled and
+            setAutomaticDashSubstitutionEnabled are not exposed on WKView.
+
 2013-06-27  Lucas Forschler  <[email protected]>
 
         Merge r152144

Modified: branches/safari-537-branch/Tools/WebKitTestRunner/mac/main.mm (152188 => 152189)


--- branches/safari-537-branch/Tools/WebKitTestRunner/mac/main.mm	2013-06-28 21:45:26 UTC (rev 152188)
+++ branches/safari-537-branch/Tools/WebKitTestRunner/mac/main.mm	2013-06-28 21:48:43 UTC (rev 152189)
@@ -32,6 +32,10 @@
     NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
     [NSApplication sharedApplication];
     [[NSUserDefaults standardUserDefaults] setVolatileDomain:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:NO] forKey:@"WebKitKerningAndLigaturesEnabledByDefault"] forName:NSArgumentDomain];
+
+    [[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"WebAutomaticQuoteSubstitutionEnabled"];
+    [[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"WebAutomaticDashSubstitutionEnabled"];
+
     {
         WTR::TestController controller(argc, argv);
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to