Bug 1861709 replace AudioCallbackDriver::ThreadRunning() assertions that mean to...
[gecko.git] / layout / style / nsICSSDeclaration.cpp
blob2c0f2d813a4b2d84a4a09a78126fc79fd0a035be
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /* Implementation of non-inline bits of nsICSSDeclaration. */
9 #include "nsICSSDeclaration.h"
11 #include "nsINode.h"
12 #include "mozilla/css/Rule.h"
14 using mozilla::dom::DocGroup;
16 DocGroup* nsICSSDeclaration::GetDocGroup() {
17 nsINode* parentNode = GetAssociatedNode();
18 if (!parentNode) {
19 return nullptr;
22 return parentNode->GetDocGroup();
25 bool nsICSSDeclaration::IsReadOnly() {
26 mozilla::css::Rule* rule = GetParentRule();
27 return rule && rule->IsReadOnly();