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

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

Issue 149243006: Decide on IsFinishedParsingChilden for flag name (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Bring back friend Document Created 6 years, 10 months 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
« no previous file with comments | « Source/core/dom/Element.h ('k') | 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 1937 matching lines...) Expand 10 before | Expand all | Expand 10 after
1948 1948
1949 void Element::removeAllEventListeners() 1949 void Element::removeAllEventListeners()
1950 { 1950 {
1951 ContainerNode::removeAllEventListeners(); 1951 ContainerNode::removeAllEventListeners();
1952 if (ElementShadow* shadow = this->shadow()) 1952 if (ElementShadow* shadow = this->shadow())
1953 shadow->removeAllEventListeners(); 1953 shadow->removeAllEventListeners();
1954 } 1954 }
1955 1955
1956 void Element::finishParsingChildren() 1956 void Element::finishParsingChildren()
1957 { 1957 {
1958 setIsParsingChildrenFinished(true); 1958 setIsFinishedParsingChildren(true);
1959 checkForSiblingStyleChanges(this, lastChild(), 0, 0); 1959 checkForSiblingStyleChanges(this, lastChild(), 0, 0);
1960 } 1960 }
1961 1961
1962 #ifndef NDEBUG 1962 #ifndef NDEBUG
1963 void Element::formatForDebugger(char* buffer, unsigned length) const 1963 void Element::formatForDebugger(char* buffer, unsigned length) const
1964 { 1964 {
1965 StringBuilder result; 1965 StringBuilder result;
1966 String s; 1966 String s;
1967 1967
1968 result.append(nodeName()); 1968 result.append(nodeName());
(...skipping 1651 matching lines...) Expand 10 before | Expand all | Expand 10 after
3620 // Before doing so, we need to resolve issues in HTMLSelectElement::recalcLi stItems 3620 // Before doing so, we need to resolve issues in HTMLSelectElement::recalcLi stItems
3621 // and RenderMenuList::setText. See also https://bugs.webkit.org/show_bug.cg i?id=88405 3621 // and RenderMenuList::setText. See also https://bugs.webkit.org/show_bug.cg i?id=88405
3622 if (hasTagName(optionTag) || hasTagName(optgroupTag)) 3622 if (hasTagName(optionTag) || hasTagName(optgroupTag))
3623 return false; 3623 return false;
3624 if (FullscreenElementStack::isActiveFullScreenElement(this)) 3624 if (FullscreenElementStack::isActiveFullScreenElement(this))
3625 return false; 3625 return false;
3626 return true; 3626 return true;
3627 } 3627 }
3628 3628
3629 } // namespace WebCore 3629 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/Element.h ('k') | Source/core/dom/Node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698