Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: trunk/Source/core/dom/Element.cpp

Issue 75463008: Revert 162247 "Revert 162180 "[Refactoring] Remove include "core..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « trunk/Source/core/css/SelectorChecker.h ('k') | trunk/Source/core/dom/Node.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 #include "core/html/HTMLCollection.h" 81 #include "core/html/HTMLCollection.h"
82 #include "core/html/HTMLDocument.h" 82 #include "core/html/HTMLDocument.h"
83 #include "core/html/HTMLElement.h" 83 #include "core/html/HTMLElement.h"
84 #include "core/html/HTMLFormControlsCollection.h" 84 #include "core/html/HTMLFormControlsCollection.h"
85 #include "core/html/HTMLFrameOwnerElement.h" 85 #include "core/html/HTMLFrameOwnerElement.h"
86 #include "core/html/HTMLLabelElement.h" 86 #include "core/html/HTMLLabelElement.h"
87 #include "core/html/HTMLOptionsCollection.h" 87 #include "core/html/HTMLOptionsCollection.h"
88 #include "core/html/HTMLTableRowsCollection.h" 88 #include "core/html/HTMLTableRowsCollection.h"
89 #include "core/html/HTMLTemplateElement.h" 89 #include "core/html/HTMLTemplateElement.h"
90 #include "core/html/parser/HTMLParserIdioms.h" 90 #include "core/html/parser/HTMLParserIdioms.h"
91 #include "core/inspector/InspectorInstrumentation.h"
91 #include "core/page/FocusController.h" 92 #include "core/page/FocusController.h"
92 #include "core/page/Page.h" 93 #include "core/page/Page.h"
93 #include "core/page/PointerLockController.h" 94 #include "core/page/PointerLockController.h"
94 #include "core/rendering/FlowThreadController.h" 95 #include "core/rendering/FlowThreadController.h"
95 #include "core/rendering/RenderRegion.h" 96 #include "core/rendering/RenderRegion.h"
96 #include "core/rendering/RenderView.h" 97 #include "core/rendering/RenderView.h"
97 #include "core/rendering/RenderWidget.h" 98 #include "core/rendering/RenderWidget.h"
98 #include "core/svg/SVGDocumentExtensions.h" 99 #include "core/svg/SVGDocumentExtensions.h"
99 #include "core/svg/SVGElement.h" 100 #include "core/svg/SVGElement.h"
100 #include "wtf/BitVector.h" 101 #include "wtf/BitVector.h"
(...skipping 3412 matching lines...) Expand 10 before | Expand all | Expand 10 after
3513 // Before doing so, we need to resolve issues in HTMLSelectElement::recalcLi stItems 3514 // Before doing so, we need to resolve issues in HTMLSelectElement::recalcLi stItems
3514 // and RenderMenuList::setText. See also https://bugs.webkit.org/show_bug.cg i?id=88405 3515 // and RenderMenuList::setText. See also https://bugs.webkit.org/show_bug.cg i?id=88405
3515 if (hasTagName(optionTag) || hasTagName(optgroupTag)) 3516 if (hasTagName(optionTag) || hasTagName(optgroupTag))
3516 return false; 3517 return false;
3517 if (FullscreenElementStack::isActiveFullScreenElement(this)) 3518 if (FullscreenElementStack::isActiveFullScreenElement(this))
3518 return false; 3519 return false;
3519 return true; 3520 return true;
3520 } 3521 }
3521 3522
3522 } // namespace WebCore 3523 } // namespace WebCore
OLDNEW
« no previous file with comments | « trunk/Source/core/css/SelectorChecker.h ('k') | trunk/Source/core/dom/Node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698