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 {

View file

@ -7,8 +7,4 @@
[Pref="dom.worklet.enabled", Exposed=(Worklet)]
interface CSSStyleValue {
stringifier;
// static CSSStyleValue? parse(DOMString property, DOMString cssText);
// static sequence<CSSStyleValue>? parseAll(DOMString property, DOMString cssText);
// This is a deprecated property, it's not in the spec any more but is used in houdini-samples
readonly attribute DOMString cssText;
};