| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple 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 * | 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 19 matching lines...) Expand all Loading... |
| 30 #include "FormController.h" | 30 #include "FormController.h" |
| 31 #include "HTMLInputElement.h" | 31 #include "HTMLInputElement.h" |
| 32 #include "HTMLMediaElement.h" | 32 #include "HTMLMediaElement.h" |
| 33 #include "HTMLNames.h" | 33 #include "HTMLNames.h" |
| 34 #include "HTMLSelectElement.h" | 34 #include "HTMLSelectElement.h" |
| 35 #include "HTMLTextAreaElement.h" | 35 #include "HTMLTextAreaElement.h" |
| 36 #include "InspectorFrontendClientLocal.h" | 36 #include "InspectorFrontendClientLocal.h" |
| 37 #include "InternalSettings.h" | 37 #include "InternalSettings.h" |
| 38 #include "MallocStatistics.h" | 38 #include "MallocStatistics.h" |
| 39 #include "MockPagePopupDriver.h" | 39 #include "MockPagePopupDriver.h" |
| 40 #include "SerializedScriptValue.h" | |
| 41 #include "TypeConversions.h" | 40 #include "TypeConversions.h" |
| 41 #include "bindings/v8/SerializedScriptValue.h" |
| 42 #include "core/css/StyleSheetContents.h" | 42 #include "core/css/StyleSheetContents.h" |
| 43 #include "core/dom/ClientRect.h" | 43 #include "core/dom/ClientRect.h" |
| 44 #include "core/dom/ClientRectList.h" | 44 #include "core/dom/ClientRectList.h" |
| 45 #include "core/dom/ComposedShadowTreeWalker.h" | 45 #include "core/dom/ComposedShadowTreeWalker.h" |
| 46 #include "core/dom/DOMStringList.h" | 46 #include "core/dom/DOMStringList.h" |
| 47 #include "core/dom/Document.h" | 47 #include "core/dom/Document.h" |
| 48 #include "core/dom/DocumentMarker.h" | 48 #include "core/dom/DocumentMarker.h" |
| 49 #include "core/dom/DocumentMarkerController.h" | 49 #include "core/dom/DocumentMarkerController.h" |
| 50 #include "core/dom/Element.h" | 50 #include "core/dom/Element.h" |
| 51 #include "core/dom/ElementShadow.h" | 51 #include "core/dom/ElementShadow.h" |
| (...skipping 1943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1995 | 1995 |
| 1996 RenderObject* renderer = select->renderer(); | 1996 RenderObject* renderer = select->renderer(); |
| 1997 if (!renderer->isMenuList()) | 1997 if (!renderer->isMenuList()) |
| 1998 return false; | 1998 return false; |
| 1999 | 1999 |
| 2000 RenderMenuList* menuList = toRenderMenuList(renderer); | 2000 RenderMenuList* menuList = toRenderMenuList(renderer); |
| 2001 return menuList->popupIsVisible(); | 2001 return menuList->popupIsVisible(); |
| 2002 } | 2002 } |
| 2003 | 2003 |
| 2004 } | 2004 } |
| OLD | NEW |