Changeset 243968 in webkit
- Timestamp:
- Apr 7, 2019, 4:31:01 PM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/API/Cocoa/WKWebView.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r243963 r243968 1 2019-04-07 Geoffrey Garen <ggaren@apple.com> 2 3 Remove stray byte added by r241131 4 https://bugs.webkit.org/show_bug.cgi?id=196682 5 6 Reviewed by Alexey Proskuryakov. 7 8 Sublime Text thinks WKWebView.mm is binary instead of text. 9 10 According to online documentation and bisecting, this is because r241131 11 introduced a stray byte (probably a null byte?) into the file. 12 13 I fixed this with Cmd-C Cmd-V. 14 15 * UIProcess/API/Cocoa/WKWebView.mm: 16 (-[WKWebView _initializeWithConfiguration:]): 17 1 18 2019-04-06 Wenson Hsieh <wenson_hsieh@apple.com> 2 19 -
trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm
r243963 r243968 594 594 pageConfiguration->preferenceValues().set(WebKit::WebPreferencesKey::shouldRespectImageOrientationKey(), WebKit::WebPreferencesStore::Value(!![_configuration _respectsImageOrientation])); 595 595 #if !PLATFORM(MAC) 596 // FIXME: Expose WKPreferences._shouldPrintBackgrounds on iOS, adopt it in all iOS clients, and remove this and WKWebViewConfiguration._printsBackgrounds .596 // FIXME: Expose WKPreferences._shouldPrintBackgrounds on iOS, adopt it in all iOS clients, and remove this and WKWebViewConfiguration._printsBackgrounds. 597 597 pageConfiguration->preferenceValues().set(WebKit::WebPreferencesKey::shouldPrintBackgroundsKey(), WebKit::WebPreferencesStore::Value(!![_configuration _printsBackgrounds])); 598 598 #endif
Note:
See TracChangeset
for help on using the changeset viewer.