mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-27 21:38:33 +00:00
91488e2772
- Issue #2862 - Initial attempt at a css lowering (ce4b9975) - Issue #2862 - add initial nested css test file (fc09c7cb) - Issue #2862 - Modify the css lowerer so that the lowering pass now recognizes bare type-selector nested rules and combinator-led cases (34f98376) - Issue #2862 - Fix a few nested selectors (d37e667f) - Issue #2862 - Split the css lowering functionality out to a separate file for easier maintenance (d9b66581) - Issue #2862 - more tests files for nested css (3f299e8f) - Issue #2862 - handle more edge cases in css lowering (6d9547c6) - Issue #2862 - Change code references from CSS lowering to CSS flattening (a6356fff) - Issue #2862 - Change tests from lowering to flattening (ac4c7bca) - Issue #2862 - Remove unused vars in CSS flattener (72cb5998) - Issue #2862 - css nesting pref true by default (ea86d156)
20 lines
552 B
C++
20 lines
552 B
C++
/* -*- 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/. */
|
|
|
|
#ifndef CSSNestingFlattener_h
|
|
#define CSSNestingFlattener_h
|
|
|
|
class nsAString;
|
|
|
|
namespace mozilla {
|
|
namespace css {
|
|
|
|
bool FlattenBasicCSSNesting(const nsAString& aInput, nsAString& aOutput);
|
|
|
|
} // namespace css
|
|
} // namespace mozilla
|
|
|
|
#endif // CSSNestingFlattener_h
|