mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
This code comes from: https://hg.mozilla.org/mozilla-central/rev/2418cfba72c33c5623f6fb4c243c5203819c8240 I audited other callers of write_str, they seem ok. Differential Revision: https://phabricator.services.mozilla.com/D54601
39 lines
1.4 KiB
Rust
39 lines
1.4 KiB
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/. */
|
|
|
|
//! The `@namespace` at-rule.
|
|
|
|
use crate::shared_lock::{SharedRwLockReadGuard, ToCssWithGuard};
|
|
use crate::str::CssStringWriter;
|
|
use crate::{Namespace, Prefix};
|
|
use cssparser::{self, SourceLocation};
|
|
use std::fmt::{self, Write};
|
|
use style_traits::{CssWriter, ToCss};
|
|
|
|
/// A `@namespace` rule.
|
|
#[derive(Clone, Debug, PartialEq, ToShmem)]
|
|
#[allow(missing_docs)]
|
|
pub struct NamespaceRule {
|
|
/// The namespace prefix, and `None` if it's the default Namespace
|
|
pub prefix: Option<Prefix>,
|
|
/// The actual namespace url.
|
|
pub url: Namespace,
|
|
/// The source location this rule was found at.
|
|
pub source_location: SourceLocation,
|
|
}
|
|
|
|
impl ToCssWithGuard for NamespaceRule {
|
|
// https://drafts.csswg.org/cssom/#serialize-a-css-rule CSSNamespaceRule
|
|
fn to_css(&self, _guard: &SharedRwLockReadGuard, dest: &mut CssStringWriter) -> fmt::Result {
|
|
dest.write_str("@namespace ")?;
|
|
if let Some(ref prefix) = self.prefix {
|
|
let prefix = prefix.to_string();
|
|
cssparser::serialize_identifier(&prefix, dest)?;
|
|
dest.write_str(" ")?;
|
|
}
|
|
dest.write_str("url(")?;
|
|
self.url.to_string().to_css(&mut CssWriter::new(dest))?;
|
|
dest.write_str(");")
|
|
}
|
|
}
|