| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 #include "core/page/PointerLockController.h" | 91 #include "core/page/PointerLockController.h" |
| 92 #include "core/rendering/FlowThreadController.h" | 92 #include "core/rendering/FlowThreadController.h" |
| 93 #include "core/rendering/RenderNamedFlowFragment.h" | 93 #include "core/rendering/RenderNamedFlowFragment.h" |
| 94 #include "core/rendering/RenderView.h" | 94 #include "core/rendering/RenderView.h" |
| 95 #include "core/rendering/RenderWidget.h" | 95 #include "core/rendering/RenderWidget.h" |
| 96 #include "core/svg/SVGDocumentExtensions.h" | 96 #include "core/svg/SVGDocumentExtensions.h" |
| 97 #include "core/svg/SVGElement.h" | 97 #include "core/svg/SVGElement.h" |
| 98 #include "wtf/BitVector.h" | 98 #include "wtf/BitVector.h" |
| 99 #include "wtf/HashFunctions.h" | 99 #include "wtf/HashFunctions.h" |
| 100 #include "wtf/text/CString.h" | 100 #include "wtf/text/CString.h" |
| 101 #include "wtf/text/StringBuilder.h" |
| 101 #include "wtf/text/TextPosition.h" | 102 #include "wtf/text/TextPosition.h" |
| 102 | 103 |
| 103 namespace WebCore { | 104 namespace WebCore { |
| 104 | 105 |
| 105 using namespace HTMLNames; | 106 using namespace HTMLNames; |
| 106 using namespace XMLNames; | 107 using namespace XMLNames; |
| 107 | 108 |
| 108 class StyleResolverParentPusher { | 109 class StyleResolverParentPusher { |
| 109 public: | 110 public: |
| 110 explicit StyleResolverParentPusher(Element& parent) | 111 explicit StyleResolverParentPusher(Element& parent) |
| (...skipping 3526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3637 // Before doing so, we need to resolve issues in HTMLSelectElement::recalcLi
stItems | 3638 // Before doing so, we need to resolve issues in HTMLSelectElement::recalcLi
stItems |
| 3638 // and RenderMenuList::setText. See also https://bugs.webkit.org/show_bug.cg
i?id=88405 | 3639 // and RenderMenuList::setText. See also https://bugs.webkit.org/show_bug.cg
i?id=88405 |
| 3639 if (hasTagName(optionTag) || hasTagName(optgroupTag)) | 3640 if (hasTagName(optionTag) || hasTagName(optgroupTag)) |
| 3640 return false; | 3641 return false; |
| 3641 if (FullscreenElementStack::isActiveFullScreenElement(this)) | 3642 if (FullscreenElementStack::isActiveFullScreenElement(this)) |
| 3642 return false; | 3643 return false; |
| 3643 return true; | 3644 return true; |
| 3644 } | 3645 } |
| 3645 | 3646 |
| 3646 } // namespace WebCore | 3647 } // namespace WebCore |
| OLD | NEW |