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"
|
2013-10-03 00:09:18 +04:00
|
|
|
#include "nsIDocument.h"
|
2017-02-10 05:42:29 +03:00
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsIPresShellInlines.h"
|
2013-10-03 00:09:18 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
inline void
|
2014-06-19 06:09:35 +04:00
|
|
|
Element::RegisterActivityObserver()
|
2013-10-03 00:09:18 +04:00
|
|
|
{
|
2014-06-19 06:09:35 +04:00
|
|
|
OwnerDoc()->RegisterActivityObserver(this);
|
2013-10-03 00:09:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void
|
2014-06-19 06:09:35 +04:00
|
|
|
Element::UnregisterActivityObserver()
|
2013-10-03 00:09:18 +04:00
|
|
|
{
|
2014-06-19 06:09:35 +04:00
|
|
|
OwnerDoc()->UnregisterActivityObserver(this);
|
2013-10-03 00:09:18 +04:00
|
|
|
}
|
|
|
|
|
2017-07-19 04:04:34 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2016-11-02 09:11:24 +03:00
|
|
|
inline Element*
|
2017-07-19 04:04:34 +03:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-12-01 09:55:09 +03:00
|
|
|
inline Element*
|
2017-07-19 04:04:34 +03:00
|
|
|
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
|