mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-26 15:02:46 +00:00
eb31645dcb
- Issue #2548 - Part 1 - Implement MathML DOM and pre-requisites. https://bugzilla.mozilla.org/show_bug.cgi?id=1571487 Introduce interface mixins. https://bugzilla.mozilla.org/show_bug.cgi?id=1414372 Switch XPathEvaluator to using IDL mixins and remaining users of IDL "implements" over to mixin syntax. https://bugzilla.mozilla.org/show_bug.cgi?id=1574195 Introduce GlobalEventHandlers/DocumentAndElementEventHandlers/ElementCSSInlineStyle mixin. https://bugzilla.mozilla.org/show_bug.cgi?id=1579457 Introduce DocumentAndElementEventHandlers to more closely align with the HTML spec. https://bugzilla.mozilla.org/show_bug.cgi?id=1330457 Remove the use of IsCallerChrome in FetchRequest. https://bugzilla.mozilla.org/show_bug.cgi?id=1335368 (85600c73) - Issue #2548 - Part 2 - Collection of WebIDL parsing updates in an attempt to fix partial interface mixin error. We should ensure, at build-time, that partial interfaces are defined in the same file as the interface they extend. Since our build system doesn't really support correct dep builds if they're placed in a different file. https://bugzilla.mozilla.org/show_bug.cgi?id=1333117 WebIDL: Better error message for trying to inherit from a mixin. https://bugzilla.mozilla.org/show_bug.cgi?id=1575384 Fix webidl identifier conflicts involving typedefs to produce saner exceptions. https://bugzilla.mozilla.org/show_bug.cgi?id=1531623 Disallow nullable types for WebIDL constants. https://bugzilla.mozilla.org/show_bug.cgi?id=1535647 Add support for extended attributes on types in Web IDL https://bugzilla.mozilla.org/show_bug.cgi?id=1359269 Allow LenientFloat to be only in a specific overload https://bugzilla.mozilla.org/show_bug.cgi?id=1020975 (81b4f0c3) - Issue #2548 - Part 3 - Fix some MathML issues encountered since WebIDL works. https://bugzilla.mozilla.org/show_bug.cgi?id=1316616 Also added a Fetch() change that was not in the Mozilla patch. (20354b67) - Issue #2548 - Part 4 - Fix some missed changes for ElementCSSInlineStyle. Introduce GlobalEventHandlers/DocumentAndElementEventHandlers/ElementCSSInlineStyle mixin. https://bugzilla.mozilla.org/show_bug.cgi?id=157945 (502c7047) - Issue #2548 - Part 5 - Implement the HTMLOrForeignElement mixin. https://bugzilla.mozilla.org/show_bug.cgi?id=1577660 Add 'preventScroll' option to HTMLElement's, SVGElement's and XULElement's 'focus' method. https://bugzilla.mozilla.org/show_bug.cgi?id=1374045 (3febe21f)
107 lines
3.8 KiB
Plaintext
107 lines
3.8 KiB
Plaintext
/* -*- Mode: IDL; 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/.
|
|
*
|
|
* The origin of this IDL file is
|
|
* http://www.whatwg.org/specs/web-apps/current-work/#the-textarea-element
|
|
* http://www.whatwg.org/specs/web-apps/current-work/#other-elements,-attributes-and-apis
|
|
* © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and
|
|
* Opera Software ASA. You are granted a license to use, reproduce
|
|
* and create derivative works of this document.
|
|
*/
|
|
|
|
interface nsIEditor;
|
|
interface MozControllers;
|
|
|
|
[HTMLConstructor]
|
|
interface HTMLTextAreaElement : HTMLElement {
|
|
// attribute DOMString autocomplete;
|
|
[CEReactions, SetterThrows, Pure]
|
|
attribute boolean autofocus;
|
|
[CEReactions, SetterThrows, Pure]
|
|
attribute unsigned long cols;
|
|
// attribute DOMString dirName;
|
|
[CEReactions, SetterThrows, Pure]
|
|
attribute boolean disabled;
|
|
[Pure]
|
|
readonly attribute HTMLFormElement? form;
|
|
// attribute DOMString inputMode;
|
|
[CEReactions, SetterThrows, Pure]
|
|
attribute long maxLength;
|
|
[CEReactions, SetterThrows, Pure]
|
|
attribute long minLength;
|
|
[CEReactions, SetterThrows, Pure]
|
|
attribute DOMString name;
|
|
[CEReactions, SetterThrows, Pure]
|
|
attribute DOMString placeholder;
|
|
[CEReactions, SetterThrows, Pure]
|
|
attribute boolean readOnly;
|
|
[CEReactions, SetterThrows, Pure]
|
|
attribute boolean required;
|
|
[CEReactions, SetterThrows, Pure]
|
|
attribute unsigned long rows;
|
|
[CEReactions, SetterThrows, Pure]
|
|
attribute DOMString wrap;
|
|
|
|
[Constant]
|
|
readonly attribute DOMString type;
|
|
[CEReactions, SetterThrows, Pure]
|
|
attribute DOMString defaultValue;
|
|
[CEReactions] attribute [TreatNullAs=EmptyString] DOMString value;
|
|
readonly attribute unsigned long textLength;
|
|
|
|
readonly attribute boolean willValidate;
|
|
readonly attribute ValidityState validity;
|
|
readonly attribute DOMString validationMessage;
|
|
boolean checkValidity();
|
|
boolean reportValidity();
|
|
void setCustomValidity(DOMString error);
|
|
|
|
readonly attribute NodeList labels;
|
|
|
|
void select();
|
|
[Throws]
|
|
attribute unsigned long? selectionStart;
|
|
[Throws]
|
|
attribute unsigned long? selectionEnd;
|
|
[Throws]
|
|
attribute DOMString? selectionDirection;
|
|
[Throws]
|
|
void setRangeText(DOMString replacement);
|
|
[Throws]
|
|
void setRangeText(DOMString replacement, unsigned long start,
|
|
unsigned long end, optional SelectionMode selectionMode = "preserve");
|
|
[Throws]
|
|
void setSelectionRange(unsigned long start, unsigned long end, optional DOMString direction);
|
|
};
|
|
|
|
partial interface HTMLTextAreaElement {
|
|
// Mirrored chrome-only Mozilla extensions to nsIDOMHTMLTextAreaElement.
|
|
// Please make sure to update this list of nsIDOMHTMLTextAreaElement changes.
|
|
|
|
[Throws, ChromeOnly]
|
|
readonly attribute MozControllers controllers;
|
|
};
|
|
|
|
partial interface HTMLTextAreaElement {
|
|
// Mirrored chrome-only nsIDOMNSEditableElement methods. Please make sure
|
|
// to update this list if nsIDOMNSEditableElement changes.
|
|
|
|
[ChromeOnly]
|
|
readonly attribute nsIEditor? editor;
|
|
|
|
// This is similar to set .value on nsIDOMInput/TextAreaElements, but
|
|
// handling of the value change is closer to the normal user input, so
|
|
// 'change' event for example will be dispatched when focusing out the
|
|
// element.
|
|
[ChromeOnly]
|
|
void setUserInput(DOMString input);
|
|
|
|
// Sets or clears the autofilled state of this textarea element.
|
|
// This is used by the browser's autofill system to indicate when
|
|
// a value has been automatically filled (e.g., from saved form data).
|
|
[ChromeOnly]
|
|
void setAutofilled(boolean autofilled);
|
|
};
|