blob: a9ad0d46e88b41e421cc39d30e7a5e19386d4aec [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NonDocumentTypeChildNode_h
#define NonDocumentTypeChildNode_h
#include "core/dom/ElementTraversal.h"
#include "core/dom/Node.h"
namespace blink {
class NonDocumentTypeChildNode {
public:
static Element* previousElementSibling(Node& node) {
return ElementTraversal::PreviousSibling(node);
}
static Element* nextElementSibling(Node& node) {
return ElementTraversal::NextSibling(node);
}
};
} // namespace blink
#endif // NonDocumentTypeChildNode_h