Bug 1302513 Part 2: Remove declaration of getAuthoredPropertyValue from webidl. draft
authorBrad Werth <bwerth@mozilla.com>
Fri, 21 Jul 2017 14:14:19 -0700
changeset 613456 460c07dcbb0c14ec495b9e3b56499036724747f3
parent 613455 8187664d902c61587f58e87df80647e17ccb22b2
child 613457 255750ab3706d8db3791470c4714385e617f0b60
child 613459 59836a00adb605fd6f83100af2c1f8e30e05140a
push id69806
push userbwerth@mozilla.com
push dateFri, 21 Jul 2017 23:46:28 +0000
bugs1302513
milestone56.0a1
Bug 1302513 Part 2: Remove declaration of getAuthoredPropertyValue from webidl. MozReview-Commit-ID: 63khMKDdIBT
dom/webidl/CSSStyleDeclaration.webidl
--- a/dom/webidl/CSSStyleDeclaration.webidl
+++ b/dom/webidl/CSSStyleDeclaration.webidl
@@ -22,14 +22,8 @@ interface CSSStyleDeclaration {
   DOMString getPropertyPriority(DOMString property);
   [CEReactions, Throws]
   void setProperty(DOMString property, [TreatNullAs=EmptyString] DOMString value, [TreatNullAs=EmptyString] optional DOMString priority = "");
   [CEReactions, Throws]
   DOMString removeProperty(DOMString property);
 
   readonly attribute CSSRule? parentRule;
 };
-
-// Mozilla extensions
-partial interface CSSStyleDeclaration {
-  [ChromeOnly,Throws]
-  DOMString getAuthoredPropertyValue(DOMString property);
-};