Title: [173187] trunk/Tools
Revision
173187
Author
[email protected]
Date
2014-09-02 14:33:41 -0700 (Tue, 02 Sep 2014)

Log Message

Make sure WK1 prefs are initialized in MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=136465

Reviewed by Tim Horton.

Call -didChangeSettings from -awakeFromNib for WK1 windows just as we do
for WK2 windows, to make sure that WebPreferences are updated (to get
layer borders to work consistently).

* MiniBrowser/mac/WK1BrowserWindowController.m:
(-[WK1BrowserWindowController awakeFromNib]):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (173186 => 173187)


--- trunk/Tools/ChangeLog	2014-09-02 21:25:33 UTC (rev 173186)
+++ trunk/Tools/ChangeLog	2014-09-02 21:33:41 UTC (rev 173187)
@@ -1,3 +1,17 @@
+2014-09-02  Simon Fraser  <[email protected]>
+
+        Make sure WK1 prefs are initialized in MiniBrowser
+        https://bugs.webkit.org/show_bug.cgi?id=136465
+
+        Reviewed by Tim Horton.
+        
+        Call -didChangeSettings from -awakeFromNib for WK1 windows just as we do
+        for WK2 windows, to make sure that WebPreferences are updated (to get
+        layer borders to work consistently).
+
+        * MiniBrowser/mac/WK1BrowserWindowController.m:
+        (-[WK1BrowserWindowController awakeFromNib]):
+
 2014-09-02  Renato Nagy  <[email protected]>
 
         check-webkit-style should complain about C++ comments in Platform.h

Modified: trunk/Tools/MiniBrowser/mac/WK1BrowserWindowController.m (173186 => 173187)


--- trunk/Tools/MiniBrowser/mac/WK1BrowserWindowController.m	2014-09-02 21:25:33 UTC (rev 173186)
+++ trunk/Tools/MiniBrowser/mac/WK1BrowserWindowController.m	2014-09-02 21:33:41 UTC (rev 173187)
@@ -51,6 +51,8 @@
     [[WebPreferences standardPreferences] setFullScreenEnabled:YES];
     [[WebPreferences standardPreferences] setDeveloperExtrasEnabled:YES];
 
+    [self didChangeSettings];
+
     [containerView addSubview:_webView];
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to