blob: 2f81cffb0091520b4903374ca11b7e0d2dbd5d0c [file] [log] [blame]
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +01001/*
2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#ifndef HTMLShadowElement_h
32#define HTMLShadowElement_h
33
Torne (Richard Coles)e5249552013-05-15 11:35:13 +010034#include "core/dom/shadow/InsertionPoint.h"
Ben Murdoche69819b2013-07-17 14:56:49 +010035#include "wtf/Forward.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010036
37namespace WebCore {
38
39class HTMLShadowElement FINAL : public InsertionPoint {
40public:
41 static PassRefPtr<HTMLShadowElement> create(const QualifiedName&, Document*);
42
43 virtual ~HTMLShadowElement();
44
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010045 ShadowRoot* olderShadowRoot();
Ben Murdoch1fad5ca2013-08-07 11:05:11 +010046 bool shouldSelect() const;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010047
48private:
49 HTMLShadowElement(const QualifiedName&, Document*);
Ben Murdoch1fad5ca2013-08-07 11:05:11 +010050 virtual InsertionNotificationRequest insertedInto(ContainerNode* insertionPoint) OVERRIDE;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010051};
52
53inline bool isHTMLShadowElement(const Node* node)
54{
55 ASSERT(node);
56 return node->hasTagName(HTMLNames::shadowTag);
57}
58
59inline HTMLShadowElement* toHTMLShadowElement(Node* node)
60{
61 ASSERT_WITH_SECURITY_IMPLICATION(!node || isHTMLShadowElement(node));
62 return static_cast<HTMLShadowElement*>(node);
63}
64
65inline const HTMLShadowElement* toHTMLShadowElement(const Node* node)
66{
67 ASSERT_WITH_SECURITY_IMPLICATION(!node || isHTMLShadowElement(node));
68 return static_cast<const HTMLShadowElement*>(node);
69}
70} // namespace WebCore
71
72#endif // HTMLShadowElement_h