forked from mirrors/gecko-dev
		
	 f716af270a
			
		
	
	
		f716af270a
		
	
	
	
	
		
			
			See https://bugzilla.mozilla.org/show_bug.cgi?id=1360889 Source-Repo: https://github.com/servo/servo Source-Revision: 7b1006936a27232fb77fef5893cc141e66bb12b7 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : 85baf2471e165666e2540cbcf4fbb55587e60f39
		
			
				
	
	
		
			114 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
	
		
			3.9 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 http://mozilla.org/MPL/2.0/. */
 | |
| 
 | |
| use dom::bindings::codegen::Bindings::CSSStyleSheetBinding;
 | |
| use dom::bindings::codegen::Bindings::CSSStyleSheetBinding::CSSStyleSheetMethods;
 | |
| use dom::bindings::codegen::Bindings::WindowBinding::WindowBinding::WindowMethods;
 | |
| use dom::bindings::error::{Error, ErrorResult, Fallible};
 | |
| use dom::bindings::js::{JS, MutNullableJS, Root};
 | |
| use dom::bindings::reflector::{reflect_dom_object, DomObject};
 | |
| use dom::bindings::str::DOMString;
 | |
| use dom::cssrulelist::{CSSRuleList, RulesSource};
 | |
| use dom::element::Element;
 | |
| use dom::stylesheet::StyleSheet;
 | |
| use dom::window::Window;
 | |
| use dom_struct::dom_struct;
 | |
| use std::cell::Cell;
 | |
| use style::shared_lock::SharedRwLock;
 | |
| use style::stylearc::Arc;
 | |
| use style::stylesheets::Stylesheet as StyleStyleSheet;
 | |
| 
 | |
| #[dom_struct]
 | |
| pub struct CSSStyleSheet {
 | |
|     stylesheet: StyleSheet,
 | |
|     owner: JS<Element>,
 | |
|     rulelist: MutNullableJS<CSSRuleList>,
 | |
|     #[ignore_heap_size_of = "Arc"]
 | |
|     style_stylesheet: Arc<StyleStyleSheet>,
 | |
|     origin_clean: Cell<bool>,
 | |
| }
 | |
| 
 | |
| impl CSSStyleSheet {
 | |
|     fn new_inherited(owner: &Element,
 | |
|                      type_: DOMString,
 | |
|                      href: Option<DOMString>,
 | |
|                      title: Option<DOMString>,
 | |
|                      stylesheet: Arc<StyleStyleSheet>) -> CSSStyleSheet {
 | |
|         CSSStyleSheet {
 | |
|             stylesheet: StyleSheet::new_inherited(type_, href, title),
 | |
|             owner: JS::from_ref(owner),
 | |
|             rulelist: MutNullableJS::new(None),
 | |
|             style_stylesheet: stylesheet,
 | |
|             origin_clean: Cell::new(true),
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     #[allow(unrooted_must_root)]
 | |
|     pub fn new(window: &Window,
 | |
|                owner: &Element,
 | |
|                type_: DOMString,
 | |
|                href: Option<DOMString>,
 | |
|                title: Option<DOMString>,
 | |
|                stylesheet: Arc<StyleStyleSheet>) -> Root<CSSStyleSheet> {
 | |
|         reflect_dom_object(box CSSStyleSheet::new_inherited(owner, type_, href, title, stylesheet),
 | |
|                            window,
 | |
|                            CSSStyleSheetBinding::Wrap)
 | |
|     }
 | |
| 
 | |
|     fn rulelist(&self) -> Root<CSSRuleList> {
 | |
|         self.rulelist.or_init(|| CSSRuleList::new(self.global().as_window(),
 | |
|                                                   self,
 | |
|                                                   RulesSource::Rules(self.style_stylesheet
 | |
|                                                                          .rules.clone())))
 | |
|     }
 | |
| 
 | |
|     pub fn disabled(&self) -> bool {
 | |
|         self.style_stylesheet.disabled()
 | |
|     }
 | |
| 
 | |
|     pub fn set_disabled(&self, disabled: bool) {
 | |
|         if self.style_stylesheet.set_disabled(disabled) {
 | |
|             self.global().as_window().Document().invalidate_stylesheets();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     pub fn shared_lock(&self) -> &SharedRwLock {
 | |
|         &self.style_stylesheet.shared_lock
 | |
|     }
 | |
| 
 | |
|     pub fn style_stylesheet(&self) -> &StyleStyleSheet {
 | |
|         &self.style_stylesheet
 | |
|     }
 | |
| 
 | |
|     pub fn set_origin_clean(&self, origin_clean: bool) {
 | |
|         self.origin_clean.set(origin_clean);
 | |
|     }
 | |
| }
 | |
| 
 | |
| impl CSSStyleSheetMethods for CSSStyleSheet {
 | |
|     // https://drafts.csswg.org/cssom/#dom-cssstylesheet-cssrules
 | |
|     fn GetCssRules(&self) -> Fallible<Root<CSSRuleList>> {
 | |
|         if !self.origin_clean.get() {
 | |
|             return Err(Error::Security);
 | |
|         }
 | |
|         Ok(self.rulelist())
 | |
|     }
 | |
| 
 | |
|     // https://drafts.csswg.org/cssom/#dom-cssstylesheet-insertrule
 | |
|     fn InsertRule(&self, rule: DOMString, index: u32) -> Fallible<u32> {
 | |
|         if !self.origin_clean.get() {
 | |
|             return Err(Error::Security);
 | |
|         }
 | |
|         self.rulelist().insert_rule(&rule, index, /* nested */ false)
 | |
|     }
 | |
| 
 | |
|     // https://drafts.csswg.org/cssom/#dom-cssstylesheet-deleterule
 | |
|     fn DeleteRule(&self, index: u32) -> ErrorResult {
 | |
|         if !self.origin_clean.get() {
 | |
|             return Err(Error::Security);
 | |
|         }
 | |
|         self.rulelist().remove_rule(index)
 | |
|     }
 | |
| }
 | |
| 
 |