michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: interface nsIDOMElement; michael@0: michael@0: [scriptable, uuid(7B4A099F-6F6E-4565-977B-FB622ADBFF49)] michael@0: interface inIFlasher : nsISupports michael@0: { michael@0: attribute DOMString color; michael@0: attribute boolean invert; michael@0: attribute unsigned short thickness; michael@0: michael@0: void drawElementOutline(in nsIDOMElement aElement); michael@0: void repaintElement(in nsIDOMElement aElement); michael@0: void scrollElementIntoView(in nsIDOMElement aElement); michael@0: }; michael@0: