| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. |
| 3 * 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 3 * 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 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 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 #include "core/editing/FrameSelection.h" | 40 #include "core/editing/FrameSelection.h" |
| 41 #include "core/html/HTMLOptGroupElement.h" | 41 #include "core/html/HTMLOptGroupElement.h" |
| 42 #include "core/html/HTMLOptionElement.h" | 42 #include "core/html/HTMLOptionElement.h" |
| 43 #include "core/html/HTMLSelectElement.h" | 43 #include "core/html/HTMLSelectElement.h" |
| 44 #include "core/page/EventHandler.h" | 44 #include "core/page/EventHandler.h" |
| 45 #include "core/page/FocusController.h" | 45 #include "core/page/FocusController.h" |
| 46 #include "core/frame/Frame.h" | 46 #include "core/frame/Frame.h" |
| 47 #include "core/frame/FrameView.h" | 47 #include "core/frame/FrameView.h" |
| 48 #include "core/page/Page.h" | 48 #include "core/page/Page.h" |
| 49 #include "core/page/SpatialNavigation.h" | 49 #include "core/page/SpatialNavigation.h" |
| 50 #include "core/platform/Scrollbar.h" | |
| 51 #include "core/platform/graphics/FontCache.h" | |
| 52 #include "core/platform/graphics/GraphicsContext.h" | |
| 53 #include "core/rendering/HitTestResult.h" | 50 #include "core/rendering/HitTestResult.h" |
| 54 #include "core/rendering/LayoutRectRecorder.h" | 51 #include "core/rendering/LayoutRectRecorder.h" |
| 55 #include "core/rendering/PaintInfo.h" | 52 #include "core/rendering/PaintInfo.h" |
| 56 #include "core/rendering/RenderScrollbar.h" | 53 #include "core/rendering/RenderScrollbar.h" |
| 57 #include "core/rendering/RenderText.h" | 54 #include "core/rendering/RenderText.h" |
| 58 #include "core/rendering/RenderTheme.h" | 55 #include "core/rendering/RenderTheme.h" |
| 59 #include "core/rendering/RenderView.h" | 56 #include "core/rendering/RenderView.h" |
| 57 #include "platform/fonts/FontCache.h" |
| 58 #include "platform/graphics/GraphicsContext.h" |
| 59 #include "platform/scroll/Scrollbar.h" |
| 60 | 60 |
| 61 using namespace std; | 61 using namespace std; |
| 62 | 62 |
| 63 namespace WebCore { | 63 namespace WebCore { |
| 64 | 64 |
| 65 using namespace HTMLNames; | 65 using namespace HTMLNames; |
| 66 | 66 |
| 67 const int rowSpacing = 1; | 67 const int rowSpacing = 1; |
| 68 | 68 |
| 69 const int optionsSpacingHorizontal = 2; | 69 const int optionsSpacingHorizontal = 2; |
| (...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 925 | 925 |
| 926 if (m_vBar) | 926 if (m_vBar) |
| 927 m_vBar->styleChanged(); | 927 m_vBar->styleChanged(); |
| 928 | 928 |
| 929 // Force an update since we know the scrollbars have changed things. | 929 // Force an update since we know the scrollbars have changed things. |
| 930 if (document().hasAnnotatedRegions()) | 930 if (document().hasAnnotatedRegions()) |
| 931 document().setAnnotatedRegionsDirty(true); | 931 document().setAnnotatedRegionsDirty(true); |
| 932 } | 932 } |
| 933 | 933 |
| 934 } // namespace WebCore | 934 } // namespace WebCore |
| OLD | NEW |