mirror of
https://github.com/servo/servo.git
synced 2025-07-20 05:43:41 +01:00
The setup is quite different to Servo-land, so add a comment about the different setup. Also, check viewport rules when flushing stylesheets. I believe that the previous behavior is plain wrong, though I haven't taken the time to come up with a test case. In any case, it doesn't hurt any of both back-ends. MozReview-Commit-ID: 46gtTkesOsr Signed-off-by: Emilio Cobos Álvarez <emilio@crisal.io>
16 lines
448 B
Rust
16 lines
448 B
Rust
/* 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/. */
|
|
|
|
//! Gecko-specific style-system bits.
|
|
|
|
pub mod conversions;
|
|
pub mod data;
|
|
pub mod media_queries;
|
|
pub mod restyle_damage;
|
|
pub mod selector_parser;
|
|
pub mod snapshot;
|
|
pub mod snapshot_helpers;
|
|
pub mod traversal;
|
|
pub mod values;
|
|
pub mod wrapper;
|