michael@0: /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 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 nsIEditor; michael@0: michael@0: /** michael@0: * This interface is implemented by elements which have inner editable content, michael@0: * such as HTML input and textarea. michael@0: * michael@0: * Please make sure to update the HTMLTextAreaElement and HTMLInputElement michael@0: * Web IDL interfaces to mirror this interface when changing it. michael@0: * michael@0: */ michael@0: michael@0: [scriptable, uuid(b33eb56c-3120-418c-892b-774b00c7dde8)] michael@0: interface nsIDOMNSEditableElement : nsISupports michael@0: { michael@0: readonly attribute nsIEditor editor; michael@0: // This is similar to set .value on nsIDOMInput/TextAreaElements, but michael@0: // handling of the value change is closer to the normal user input, so michael@0: // 'change' event for example will be dispatched when focusing out the michael@0: // element. michael@0: void setUserInput(in DOMString input); michael@0: };