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

Side by Side Diff: Source/core/dom/Node.h

Issue 119063002: Have HTMLFormElement's named getter return a RadioNodeList. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Test style adjustments + const'ify new RadioNodeList field. Created 7 years 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
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 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 #endif 600 #endif
601 601
602 void invalidateNodeListCachesInAncestors(const QualifiedName* attrName = 0, Element* attributeOwnerElement = 0); 602 void invalidateNodeListCachesInAncestors(const QualifiedName* attrName = 0, Element* attributeOwnerElement = 0);
603 NodeListsNodeData* nodeLists(); 603 NodeListsNodeData* nodeLists();
604 void clearNodeLists(); 604 void clearNodeLists();
605 605
606 PassRefPtr<NodeList> getElementsByTagName(const AtomicString&); 606 PassRefPtr<NodeList> getElementsByTagName(const AtomicString&);
607 PassRefPtr<NodeList> getElementsByTagNameNS(const AtomicString& namespaceURI , const AtomicString& localName); 607 PassRefPtr<NodeList> getElementsByTagNameNS(const AtomicString& namespaceURI , const AtomicString& localName);
608 PassRefPtr<NodeList> getElementsByName(const String& elementName); 608 PassRefPtr<NodeList> getElementsByName(const String& elementName);
609 PassRefPtr<NodeList> getElementsByClassName(const String& classNames); 609 PassRefPtr<NodeList> getElementsByClassName(const String& classNames);
610 PassRefPtr<RadioNodeList> radioNodeList(const AtomicString&); 610 PassRefPtr<RadioNodeList> radioNodeList(const AtomicString&, bool onlyMatchI mgElements = false);
611 611
612 virtual bool willRespondToMouseMoveEvents(); 612 virtual bool willRespondToMouseMoveEvents();
613 virtual bool willRespondToMouseClickEvents(); 613 virtual bool willRespondToMouseClickEvents();
614 virtual bool willRespondToTouchEvents(); 614 virtual bool willRespondToTouchEvents();
615 615
616 PassRefPtr<Element> querySelector(const AtomicString& selectors, ExceptionSt ate&); 616 PassRefPtr<Element> querySelector(const AtomicString& selectors, ExceptionSt ate&);
617 PassRefPtr<NodeList> querySelectorAll(const AtomicString& selectors, Excepti onState&); 617 PassRefPtr<NodeList> querySelectorAll(const AtomicString& selectors, Excepti onState&);
618 618
619 unsigned short compareDocumentPosition(const Node*) const; 619 unsigned short compareDocumentPosition(const Node*) const;
620 620
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
932 932
933 } // namespace WebCore 933 } // namespace WebCore
934 934
935 #ifndef NDEBUG 935 #ifndef NDEBUG
936 // Outside the WebCore namespace for ease of invocation from gdb. 936 // Outside the WebCore namespace for ease of invocation from gdb.
937 void showTree(const WebCore::Node*); 937 void showTree(const WebCore::Node*);
938 void showNodePath(const WebCore::Node*); 938 void showNodePath(const WebCore::Node*);
939 #endif 939 #endif
940 940
941 #endif 941 #endif
OLDNEW
« no previous file with comments | « LayoutTests/inspector/console/console-format-collections-expected.txt ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698