2026-03-11 22:59:52 -04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
|
/* 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/. */
|
|
|
|
|
|
2026-03-13 08:58:18 -04:00
|
|
|
#ifndef CSSNestingFlattener_h
|
|
|
|
|
#define CSSNestingFlattener_h
|
2026-03-11 22:59:52 -04:00
|
|
|
|
|
|
|
|
class nsAString;
|
|
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
namespace css {
|
|
|
|
|
|
2026-03-13 08:58:18 -04:00
|
|
|
bool FlattenBasicCSSNesting(const nsAString& aInput, nsAString& aOutput);
|
2026-03-11 22:59:52 -04:00
|
|
|
|
|
|
|
|
} // namespace css
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
2026-03-13 08:58:18 -04:00
|
|
|
#endif // CSSNestingFlattener_h
|