Changeset 185475 in webkit
- Timestamp:
- Jun 11, 2015, 2:29:56 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Shared/mac/ArgumentCodersMac.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r185474 r185475 1 2015-06-11 Myles C. Maxfield <mmaxfield@apple.com> 2 3 [OS X] Decoding fonts may return nil when using force click 4 https://bugs.webkit.org/show_bug.cgi?id=145890 5 6 Reviewed by Beth Dakin. 7 8 [NSFontDescriptor fontDescriptorWithFontAttributes] might return nil, which 9 causes the encoding of an NSFont to erroneously return true. 10 11 * Shared/mac/ArgumentCodersMac.mm: 12 (IPC::decode): 13 1 14 2015-06-11 Anders Carlsson <andersca@apple.com> 2 15 -
trunk/Source/WebKit2/Shared/mac/ArgumentCodersMac.mm
r162505 r185475 364 364 result = [NSFont fontWithDescriptor:fontDescriptor size:0]; 365 365 366 return true;366 return result; 367 367 } 368 368 #endif
Note:
See TracChangeset
for help on using the changeset viewer.