2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-10-03 00:09:18 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_ElementInlines_h
|
|
|
|
#define mozilla_dom_ElementInlines_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/Element.h"
|
2017-06-14 02:38:16 +03:00
|
|
|
#include "mozilla/ServoBindingTypes.h"
|
2016-11-02 09:11:24 +03:00
|
|
|
#include "nsIContentInlines.h"
|
2019-01-02 16:05:23 +03:00
|
|
|
#include "mozilla/dom/Document.h"
|
2013-10-03 00:09:18 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-06-19 06:09:35 +04:00
|
|
|
inline void Element::RegisterActivityObserver() {
|
|
|
|
OwnerDoc()->RegisterActivityObserver(this);
|
2013-10-03 00:09:18 +04:00
|
|
|
}
|
|
|
|
|
2014-06-19 06:09:35 +04:00
|
|
|
inline void Element::UnregisterActivityObserver() {
|
|
|
|
OwnerDoc()->UnregisterActivityObserver(this);
|
2013-10-03 00:09:18 +04:00
|
|
|
}
|
|
|
|
|
2017-07-19 04:04:34 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
inline Element* nsINode::GetFlattenedTreeParentElement() const {
|
2016-11-02 09:11:24 +03:00
|
|
|
nsINode* parentNode = GetFlattenedTreeParentNode();
|
|
|
|
if
|
|
|
|
MOZ_LIKELY(parentNode && parentNode->IsElement()) {
|
|
|
|
return parentNode->AsElement();
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-07-19 04:04:34 +03:00
|
|
|
inline Element* nsINode::GetFlattenedTreeParentElementForStyle() const {
|
2016-12-01 09:55:09 +03:00
|
|
|
nsINode* parentNode = GetFlattenedTreeParentNodeForStyle();
|
|
|
|
if
|
|
|
|
MOZ_LIKELY(parentNode && parentNode->IsElement()) {
|
|
|
|
return parentNode->AsElement();
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2013-10-03 00:09:18 +04:00
|
|
|
#endif // mozilla_dom_ElementInlines_h
|