mirror of
https://github.com/servo/servo.git
synced 2025-10-12 22:40:19 +01:00
Implemented behind the new properties-and-values pref. Support for the CSSPropertyRule WebIDL interface is also added in this patch, because until it's added, any attempt to access the rule using the CSSOM would crash the browser. Depends on D178268 Differential Revision: https://phabricator.services.mozilla.com/D178270
10 lines
332 B
Rust
10 lines
332 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 https://mozilla.org/MPL/2.0/. */
|
|
|
|
//! Properties and Values
|
|
//!
|
|
//! https://drafts.css-houdini.org/css-properties-values-api-1/
|
|
|
|
pub mod rule;
|
|
pub mod syntax;
|