Files
sousa-gecko/layout/style/DocumentMatchingFunction.h
T
Alexandru Marc f1fc41731b Revert "Bug 1924567 Part 2 - Add wpt reftests for color scheme inheritance in nested plaintext documents. r=emilio,firefox-style-system-reviewers" for causing reftest failures @ 1551040.html
This reverts commit 51ac0ce5a6.

Revert "Bug 1924567 - Remove unobservable-document constraints from plaintext layout styles. r=firefox-style-system-reviewers,emilio"

This reverts commit 6f07be8781.
2026-07-10 17:49:18 +00:00

29 lines
676 B
C++

/* 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_css_DocumentMatchingFunction_h
#define mozilla_css_DocumentMatchingFunction_h
namespace mozilla {
namespace css {
/**
* Enum defining the type of matching function for a @-moz-document rule
* condition.
*/
enum class DocumentMatchingFunction {
URL = 0,
URLPrefix,
Domain,
RegExp,
MediaDocument,
PlainTextDocument,
UnobservableDocument,
};
} // namespace css
} // namespace mozilla
#endif // mozilla_css_DocumentMatchingFunction_h