Changeset 267682 in webkit
- Timestamp:
- Sep 27, 2020, 1:00:40 PM (6 years ago)
- Location:
- branches/safari-610-branch/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
-
branches/safari-610-branch/Source/WebCore/ChangeLog
r267681 r267682 1 2020-09-27 Alan Coon <alancoon@apple.com> 2 3 Cherry-pick r267394. rdar://problem/69593980 4 5 paper.io ad close buttons cannot be iteracted with via trackpad on iPad 6 https://bugs.webkit.org/show_bug.cgi?id=216812 7 <rdar://problem/68738585> 8 9 Reviewed by Wenson Hsieh. 10 11 Source/WebCore: 12 13 * platform/RuntimeApplicationChecks.h: 14 * platform/cocoa/RuntimeApplicationChecksCocoa.mm: 15 (WebCore::IOSApplication::isPaperIO): 16 17 Source/WebKit: 18 19 * UIProcess/ios/WKContentViewInteraction.mm: 20 (applicationIsKnownToIgnoreMouseEvents): 21 22 23 git-svn-id: https://svn.webkit.org/repository/webkit/trunk@267394 268f45cc-cd09-0410-ab3c-d52691b4dbfc 24 25 2020-09-21 Tim Horton <timothy_horton@apple.com> 26 27 paper.io ad close buttons cannot be iteracted with via trackpad on iPad 28 https://bugs.webkit.org/show_bug.cgi?id=216812 29 <rdar://problem/68738585> 30 31 Reviewed by Wenson Hsieh. 32 33 * platform/RuntimeApplicationChecks.h: 34 * platform/cocoa/RuntimeApplicationChecksCocoa.mm: 35 (WebCore::IOSApplication::isPaperIO): 36 1 37 2020-09-27 Alan Coon <alancoon@apple.com> 2 38 -
branches/safari-610-branch/Source/WebCore/platform/RuntimeApplicationChecks.h
r266864 r267682 113 113 WEBCORE_EXPORT bool isOKCupid(); 114 114 WEBCORE_EXPORT bool isJWLibrary(); 115 WEBCORE_EXPORT bool isPaperIO(); 115 116 116 117 } // IOSApplication -
branches/safari-610-branch/Source/WebCore/platform/cocoa/RuntimeApplicationChecksCocoa.mm
r266864 r267682 429 429 } 430 430 431 bool IOSApplication::isPaperIO() 432 { 433 static bool isPaperIO = applicationBundleIsEqualTo("io.voodoo.paperio"_s); 434 return isPaperIO; 435 } 436 431 437 #endif 432 438 -
branches/safari-610-branch/Source/WebKit/ChangeLog
r267680 r267682 1 2020-09-27 Alan Coon <alancoon@apple.com> 2 3 Cherry-pick r267394. rdar://problem/69593980 4 5 paper.io ad close buttons cannot be iteracted with via trackpad on iPad 6 https://bugs.webkit.org/show_bug.cgi?id=216812 7 <rdar://problem/68738585> 8 9 Reviewed by Wenson Hsieh. 10 11 Source/WebCore: 12 13 * platform/RuntimeApplicationChecks.h: 14 * platform/cocoa/RuntimeApplicationChecksCocoa.mm: 15 (WebCore::IOSApplication::isPaperIO): 16 17 Source/WebKit: 18 19 * UIProcess/ios/WKContentViewInteraction.mm: 20 (applicationIsKnownToIgnoreMouseEvents): 21 22 23 git-svn-id: https://svn.webkit.org/repository/webkit/trunk@267394 268f45cc-cd09-0410-ab3c-d52691b4dbfc 24 25 2020-09-21 Tim Horton <timothy_horton@apple.com> 26 27 paper.io ad close buttons cannot be iteracted with via trackpad on iPad 28 https://bugs.webkit.org/show_bug.cgi?id=216812 29 <rdar://problem/68738585> 30 31 Reviewed by Wenson Hsieh. 32 33 * UIProcess/ios/WKContentViewInteraction.mm: 34 (applicationIsKnownToIgnoreMouseEvents): 35 1 36 2020-09-27 Alan Coon <alancoon@apple.com> 2 37 -
branches/safari-610-branch/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm
r267628 r267682 8634 8634 || WebCore::IOSApplication::isNoggin() // <rdar://problem/64830335> 8635 8635 || WebCore::IOSApplication::isOKCupid() // <rdar://problem/65698496> 8636 || WebCore::IOSApplication::isJWLibrary()) { // <rdar://problem/68104852> 8636 || WebCore::IOSApplication::isJWLibrary() // <rdar://problem/68104852> 8637 || WebCore::IOSApplication::isPaperIO()) { // <rdar://problem/68738585> 8637 8638 warningVersion = "14.2"; 8638 8639 return YES;
Note:
See TracChangeset
for help on using the changeset viewer.