Changeset 164369 in webkit
- Timestamp:
- Feb 19, 2014, 10:04:39 AM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r164368 r164369 1 2014-02-19 Antti Koivisto <antti@apple.com> 2 3 Don't call to willBeDeletedFrom(Document&) when destructing document 4 https://bugs.webkit.org/show_bug.cgi?id=129013 5 6 Reviewed by Andreas Kling. 7 8 The document is half dead at this point. 9 10 * dom/ContainerNode.cpp: 11 (WebCore::ContainerNode::~ContainerNode): 12 1 13 2014-02-19 Daniel Bates <dabates@apple.com> 2 14 -
trunk/Source/WebCore/dom/ContainerNode.cpp
r164248 r164369 151 151 ContainerNode::~ContainerNode() 152 152 { 153 willBeDeletedFrom(document()); 153 if (!isDocumentNode()) 154 willBeDeletedFrom(document()); 154 155 removeDetachedChildren(); 155 156 }
Note:
See TracChangeset
for help on using the changeset viewer.