| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
| 5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 6 * (C) 2007 David Smith (catfish.man@gmail.com) | 6 * (C) 2007 David Smith (catfish.man@gmail.com) |
| 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
All rights reserved. | 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
All rights reserved. |
| 8 * (C) 2007 Eric Seidel (eric@webkit.org) | 8 * (C) 2007 Eric Seidel (eric@webkit.org) |
| 9 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 #include "core/dom/custom/CustomElement.h" | 68 #include "core/dom/custom/CustomElement.h" |
| 69 #include "core/dom/custom/CustomElementRegistrationContext.h" | 69 #include "core/dom/custom/CustomElementRegistrationContext.h" |
| 70 #include "core/dom/shadow/InsertionPoint.h" | 70 #include "core/dom/shadow/InsertionPoint.h" |
| 71 #include "core/dom/shadow/ShadowRoot.h" | 71 #include "core/dom/shadow/ShadowRoot.h" |
| 72 #include "core/editing/FrameSelection.h" | 72 #include "core/editing/FrameSelection.h" |
| 73 #include "core/editing/TextIterator.h" | 73 #include "core/editing/TextIterator.h" |
| 74 #include "core/editing/htmlediting.h" | 74 #include "core/editing/htmlediting.h" |
| 75 #include "core/editing/markup.h" | 75 #include "core/editing/markup.h" |
| 76 #include "core/events/EventDispatcher.h" | 76 #include "core/events/EventDispatcher.h" |
| 77 #include "core/events/FocusEvent.h" | 77 #include "core/events/FocusEvent.h" |
| 78 #include "core/frame/ContentSecurityPolicy.h" | |
| 79 #include "core/frame/FrameView.h" | 78 #include "core/frame/FrameView.h" |
| 80 #include "core/frame/LocalFrame.h" | 79 #include "core/frame/LocalFrame.h" |
| 81 #include "core/frame/UseCounter.h" | 80 #include "core/frame/UseCounter.h" |
| 81 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 82 #include "core/html/ClassList.h" | 82 #include "core/html/ClassList.h" |
| 83 #include "core/html/HTMLCollection.h" | 83 #include "core/html/HTMLCollection.h" |
| 84 #include "core/html/HTMLDocument.h" | 84 #include "core/html/HTMLDocument.h" |
| 85 #include "core/html/HTMLElement.h" | 85 #include "core/html/HTMLElement.h" |
| 86 #include "core/html/HTMLFormControlsCollection.h" | 86 #include "core/html/HTMLFormControlsCollection.h" |
| 87 #include "core/html/HTMLFrameOwnerElement.h" | 87 #include "core/html/HTMLFrameOwnerElement.h" |
| 88 #include "core/html/HTMLLabelElement.h" | 88 #include "core/html/HTMLLabelElement.h" |
| 89 #include "core/html/HTMLOptionsCollection.h" | 89 #include "core/html/HTMLOptionsCollection.h" |
| 90 #include "core/html/HTMLTableRowsCollection.h" | 90 #include "core/html/HTMLTableRowsCollection.h" |
| 91 #include "core/html/HTMLTemplateElement.h" | 91 #include "core/html/HTMLTemplateElement.h" |
| (...skipping 3448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3540 // Before doing so, we need to resolve issues in HTMLSelectElement::recalcLi
stItems | 3540 // Before doing so, we need to resolve issues in HTMLSelectElement::recalcLi
stItems |
| 3541 // and RenderMenuList::setText. See also https://bugs.webkit.org/show_bug.cg
i?id=88405 | 3541 // and RenderMenuList::setText. See also https://bugs.webkit.org/show_bug.cg
i?id=88405 |
| 3542 if (hasTagName(optionTag) || hasTagName(optgroupTag)) | 3542 if (hasTagName(optionTag) || hasTagName(optgroupTag)) |
| 3543 return false; | 3543 return false; |
| 3544 if (FullscreenElementStack::isActiveFullScreenElement(this)) | 3544 if (FullscreenElementStack::isActiveFullScreenElement(this)) |
| 3545 return false; | 3545 return false; |
| 3546 return true; | 3546 return true; |
| 3547 } | 3547 } |
| 3548 | 3548 |
| 3549 } // namespace WebCore | 3549 } // namespace WebCore |
| OLD | NEW |