author | Emilio Cobos Álvarez <emilio@crisal.io> |
Sat, 20 May 2017 12:59:33 +0200 | |
changeset 359852 | c91c70a13c4a71f039a56fdd777711e5fbb5be68 |
parent 359851 | 42497ab182848211a05f9087d21852620df85134 |
child 359853 | 367944041b558ffe29edf64e8c83879a348de0ca |
push id | 31859 |
push user | ihsiao@mozilla.com |
push date | Mon, 22 May 2017 03:28:26 +0000 |
treeherder | mozilla-central@367944041b55 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | birtles |
bugs | 1366474 |
milestone | 55.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/dom/base/Element.h +++ b/dom/base/Element.h @@ -324,25 +324,25 @@ public: virtual nsresult SetInlineStyleDeclaration(DeclarationBlock* aDeclaration, const nsAString* aSerialized, bool aNotify); /** * Get the SMIL override style declaration for this element. If the * rule hasn't been created, this method simply returns null. */ - virtual DeclarationBlock* GetSMILOverrideStyleDeclaration(); + DeclarationBlock* GetSMILOverrideStyleDeclaration(); /** * Set the SMIL override style declaration for this element. If * aNotify is true, this method will notify the document's pres * context, so that the style changes will be noticed. */ - virtual nsresult SetSMILOverrideStyleDeclaration( - DeclarationBlock* aDeclaration, bool aNotify); + nsresult SetSMILOverrideStyleDeclaration(DeclarationBlock* aDeclaration, + bool aNotify); /** * Returns a new nsISMILAttr that allows the caller to animate the given * attribute on this element. */ virtual UniquePtr<nsISMILAttr> GetAnimatedAttr(int32_t aNamespaceID, nsIAtom* aName) {