| 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 11 matching lines...) Expand all Loading... |
| 22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #include "config.h" | 27 #include "config.h" |
| 28 #include "Internals.h" | 28 #include "Internals.h" |
| 29 | 29 |
| 30 #include "AnimationController.h" | 30 #include "AnimationController.h" |
| 31 #include "BackForwardController.h" | 31 #include "BackForwardController.h" |
| 32 #include "CachedResourceLoader.h" | |
| 33 #include "Chrome.h" | 32 #include "Chrome.h" |
| 34 #include "ChromeClient.h" | 33 #include "ChromeClient.h" |
| 35 #include "ClientRect.h" | 34 #include "ClientRect.h" |
| 36 #include "ClientRectList.h" | 35 #include "ClientRectList.h" |
| 37 #include "ComposedShadowTreeWalker.h" | 36 #include "ComposedShadowTreeWalker.h" |
| 38 #include "ContentDistributor.h" | 37 #include "ContentDistributor.h" |
| 39 #include "DOMPoint.h" | 38 #include "DOMPoint.h" |
| 40 #include "DOMStringList.h" | 39 #include "DOMStringList.h" |
| 41 #include "DOMWindow.h" | 40 #include "DOMWindow.h" |
| 42 #include "Document.h" | 41 #include "Document.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 61 #include "InspectorConsoleAgent.h" | 60 #include "InspectorConsoleAgent.h" |
| 62 #include "InspectorController.h" | 61 #include "InspectorController.h" |
| 63 #include "InspectorCounters.h" | 62 #include "InspectorCounters.h" |
| 64 #include "InspectorFrontendChannel.h" | 63 #include "InspectorFrontendChannel.h" |
| 65 #include "InspectorFrontendClientLocal.h" | 64 #include "InspectorFrontendClientLocal.h" |
| 66 #include "InspectorInstrumentation.h" | 65 #include "InspectorInstrumentation.h" |
| 67 #include "InspectorOverlay.h" | 66 #include "InspectorOverlay.h" |
| 68 #include "InstrumentingAgents.h" | 67 #include "InstrumentingAgents.h" |
| 69 #include "InternalSettings.h" | 68 #include "InternalSettings.h" |
| 70 #include "MallocStatistics.h" | 69 #include "MallocStatistics.h" |
| 71 #include "MemoryCache.h" | |
| 72 #include "MockPagePopupDriver.h" | 70 #include "MockPagePopupDriver.h" |
| 73 #include "NodeRenderingContext.h" | 71 #include "NodeRenderingContext.h" |
| 74 #include "Page.h" | 72 #include "Page.h" |
| 75 #include "PrintContext.h" | 73 #include "PrintContext.h" |
| 76 #include "PseudoElement.h" | 74 #include "PseudoElement.h" |
| 77 #include "Range.h" | 75 #include "Range.h" |
| 78 #include "RuntimeEnabledFeatures.h" | 76 #include "RuntimeEnabledFeatures.h" |
| 79 #include "ScrollingCoordinator.h" | 77 #include "ScrollingCoordinator.h" |
| 80 #include "SelectRuleFeatureSet.h" | 78 #include "SelectRuleFeatureSet.h" |
| 81 #include "SerializedScriptValue.h" | 79 #include "SerializedScriptValue.h" |
| 82 #include "Settings.h" | 80 #include "Settings.h" |
| 83 #include "ShadowRoot.h" | 81 #include "ShadowRoot.h" |
| 84 #include "SpellChecker.h" | 82 #include "SpellChecker.h" |
| 85 #include "StyleSheetContents.h" | 83 #include "StyleSheetContents.h" |
| 86 #include "TextIterator.h" | 84 #include "TextIterator.h" |
| 87 #include "TreeScope.h" | 85 #include "TreeScope.h" |
| 88 #include "TypeConversions.h" | 86 #include "TypeConversions.h" |
| 89 #include "ViewportArguments.h" | 87 #include "ViewportArguments.h" |
| 90 #include "WorkerThread.h" | 88 #include "WorkerThread.h" |
| 91 #include "core/loader/FrameLoader.h" | 89 #include "core/loader/FrameLoader.h" |
| 90 #include "core/loader/cache/CachedResourceLoader.h" |
| 91 #include "core/loader/cache/MemoryCache.h" |
| 92 #include "core/platform/Cursor.h" | 92 #include "core/platform/Cursor.h" |
| 93 #include "core/platform/Language.h" | 93 #include "core/platform/Language.h" |
| 94 #include "core/platform/SchemeRegistry.h" | 94 #include "core/platform/SchemeRegistry.h" |
| 95 #include "core/platform/graphics/IntRect.h" | 95 #include "core/platform/graphics/IntRect.h" |
| 96 #include "core/rendering/RenderMenuList.h" | 96 #include "core/rendering/RenderMenuList.h" |
| 97 #include "core/rendering/RenderObject.h" | 97 #include "core/rendering/RenderObject.h" |
| 98 #include "core/rendering/RenderTreeAsText.h" | 98 #include "core/rendering/RenderTreeAsText.h" |
| 99 #include <wtf/dtoa.h> | 99 #include <wtf/dtoa.h> |
| 100 #include <wtf/text/StringBuffer.h> | 100 #include <wtf/text/StringBuffer.h> |
| 101 | 101 |
| (...skipping 1860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1962 | 1962 |
| 1963 RenderObject* renderer = select->renderer(); | 1963 RenderObject* renderer = select->renderer(); |
| 1964 if (!renderer->isMenuList()) | 1964 if (!renderer->isMenuList()) |
| 1965 return false; | 1965 return false; |
| 1966 | 1966 |
| 1967 RenderMenuList* menuList = toRenderMenuList(renderer); | 1967 RenderMenuList* menuList = toRenderMenuList(renderer); |
| 1968 return menuList->popupIsVisible(); | 1968 return menuList->popupIsVisible(); |
| 1969 } | 1969 } |
| 1970 | 1970 |
| 1971 } | 1971 } |
| OLD | NEW |