Remove cssText from CSSStyleValue

Removed from associated .rs and .webidl
This commit is contained in:
Stefan VanBuren 2017-10-11 16:21:29 -04:00
parent 882b22b606
commit f92dbdbdf3
2 changed files with 0 additions and 12 deletions

View file

@ -38,14 +38,6 @@ impl CSSStyleValueMethods for CSSStyleValue {
fn Stringifier(&self) -> DOMString {
DOMString::from(&*self.value)
}
/// This attribute is no longer part of the `CSSStyleValue` interface,
/// but is still used in some examples.
/// https://github.com/GoogleChrome/houdini-samples/issues/16
// check-tidy: no specs after this line
fn CssText(&self) -> DOMString {
self.Stringifier()
}
}
impl CSSStyleValue {