| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "InspectorFrontendClientLocal.h" | 43 #include "InspectorFrontendClientLocal.h" |
| 44 #include "InspectorInstrumentation.h" | 44 #include "InspectorInstrumentation.h" |
| 45 #include "InspectorOverlay.h" | 45 #include "InspectorOverlay.h" |
| 46 #include "InstrumentingAgents.h" | 46 #include "InstrumentingAgents.h" |
| 47 #include "InternalSettings.h" | 47 #include "InternalSettings.h" |
| 48 #include "MallocStatistics.h" | 48 #include "MallocStatistics.h" |
| 49 #include "MockPagePopupDriver.h" | 49 #include "MockPagePopupDriver.h" |
| 50 #include "SelectRuleFeatureSet.h" | 50 #include "SelectRuleFeatureSet.h" |
| 51 #include "SerializedScriptValue.h" | 51 #include "SerializedScriptValue.h" |
| 52 #include "TypeConversions.h" | 52 #include "TypeConversions.h" |
| 53 #include "WorkerThread.h" | |
| 54 #include "core/css/StyleSheetContents.h" | 53 #include "core/css/StyleSheetContents.h" |
| 55 #include "core/dom/ClientRect.h" | 54 #include "core/dom/ClientRect.h" |
| 56 #include "core/dom/ClientRectList.h" | 55 #include "core/dom/ClientRectList.h" |
| 57 #include "core/dom/ComposedShadowTreeWalker.h" | 56 #include "core/dom/ComposedShadowTreeWalker.h" |
| 58 #include "core/dom/DOMStringList.h" | 57 #include "core/dom/DOMStringList.h" |
| 59 #include "core/dom/Document.h" | 58 #include "core/dom/Document.h" |
| 60 #include "core/dom/DocumentMarker.h" | 59 #include "core/dom/DocumentMarker.h" |
| 61 #include "core/dom/DocumentMarkerController.h" | 60 #include "core/dom/DocumentMarkerController.h" |
| 62 #include "core/dom/Element.h" | 61 #include "core/dom/Element.h" |
| 63 #include "core/dom/ElementShadow.h" | 62 #include "core/dom/ElementShadow.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 91 #include "core/page/animation/AnimationController.h" | 90 #include "core/page/animation/AnimationController.h" |
| 92 #include "core/page/scrolling/ScrollingCoordinator.h" | 91 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 93 #include "core/platform/Cursor.h" | 92 #include "core/platform/Cursor.h" |
| 94 #include "core/platform/Language.h" | 93 #include "core/platform/Language.h" |
| 95 #include "core/platform/SchemeRegistry.h" | 94 #include "core/platform/SchemeRegistry.h" |
| 96 #include "core/platform/graphics/IntRect.h" | 95 #include "core/platform/graphics/IntRect.h" |
| 97 #include "core/rendering/RenderMenuList.h" | 96 #include "core/rendering/RenderMenuList.h" |
| 98 #include "core/rendering/RenderObject.h" | 97 #include "core/rendering/RenderObject.h" |
| 99 #include "core/rendering/RenderTreeAsText.h" | 98 #include "core/rendering/RenderTreeAsText.h" |
| 100 #include "core/rendering/RenderView.h" | 99 #include "core/rendering/RenderView.h" |
| 100 #include "core/workers/WorkerThread.h" |
| 101 #include <wtf/dtoa.h> | 101 #include <wtf/dtoa.h> |
| 102 #include <wtf/text/StringBuffer.h> | 102 #include <wtf/text/StringBuffer.h> |
| 103 | 103 |
| 104 #if ENABLE(INPUT_TYPE_COLOR) | 104 #if ENABLE(INPUT_TYPE_COLOR) |
| 105 #include "core/platform/ColorChooser.h" | 105 #include "core/platform/ColorChooser.h" |
| 106 #endif | 106 #endif |
| 107 | 107 |
| 108 #if ENABLE(BATTERY_STATUS) | 108 #if ENABLE(BATTERY_STATUS) |
| 109 #include "BatteryController.h" | 109 #include "BatteryController.h" |
| 110 #endif | 110 #endif |
| (...skipping 1884 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 |