| OLD | NEW |
| 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 Loading... |
| 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 Vector<NodeOrString>& nodes, Exception
State& exceptionState) |
| 67 { |
| 68 return node.prepend(nodes, exceptionState); |
| 69 } |
| 70 |
| 71 static void append(Node& node, const Vector<NodeOrString>& nodes, ExceptionS
tate& 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 |
| OLD | NEW |