OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
3 * Portions Copyright (c) 2011 Motorola Mobility, Inc. All rights reserved. | 3 * Portions Copyright (c) 2011 Motorola Mobility, Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 10 matching lines...) Expand all Loading... |
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
25 */ | 25 */ |
26 | 26 |
27 #include "config.h" | 27 #include "config.h" |
28 #include "core/editing/VisiblePosition.h" | 28 #include "core/editing/VisiblePosition.h" |
29 | 29 |
30 #include <stdio.h> | 30 #include <stdio.h> |
31 #include "Document.h" | |
32 #include "HTMLElement.h" | 31 #include "HTMLElement.h" |
33 #include "HTMLNames.h" | 32 #include "HTMLNames.h" |
34 #include "Range.h" | 33 #include "core/dom/Document.h" |
35 #include "Text.h" | 34 #include "core/dom/Range.h" |
| 35 #include "core/dom/Text.h" |
36 #include "core/editing/VisibleUnits.h" | 36 #include "core/editing/VisibleUnits.h" |
37 #include "core/editing/htmlediting.h" | 37 #include "core/editing/htmlediting.h" |
38 #include "core/platform/Logging.h" | 38 #include "core/platform/Logging.h" |
39 #include "core/platform/graphics/FloatQuad.h" | 39 #include "core/platform/graphics/FloatQuad.h" |
40 #include "core/rendering/InlineTextBox.h" | 40 #include "core/rendering/InlineTextBox.h" |
41 #include "core/rendering/RenderBlock.h" | 41 #include "core/rendering/RenderBlock.h" |
42 #include "core/rendering/RootInlineBox.h" | 42 #include "core/rendering/RootInlineBox.h" |
43 #include <wtf/text/CString.h> | 43 #include <wtf/text/CString.h> |
44 | 44 |
45 namespace WebCore { | 45 namespace WebCore { |
(...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 if (vpos) | 752 if (vpos) |
753 vpos->showTreeForThis(); | 753 vpos->showTreeForThis(); |
754 } | 754 } |
755 | 755 |
756 void showTree(const WebCore::VisiblePosition& vpos) | 756 void showTree(const WebCore::VisiblePosition& vpos) |
757 { | 757 { |
758 vpos.showTreeForThis(); | 758 vpos.showTreeForThis(); |
759 } | 759 } |
760 | 760 |
761 #endif | 761 #endif |
OLD | NEW |