Changeset 184306 in webkit
- Timestamp:
- May 13, 2015, 2:18:57 PM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
dom/Document.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r184304 r184306 1 2015-05-13 Eric Carlson <eric.carlson@apple.com> 2 3 Work around HTMLMediaElement::documentDidResumeFromPageCache being called twice 4 https://bugs.webkit.org/show_bug.cgi?id=144969 5 6 Reviewed by Alexey Proskuryakov. 7 8 * dom/Document.cpp: 9 (WebCore::Document::addPlaybackTargetPickerClient): Replace ASSERT with early 10 return to work around https://webkit.org/b/144970. 11 1 12 2015-05-13 Timothy Horton <timothy_horton@apple.com> 2 13 -
trunk/Source/WebCore/dom/Document.cpp
r184114 r184306 6553 6553 return; 6554 6554 6555 ASSERT(!m_clientToIDMap.contains(&client)); 6555 // FIXME: change this back to an ASSERT once https://webkit.org/b/144970 is fixed. 6556 if (m_clientToIDMap.contains(&client)) 6557 return; 6556 6558 6557 6559 uint64_t contextId = nextPlaybackTargetClientContextId();
Note:
See TracChangeset
for help on using the changeset viewer.