Bug 1456703 - Remove nsIDOMXULTextBoxElement r=enndeakin+6102

MozReview-Commit-ID: 6ZRzVq1bJjz

--HG--
extra : rebase_source : adb6e5cabbc38ed6774e905328b7f6f6095d01eb
This commit is contained in:
Brian Grinstead 2018-04-26 15:17:00 -07:00
parent 45b575d85f
commit ab2a1a0d82
6 changed files with 1 additions and 34 deletions

View File

@ -21,7 +21,6 @@
#include "nsIDOMXULCheckboxElement.h"
#include "nsIDOMXULMenuListElement.h"
#include "nsIDOMXULSelectCntrlItemEl.h"
#include "nsIDOMXULTextboxElement.h"
#include "nsIEditor.h"
#include "nsIFrame.h"
#include "nsITextControlFrame.h"

View File

@ -66,7 +66,6 @@
#include <algorithm>
#ifdef MOZ_XUL
#include "nsIDOMXULTextboxElement.h"
#include "nsIDOMXULMenuListElement.h"
#endif

View File

@ -21,7 +21,6 @@ XPIDL_SOURCES += [
'nsIDOMXULRelatedElement.idl',
'nsIDOMXULSelectCntrlEl.idl',
'nsIDOMXULSelectCntrlItemEl.idl',
'nsIDOMXULTextboxElement.idl',
]
XPIDL_MODULE = 'dom_xul'

View File

@ -4,7 +4,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nsIDOMXULSelectCntrlEl.idl"
interface nsIDOMXULTextBoxElement;
interface nsIDOMNode;
[scriptable, uuid(36c16a17-c0e9-4b35-951b-81a147314ef1)]

View File

@ -1,29 +0,0 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nsIDOMXULLabeledControlEl.idl"
interface nsIDOMHTMLInputElement;
[scriptable, uuid(7edd8215-5155-4845-a02f-dc2c08645cb9)]
interface nsIDOMXULTextBoxElement : nsIDOMXULControlElement
{
// inputField may be any type of editable field, such as an
// HTML <input type="text"> or <textarea>
readonly attribute nsIDOMNode inputField;
readonly attribute long textLength;
attribute long maxLength;
attribute long size;
attribute long selectionStart;
attribute long selectionEnd;
attribute DOMString value;
attribute DOMString type;
void select();
void setSelectionRange(in long selectionStart,
in long selectionEnd);
};

View File

@ -32,7 +32,7 @@
</xul:hbox>
</content>
<implementation implements="nsIDOMXULTextBoxElement, nsIDOMXULLabeledControlElement">
<implementation implements="nsIDOMXULLabeledControlElement">
<!-- nsIDOMXULLabeledControlElement -->
<field name="crop">""</field>
<field name="image">""</field>