<!-- Please describe your changes on the following line: --> Added MediaList interface and implemented `mediaText`, `length` and `index` attributes. r? @Manishearth --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors <!-- Either: --> - [x] There are tests for these changes <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> Source-Repo: https://github.com/servo/servo Source-Revision: 106a538e7e2898902093a77307f004ab79a270d8
70 lines
2.4 KiB
Rust
70 lines
2.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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
use dom::bindings::codegen::Bindings::CSSMediaRuleBinding;
|
|
use dom::bindings::codegen::Bindings::CSSMediaRuleBinding::CSSMediaRuleMethods;
|
|
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
|
use dom::bindings::reflector::{Reflectable, reflect_dom_object};
|
|
use dom::bindings::str::DOMString;
|
|
use dom::cssgroupingrule::CSSGroupingRule;
|
|
use dom::cssrule::SpecificCSSRule;
|
|
use dom::cssstylesheet::CSSStyleSheet;
|
|
use dom::medialist::MediaList;
|
|
use dom::window::Window;
|
|
use parking_lot::RwLock;
|
|
use std::sync::Arc;
|
|
use style::stylesheets::MediaRule;
|
|
use style_traits::ToCss;
|
|
|
|
#[dom_struct]
|
|
pub struct CSSMediaRule {
|
|
cssrule: CSSGroupingRule,
|
|
#[ignore_heap_size_of = "Arc"]
|
|
mediarule: Arc<RwLock<MediaRule>>,
|
|
medialist: MutNullableHeap<JS<MediaList>>,
|
|
}
|
|
|
|
impl CSSMediaRule {
|
|
fn new_inherited(parent_stylesheet: &CSSStyleSheet, mediarule: Arc<RwLock<MediaRule>>)
|
|
-> CSSMediaRule {
|
|
let list = mediarule.read().rules.clone();
|
|
CSSMediaRule {
|
|
cssrule: CSSGroupingRule::new_inherited(parent_stylesheet, list),
|
|
mediarule: mediarule,
|
|
medialist: MutNullableHeap::new(None),
|
|
}
|
|
}
|
|
|
|
#[allow(unrooted_must_root)]
|
|
pub fn new(window: &Window, parent_stylesheet: &CSSStyleSheet,
|
|
mediarule: Arc<RwLock<MediaRule>>) -> Root<CSSMediaRule> {
|
|
reflect_dom_object(box CSSMediaRule::new_inherited(parent_stylesheet, mediarule),
|
|
window,
|
|
CSSMediaRuleBinding::Wrap)
|
|
}
|
|
|
|
fn medialist(&self) -> Root<MediaList> {
|
|
self.medialist.or_init(|| MediaList::new(self.global().as_window(),
|
|
self.mediarule.read().media_queries.clone()))
|
|
}
|
|
}
|
|
|
|
impl SpecificCSSRule for CSSMediaRule {
|
|
fn ty(&self) -> u16 {
|
|
use dom::bindings::codegen::Bindings::CSSRuleBinding::CSSRuleConstants;
|
|
CSSRuleConstants::MEDIA_RULE
|
|
}
|
|
|
|
fn get_css(&self) -> DOMString {
|
|
self.mediarule.read().to_css_string().into()
|
|
}
|
|
}
|
|
|
|
impl CSSMediaRuleMethods for CSSMediaRule {
|
|
// https://drafts.csswg.org/cssom/#dom-cssgroupingrule-media
|
|
fn Media(&self) -> Root<MediaList> {
|
|
self.medialist()
|
|
}
|
|
}
|