| 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 863 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 874 | 874 |
| 875 if (hasScrollbar) | 875 if (hasScrollbar) |
| 876 m_vBar = createScrollbar(); | 876 m_vBar = createScrollbar(); |
| 877 else | 877 else |
| 878 destroyScrollbar(); | 878 destroyScrollbar(); |
| 879 | 879 |
| 880 if (m_vBar) | 880 if (m_vBar) |
| 881 m_vBar->styleChanged(); | 881 m_vBar->styleChanged(); |
| 882 | 882 |
| 883 // Force an update since we know the scrollbars have changed things. | 883 // Force an update since we know the scrollbars have changed things. |
| 884 #if ENABLE(DASHBOARD_SUPPORT) || ENABLE(DRAGGABLE_REGION) | 884 #if ENABLE(DRAGGABLE_REGION) |
| 885 if (document()->hasAnnotatedRegions()) | 885 if (document()->hasAnnotatedRegions()) |
| 886 document()->setAnnotatedRegionsDirty(true); | 886 document()->setAnnotatedRegionsDirty(true); |
| 887 #endif | 887 #endif |
| 888 } | 888 } |
| 889 | 889 |
| 890 } // namespace WebCore | 890 } // namespace WebCore |
| OLD | NEW |