| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2008, 2009, 2010 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 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 #include "core/html/HTMLSelectElement.h" | 52 #include "core/html/HTMLSelectElement.h" |
| 53 #include "core/page/EditorClient.h" | 53 #include "core/page/EditorClient.h" |
| 54 #include "core/page/EventHandler.h" | 54 #include "core/page/EventHandler.h" |
| 55 #include "core/page/FocusController.h" | 55 #include "core/page/FocusController.h" |
| 56 #include "core/frame/Frame.h" | 56 #include "core/frame/Frame.h" |
| 57 #include "core/page/FrameTree.h" | 57 #include "core/page/FrameTree.h" |
| 58 #include "core/frame/FrameView.h" | 58 #include "core/frame/FrameView.h" |
| 59 #include "core/page/Page.h" | 59 #include "core/page/Page.h" |
| 60 #include "core/page/Settings.h" | 60 #include "core/page/Settings.h" |
| 61 #include "core/page/SpatialNavigation.h" | 61 #include "core/page/SpatialNavigation.h" |
| 62 #include "core/platform/graphics/GraphicsContext.h" | |
| 63 #include "core/rendering/HitTestRequest.h" | 62 #include "core/rendering/HitTestRequest.h" |
| 64 #include "core/rendering/HitTestResult.h" | 63 #include "core/rendering/HitTestResult.h" |
| 65 #include "core/rendering/InlineTextBox.h" | 64 #include "core/rendering/InlineTextBox.h" |
| 66 #include "core/rendering/RenderText.h" | 65 #include "core/rendering/RenderText.h" |
| 67 #include "core/rendering/RenderTheme.h" | 66 #include "core/rendering/RenderTheme.h" |
| 68 #include "core/rendering/RenderView.h" | 67 #include "core/rendering/RenderView.h" |
| 69 #include "core/rendering/RenderWidget.h" | 68 #include "core/rendering/RenderWidget.h" |
| 70 #include "platform/SecureTextInput.h" | 69 #include "platform/SecureTextInput.h" |
| 71 #include "platform/geometry/FloatQuad.h" | 70 #include "platform/geometry/FloatQuad.h" |
| 71 #include "platform/graphics/GraphicsContext.h" |
| 72 #include "wtf/text/CString.h" | 72 #include "wtf/text/CString.h" |
| 73 | 73 |
| 74 #define EDIT_DEBUG 0 | 74 #define EDIT_DEBUG 0 |
| 75 | 75 |
| 76 namespace WebCore { | 76 namespace WebCore { |
| 77 | 77 |
| 78 using namespace HTMLNames; | 78 using namespace HTMLNames; |
| 79 | 79 |
| 80 static inline LayoutUnit NoXPosForVerticalArrowNavigation() | 80 static inline LayoutUnit NoXPosForVerticalArrowNavigation() |
| 81 { | 81 { |
| (...skipping 1773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1855 sel.showTreeForThis(); | 1855 sel.showTreeForThis(); |
| 1856 } | 1856 } |
| 1857 | 1857 |
| 1858 void showTree(const WebCore::FrameSelection* sel) | 1858 void showTree(const WebCore::FrameSelection* sel) |
| 1859 { | 1859 { |
| 1860 if (sel) | 1860 if (sel) |
| 1861 sel->showTreeForThis(); | 1861 sel->showTreeForThis(); |
| 1862 } | 1862 } |
| 1863 | 1863 |
| 1864 #endif | 1864 #endif |
| OLD | NEW |