Changeset 204159 in webkit
- Timestamp:
- Aug 4, 2016, 7:35:28 PM (9 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r204154 r204159 1 2016-08-04 Myles C. Maxfield <mmaxfield@apple.com> 2 3 [iOS] Some videos in iBooks erroneously go fullscreen 4 https://bugs.webkit.org/show_bug.cgi?id=160582 5 <rdar://problem/27669831> 6 7 Reviewed by Jon Lee. 8 9 No new tests because we can't currently mock the iBooks application bundle ID. 10 11 * html/MediaElementSession.cpp: 12 (WebCore::MediaElementSession::requiresFullscreenForVideoPlayback): 13 1 14 2016-08-04 Michael Catanzaro <mcatanzaro@igalia.com> 2 15 -
trunk/Source/WebCore/html/MediaElementSession.cpp
r203928 r204159 471 471 472 472 #if PLATFORM(IOS) 473 if (IOSApplication::isIBooks()) 474 return !element.hasAttributeWithoutSynchronization(HTMLNames::webkit_playsinlineAttr) && !element.hasAttributeWithoutSynchronization(HTMLNames::playsinlineAttr); 473 475 if (dyld_get_program_sdk_version() < DYLD_IOS_VERSION_10_0) 474 476 return !element.hasAttributeWithoutSynchronization(HTMLNames::webkit_playsinlineAttr);
Note:
See TracChangeset
for help on using the changeset viewer.