Changeset 107343 in webkit
- Timestamp:
- Feb 9, 2012, 6:47:04 PM (15 years ago)
- Location:
- branches/chromium/1025
- Files:
-
- 1 edited
- 4 copied
-
LayoutTests/fast/dom/remove-body-during-body-replacement-expected.txt (copied) (copied from trunk/LayoutTests/fast/dom/remove-body-during-body-replacement-expected.txt )
-
LayoutTests/fast/dom/remove-body-during-body-replacement.html (copied) (copied from trunk/LayoutTests/fast/dom/remove-body-during-body-replacement.html )
-
LayoutTests/fast/dom/remove-body-during-body-replacement2-expected.txt (copied) (copied from trunk/LayoutTests/fast/dom/remove-body-during-body-replacement2-expected.txt )
-
LayoutTests/fast/dom/remove-body-during-body-replacement2.html (copied) (copied from trunk/LayoutTests/fast/dom/remove-body-during-body-replacement2.html )
-
Source/WebCore/dom/ContainerNode.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/chromium/1025/Source/WebCore/dom/ContainerNode.cpp
r107342 r107343 117 117 ASSERT(refCount() || parentOrHostNode()); 118 118 119 RefPtr<Node> protect(this); 120 119 121 ec = 0; 120 122 … … 262 264 ASSERT(refCount() || parentOrHostNode()); 263 265 266 RefPtr<Node> protect(this); 267 264 268 ec = 0; 265 269 … … 428 432 ASSERT(refCount() || parentOrHostNode()); 429 433 434 RefPtr<Node> protect(this); 435 430 436 ec = 0; 431 437 … … 606 612 bool ContainerNode::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, bool shouldLazyAttach) 607 613 { 608 RefPtr<ContainerNode> protect or(this);614 RefPtr<ContainerNode> protect(this); 609 615 610 616 // Check that this node is not "floating".
Note:
See TracChangeset
for help on using the changeset viewer.