| 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 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 #include "core/dom/ContainerNode.h" | 34 #include "core/dom/ContainerNode.h" |
| 35 #include "core/dom/ElementTraversal.h" | 35 #include "core/dom/ElementTraversal.h" |
| 36 #include "core/html/HTMLCollection.h" | 36 #include "core/html/HTMLCollection.h" |
| 37 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" |
| 38 | 38 |
| 39 namespace blink { | 39 namespace blink { |
| 40 | 40 |
| 41 class ParentNode { | 41 class ParentNode { |
| 42 public: | 42 public: |
| 43 static PassRefPtrWillBeRawPtr<HTMLCollection> children(ContainerNode& node) | 43 static RawPtr<HTMLCollection> children(ContainerNode& node) |
| 44 { | 44 { |
| 45 return node.children(); | 45 return node.children(); |
| 46 } | 46 } |
| 47 | 47 |
| 48 static Element* firstElementChild(ContainerNode& node) | 48 static Element* firstElementChild(ContainerNode& node) |
| 49 { | 49 { |
| 50 return ElementTraversal::firstChild(node); | 50 return ElementTraversal::firstChild(node); |
| 51 } | 51 } |
| 52 | 52 |
| 53 static Element* lastElementChild(ContainerNode& node) | 53 static Element* lastElementChild(ContainerNode& node) |
| 54 { | 54 { |
| 55 return ElementTraversal::lastChild(node); | 55 return ElementTraversal::lastChild(node); |
| 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 PassRefPtrWillBeRawPtr<Element> querySelector(ContainerNode& node, co
nst AtomicString& selectors, ExceptionState& exceptionState) | 66 static RawPtr<Element> querySelector(ContainerNode& node, const AtomicString
& selectors, ExceptionState& exceptionState) |
| 67 { | 67 { |
| 68 return node.querySelector(selectors, exceptionState); | 68 return node.querySelector(selectors, exceptionState); |
| 69 } | 69 } |
| 70 | 70 |
| 71 static PassRefPtrWillBeRawPtr<StaticElementList> querySelectorAll(ContainerN
ode& node, const AtomicString& selectors, ExceptionState& exceptionState) | 71 static RawPtr<StaticElementList> querySelectorAll(ContainerNode& node, const
AtomicString& selectors, ExceptionState& exceptionState) |
| 72 { | 72 { |
| 73 return node.querySelectorAll(selectors, exceptionState); | 73 return node.querySelectorAll(selectors, exceptionState); |
| 74 } | 74 } |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace blink | 77 } // namespace blink |
| 78 | 78 |
| 79 #endif // ParentNode_h | 79 #endif // ParentNode_h |
| OLD | NEW |