| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 #include "core/rendering/RenderView.h" | 99 #include "core/rendering/RenderView.h" |
| 100 #include "core/workers/WorkerThread.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 "modules/battery/BatteryController.h" |
| 110 #endif | 110 #endif |
| 111 | 111 |
| 112 #if ENABLE(PAGE_POPUP) | 112 #if ENABLE(PAGE_POPUP) |
| 113 #include "core/page/PagePopupController.h" | 113 #include "core/page/PagePopupController.h" |
| 114 #endif | 114 #endif |
| 115 | 115 |
| 116 #include "core/platform/graphics/GraphicsLayer.h" | 116 #include "core/platform/graphics/GraphicsLayer.h" |
| 117 #include "core/platform/graphics/chromium/GraphicsLayerChromium.h" | 117 #include "core/platform/graphics/chromium/GraphicsLayerChromium.h" |
| 118 #include "core/platform/graphics/filters/FilterOperation.h" | 118 #include "core/platform/graphics/filters/FilterOperation.h" |
| 119 #include "core/platform/graphics/filters/FilterOperations.h" | 119 #include "core/platform/graphics/filters/FilterOperations.h" |
| (...skipping 1875 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 |