Changeset 267612 in webkit
- Timestamp:
- Sep 25, 2020, 5:27:09 PM (6 years ago)
- Location:
- trunk/Source
- Files:
-
- 5 edited
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/platform/RuntimeApplicationChecks.h (modified) (1 diff)
-
WebCore/platform/cocoa/RuntimeApplicationChecksCocoa.mm (modified) (1 diff)
-
WebKit/ChangeLog (modified) (1 diff)
-
WebKit/UIProcess/ios/WKContentViewInteraction.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r267611 r267612 1 2020-09-25 Tim Horton <timothy_horton@apple.com> 2 3 Crunchyroll playback controls do not work on iPad with trackpad 4 https://bugs.webkit.org/show_bug.cgi?id=217000 5 <rdar://problem/66362029> 6 7 Reviewed by Wenson Hsieh. 8 9 * platform/RuntimeApplicationChecks.h: 10 * platform/cocoa/RuntimeApplicationChecksCocoa.mm: 11 (WebCore::IOSApplication::isCrunchyroll): 12 1 13 2020-09-25 Simon Fraser <simon.fraser@apple.com> 2 14 -
trunk/Source/WebCore/platform/RuntimeApplicationChecks.h
r267394 r267612 114 114 WEBCORE_EXPORT bool isJWLibrary(); 115 115 WEBCORE_EXPORT bool isPaperIO(); 116 WEBCORE_EXPORT bool isCrunchyroll(); 116 117 117 118 } // IOSApplication -
trunk/Source/WebCore/platform/cocoa/RuntimeApplicationChecksCocoa.mm
r267394 r267612 435 435 } 436 436 437 bool IOSApplication::isCrunchyroll() 438 { 439 static bool isCrunchyroll = applicationBundleIsEqualTo("com.crunchyroll.iphone"_s); 440 return isCrunchyroll; 441 } 442 437 443 #endif 438 444 -
trunk/Source/WebKit/ChangeLog
r267608 r267612 1 2020-09-25 Tim Horton <timothy_horton@apple.com> 2 3 Crunchyroll playback controls do not work on iPad with trackpad 4 https://bugs.webkit.org/show_bug.cgi?id=217000 5 <rdar://problem/66362029> 6 7 Reviewed by Wenson Hsieh. 8 9 * UIProcess/ios/WKContentViewInteraction.mm: 10 (applicationIsKnownToIgnoreMouseEvents): 11 Add it to the list. 12 1 13 2020-09-25 Alex Christensen <achristensen@webkit.org> 2 14 -
trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm
r267602 r267612 8573 8573 || WebCore::IOSApplication::isOKCupid() // <rdar://problem/65698496> 8574 8574 || WebCore::IOSApplication::isJWLibrary() // <rdar://problem/68104852> 8575 || WebCore::IOSApplication::isPaperIO()) { // <rdar://problem/68738585> 8575 || WebCore::IOSApplication::isPaperIO() // <rdar://problem/68738585> 8576 || WebCore::IOSApplication::isCrunchyroll()) { // <rdar://problem/66362029> 8576 8577 warningVersion = "14.2"; 8577 8578 return YES;
Note:
See TracChangeset
for help on using the changeset viewer.