| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 4 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 4 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
reserved. |
| 7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
| 8 * Copyright (C) 2010 Google Inc. All rights reserved. | 8 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 9 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 9 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 10 * | 10 * |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 #include "core/html/HTMLOptionElement.h" | 56 #include "core/html/HTMLOptionElement.h" |
| 57 #include "core/html/forms/FormController.h" | 57 #include "core/html/forms/FormController.h" |
| 58 #include "core/input/EventHandler.h" | 58 #include "core/input/EventHandler.h" |
| 59 #include "core/inspector/ConsoleMessage.h" | 59 #include "core/inspector/ConsoleMessage.h" |
| 60 #include "core/layout/HitTestRequest.h" | 60 #include "core/layout/HitTestRequest.h" |
| 61 #include "core/layout/HitTestResult.h" | 61 #include "core/layout/HitTestResult.h" |
| 62 #include "core/layout/LayoutListBox.h" | 62 #include "core/layout/LayoutListBox.h" |
| 63 #include "core/layout/LayoutMenuList.h" | 63 #include "core/layout/LayoutMenuList.h" |
| 64 #include "core/layout/LayoutText.h" | 64 #include "core/layout/LayoutText.h" |
| 65 #include "core/layout/LayoutTheme.h" | 65 #include "core/layout/LayoutTheme.h" |
| 66 #include "core/layout/LayoutView.h" | |
| 67 #include "core/page/AutoscrollController.h" | 66 #include "core/page/AutoscrollController.h" |
| 68 #include "core/page/ChromeClient.h" | 67 #include "core/page/ChromeClient.h" |
| 69 #include "core/page/Page.h" | 68 #include "core/page/Page.h" |
| 70 #include "core/page/SpatialNavigation.h" | 69 #include "core/page/SpatialNavigation.h" |
| 71 #include "platform/PlatformMouseEvent.h" | 70 #include "platform/PlatformMouseEvent.h" |
| 72 #include "platform/PopupMenu.h" | 71 #include "platform/PopupMenu.h" |
| 73 #include "platform/TraceEvent.h" | 72 #include "platform/TraceEvent.h" |
| 74 #include "platform/text/PlatformLocale.h" | 73 #include "platform/text/PlatformLocale.h" |
| 75 | 74 |
| 76 using namespace WTF::Unicode; | 75 using namespace WTF::Unicode; |
| (...skipping 1986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2063 } | 2062 } |
| 2064 | 2063 |
| 2065 void HTMLSelectElement::didMutateSubtree() | 2064 void HTMLSelectElement::didMutateSubtree() |
| 2066 { | 2065 { |
| 2067 DCHECK(popupIsVisible()); | 2066 DCHECK(popupIsVisible()); |
| 2068 DCHECK(m_popup); | 2067 DCHECK(m_popup); |
| 2069 m_popup->updateFromElement(PopupMenu::ByDOMChange); | 2068 m_popup->updateFromElement(PopupMenu::ByDOMChange); |
| 2070 } | 2069 } |
| 2071 | 2070 |
| 2072 } // namespace blink | 2071 } // namespace blink |
| OLD | NEW |