mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-23 09:41:33 +00:00
Testing web-sys for input, heading and title elements. (#596)
This commit is contained in:
committed by
Alex Crichton
parent
05f3eec76d
commit
26a3e57536
@ -198,15 +198,18 @@ interface MozEditableElement {
|
||||
[Pure, ChromeOnly]
|
||||
readonly attribute nsIEditor? editor;
|
||||
|
||||
/*Non standard
|
||||
// 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.
|
||||
[Func="IsChromeOrXBL", NeedsSubjectPrincipal]
|
||||
void setUserInput(DOMString input);
|
||||
*/
|
||||
};
|
||||
|
||||
HTMLInputElement implements MozEditableElement;
|
||||
|
||||
/*Non standard
|
||||
partial interface HTMLInputElement {
|
||||
[Pref="dom.input.dirpicker", SetterThrows]
|
||||
attribute boolean allowdirs;
|
||||
@ -223,6 +226,7 @@ partial interface HTMLInputElement {
|
||||
[Throws, Pref="dom.input.dirpicker"]
|
||||
void chooseDirectory();
|
||||
};
|
||||
*/
|
||||
|
||||
HTMLInputElement implements MozImageLoadingContent;
|
||||
|
||||
@ -261,6 +265,7 @@ partial interface HTMLInputElement {
|
||||
BinaryName="getMaximumAsDouble"]
|
||||
double getMaximum();
|
||||
|
||||
/*Non standard
|
||||
[Pref="dom.forms.datetime", Func="IsChromeOrXBL"]
|
||||
void openDateTimePicker(optional DateTimeValue initialValue);
|
||||
|
||||
@ -283,6 +288,7 @@ partial interface HTMLInputElement {
|
||||
[Pref="dom.forms.datetime", Func="IsChromeOrXBL",
|
||||
BinaryName="getStepBaseAsDouble"]
|
||||
double getStepBase();
|
||||
*/
|
||||
};
|
||||
|
||||
partial interface HTMLInputElement {
|
||||
|
Reference in New Issue
Block a user