Changeset 155320 in webkit for trunk/Source/WebCore/editing/markup.cpp
- Timestamp:
- Sep 8, 2013, 10:12:43 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/editing/markup.cpp
r155228 r155320 758 758 { 759 759 if (!node) 760 return "";760 return emptyString(); 761 761 762 762 HTMLElement* deleteButtonContainerElement = 0; 763 763 #if ENABLE(DELETION_UI) 764 764 if (Frame* frame = node->document().frame()) { 765 deleteButtonContainerElement = frame->editor().deleteButtonController() ->containerElement();765 deleteButtonContainerElement = frame->editor().deleteButtonController().containerElement(); 766 766 if (node->isDescendantOf(deleteButtonContainerElement)) 767 return "";767 return emptyString(); 768 768 } 769 769 #endif
Note:
See TracChangeset
for help on using the changeset viewer.