/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
#![forbid(unsafe_code)]
usecrate::properties::PropertyDeclarationBlock; usecrate::shared_lock::{Locked, SharedRwLockReadGuard}; use servo_arc::Arc; use std::io::Write; use std::ptr;
/// A style source for the rule node. It is a declaration block that may come from either a style /// rule or a standalone block like animations / transitions / smil / preshints / style attr... /// /// Keeping the style rule around would provide more debugability, but also causes more /// pointer-chasing in the common code-path, which is undesired. If needed, we could keep it around /// in debug builds or something along those lines. #[derive(Clone, Debug)] pubstruct StyleSource(Arc<Locked<PropertyDeclarationBlock>>);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.