| OLD | NEW | 
|---|
| 1 /* | 1 /* | 
| 2  * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. | 2  * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. | 
| 3  * | 3  * | 
| 4  * Redistribution and use in source and binary forms, with or without | 4  * Redistribution and use in source and binary forms, with or without | 
| 5  * modification, are permitted provided that the following conditions | 5  * modification, are permitted provided that the following conditions | 
| 6  * are met: | 6  * are met: | 
| 7  * 1. Redistributions of source code must retain the above copyright | 7  * 1. Redistributions of source code must retain the above copyright | 
| 8  *    notice, this list of conditions and the following disclaimer. | 8  *    notice, this list of conditions and the following disclaimer. | 
| 9  * 2. Redistributions in binary form must reproduce the above copyright | 9  * 2. Redistributions in binary form must reproduce the above copyright | 
| 10  *    notice, this list of conditions and the following disclaimer in the | 10  *    notice, this list of conditions and the following disclaimer in the | 
| 11  *    documentation and/or other materials provided with the distribution. | 11  *    documentation and/or other materials provided with the distribution. | 
| 12  * | 12  * | 
| 13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | 13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | 
| 14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
| 15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 
| 16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR | 16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR | 
| 17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 
| 18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 
| 19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 
| 20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 
| 21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
| 22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
| 23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
| 24  */ | 24  */ | 
| 25 | 25 | 
| 26 #include "config.h" | 26 #include "config.h" | 
| 27 #include "htmlediting.h" | 27 #include "htmlediting.h" | 
| 28 | 28 | 
| 29 #include "AXObjectCache.h" |  | 
| 30 #include "Document.h" | 29 #include "Document.h" | 
| 31 #include "Editor.h" | 30 #include "Editor.h" | 
| 32 #include "ExceptionCodePlaceholder.h" | 31 #include "ExceptionCodePlaceholder.h" | 
| 33 #include "Frame.h" | 32 #include "Frame.h" | 
| 34 #include "HTMLBRElement.h" | 33 #include "HTMLBRElement.h" | 
| 35 #include "HTMLDivElement.h" | 34 #include "HTMLDivElement.h" | 
| 36 #include "HTMLElementFactory.h" | 35 #include "HTMLElementFactory.h" | 
| 37 #include "HTMLInterchange.h" | 36 #include "HTMLInterchange.h" | 
| 38 #include "HTMLLIElement.h" | 37 #include "HTMLLIElement.h" | 
| 39 #include "HTMLNames.h" | 38 #include "HTMLNames.h" | 
| 40 #include "HTMLOListElement.h" | 39 #include "HTMLOListElement.h" | 
| 41 #include "HTMLObjectElement.h" | 40 #include "HTMLObjectElement.h" | 
| 42 #include "HTMLParagraphElement.h" | 41 #include "HTMLParagraphElement.h" | 
| 43 #include "HTMLTextFormControlElement.h" | 42 #include "HTMLTextFormControlElement.h" | 
| 44 #include "HTMLUListElement.h" | 43 #include "HTMLUListElement.h" | 
| 45 #include "NodeTraversal.h" | 44 #include "NodeTraversal.h" | 
| 46 #include "PositionIterator.h" | 45 #include "PositionIterator.h" | 
| 47 #include "Range.h" | 46 #include "Range.h" | 
| 48 #include "RenderObject.h" | 47 #include "RenderObject.h" | 
| 49 #include "ShadowRoot.h" | 48 #include "ShadowRoot.h" | 
| 50 #include "Text.h" | 49 #include "Text.h" | 
| 51 #include "TextIterator.h" | 50 #include "TextIterator.h" | 
| 52 #include "VisiblePosition.h" | 51 #include "VisiblePosition.h" | 
| 53 #include "VisibleSelection.h" | 52 #include "VisibleSelection.h" | 
| 54 #include "VisibleUnits.h" | 53 #include "VisibleUnits.h" | 
|  | 54 #include "core/accessibility/AXObjectCache.h" | 
| 55 #include <wtf/Assertions.h> | 55 #include <wtf/Assertions.h> | 
| 56 #include <wtf/StdLibExtras.h> | 56 #include <wtf/StdLibExtras.h> | 
| 57 #include <wtf/unicode/CharacterNames.h> | 57 #include <wtf/unicode/CharacterNames.h> | 
| 58 | 58 | 
| 59 using namespace std; | 59 using namespace std; | 
| 60 | 60 | 
| 61 namespace WebCore { | 61 namespace WebCore { | 
| 62 | 62 | 
| 63 using namespace HTMLNames; | 63 using namespace HTMLNames; | 
| 64 | 64 | 
| (...skipping 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1201     // if the selection starts just before a paragraph break, skip over it | 1201     // if the selection starts just before a paragraph break, skip over it | 
| 1202     if (isEndOfParagraph(visiblePosition)) | 1202     if (isEndOfParagraph(visiblePosition)) | 
| 1203         return visiblePosition.next().deepEquivalent().downstream(); | 1203         return visiblePosition.next().deepEquivalent().downstream(); | 
| 1204 | 1204 | 
| 1205     // otherwise, make sure to be at the start of the first selected node, | 1205     // otherwise, make sure to be at the start of the first selected node, | 
| 1206     // instead of possibly at the end of the last node before the selection | 1206     // instead of possibly at the end of the last node before the selection | 
| 1207     return visiblePosition.deepEquivalent().downstream(); | 1207     return visiblePosition.deepEquivalent().downstream(); | 
| 1208 } | 1208 } | 
| 1209 | 1209 | 
| 1210 } // namespace WebCore | 1210 } // namespace WebCore | 
| OLD | NEW | 
|---|