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

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

Issue 1085843002: Implement DOM: prepend, append, before, after & replaceWith (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Samsung Electronics. All rights reserved. 2 * Copyright (C) 2013 Samsung Electronics. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 } 56 }
57 57
58 static unsigned childElementCount(ContainerNode& node) 58 static unsigned childElementCount(ContainerNode& node)
59 { 59 {
60 unsigned count = 0; 60 unsigned count = 0;
61 for (Element* child = ElementTraversal::firstChild(node); child; child = ElementTraversal::nextSibling(*child)) 61 for (Element* child = ElementTraversal::firstChild(node); child; child = ElementTraversal::nextSibling(*child))
62 ++count; 62 ++count;
63 return count; 63 return count;
64 } 64 }
65 65
66 static void prepend(Node& node, const HeapVector<NodeOrString>& nodes, Excep tionState& exceptionState)
67 {
68 return node.prepend(nodes, exceptionState);
69 }
70
71 static void append(Node& node, const HeapVector<NodeOrString>& nodes, Except ionState& exceptionState)
72 {
73 return node.append(nodes, exceptionState);
74 }
75
66 static PassRefPtrWillBeRawPtr<Element> querySelector(ContainerNode& node, co nst AtomicString& selectors, ExceptionState& exceptionState) 76 static PassRefPtrWillBeRawPtr<Element> querySelector(ContainerNode& node, co nst AtomicString& selectors, ExceptionState& exceptionState)
67 { 77 {
68 return node.querySelector(selectors, exceptionState); 78 return node.querySelector(selectors, exceptionState);
69 } 79 }
70 80
71 static PassRefPtrWillBeRawPtr<StaticElementList> querySelectorAll(ContainerN ode& node, const AtomicString& selectors, ExceptionState& exceptionState) 81 static PassRefPtrWillBeRawPtr<StaticElementList> querySelectorAll(ContainerN ode& node, const AtomicString& selectors, ExceptionState& exceptionState)
72 { 82 {
73 return node.querySelectorAll(selectors, exceptionState); 83 return node.querySelectorAll(selectors, exceptionState);
74 } 84 }
75 }; 85 };
76 86
77 } // namespace blink 87 } // namespace blink
78 88
79 #endif // ParentNode_h 89 #endif // ParentNode_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698