Files
sdk/lib/html/doc/interface/InputElement.dartdoc
T
sra@google.com 6f516ae928 Add dummy dart:html library for documentation.
dartdoc will be added in the fake dart:html library in lib/html/doc
and merged into the real dart:html library during dart:html build.

We will be adding a tool to that can be run as part of the dart:html build to
merge in the documentation.  The tool will also be able to run stand-alone to
update the documentation post-build.  This will allow documentation work to
continue independently of building.

Review URL: https://chromiumcodereview.appspot.com//10544064

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@8415 260f80e4-7a28-3924-810f-c04153c831b5
2012-06-08 02:07:50 +00:00

183 lines
4.2 KiB
Plaintext

// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING:
// This file contains documentation that is merged into the real source.
// Do not make code changes here.
/// @domName HTMLInputElement
interface InputElement extends Element default _Elements {
InputElement([String type]);
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
InputElementEvents get on();
/** @domName HTMLInputElement.accept */
String accept;
/** @domName HTMLInputElement.align */
String align;
/** @domName HTMLInputElement.alt */
String alt;
/** @domName HTMLInputElement.autocomplete */
String autocomplete;
/** @domName HTMLInputElement.autofocus */
bool autofocus;
/** @domName HTMLInputElement.checked */
bool checked;
/** @domName HTMLInputElement.defaultChecked */
bool defaultChecked;
/** @domName HTMLInputElement.defaultValue */
String defaultValue;
/** @domName HTMLInputElement.disabled */
bool disabled;
/** @domName HTMLInputElement.files */
FileList files;
/** @domName HTMLInputElement.form */
final FormElement form;
/** @domName HTMLInputElement.formAction */
String formAction;
/** @domName HTMLInputElement.formEnctype */
String formEnctype;
/** @domName HTMLInputElement.formMethod */
String formMethod;
/** @domName HTMLInputElement.formNoValidate */
bool formNoValidate;
/** @domName HTMLInputElement.formTarget */
String formTarget;
/** @domName HTMLInputElement.height */
int height;
/** @domName HTMLInputElement.incremental */
bool incremental;
/** @domName HTMLInputElement.indeterminate */
bool indeterminate;
/** @domName HTMLInputElement.labels */
final NodeList labels;
/** @domName HTMLInputElement.max */
String max;
/** @domName HTMLInputElement.maxLength */
int maxLength;
/** @domName HTMLInputElement.min */
String min;
/** @domName HTMLInputElement.multiple */
bool multiple;
/** @domName HTMLInputElement.name */
String name;
/** @domName HTMLInputElement.pattern */
String pattern;
/** @domName HTMLInputElement.placeholder */
String placeholder;
/** @domName HTMLInputElement.readOnly */
bool readOnly;
/** @domName HTMLInputElement.required */
bool required;
/** @domName HTMLInputElement.selectionDirection */
String selectionDirection;
/** @domName HTMLInputElement.selectionEnd */
int selectionEnd;
/** @domName HTMLInputElement.selectionStart */
int selectionStart;
/** @domName HTMLInputElement.size */
int size;
/** @domName HTMLInputElement.src */
String src;
/** @domName HTMLInputElement.step */
String step;
/** @domName HTMLInputElement.type */
String type;
/** @domName HTMLInputElement.useMap */
String useMap;
/** @domName HTMLInputElement.validationMessage */
final String validationMessage;
/** @domName HTMLInputElement.validity */
final ValidityState validity;
/** @domName HTMLInputElement.value */
String value;
/** @domName HTMLInputElement.valueAsDate */
Date valueAsDate;
/** @domName HTMLInputElement.valueAsNumber */
num valueAsNumber;
/** @domName HTMLInputElement.webkitGrammar */
bool webkitGrammar;
/** @domName HTMLInputElement.webkitSpeech */
bool webkitSpeech;
/** @domName HTMLInputElement.webkitdirectory */
bool webkitdirectory;
/** @domName HTMLInputElement.width */
int width;
/** @domName HTMLInputElement.willValidate */
final bool willValidate;
/** @domName HTMLInputElement.checkValidity */
bool checkValidity();
/** @domName HTMLInputElement.select */
void select();
/** @domName HTMLInputElement.setCustomValidity */
void setCustomValidity(String error);
/** @domName HTMLInputElement.setSelectionRange */
void setSelectionRange(int start, int end, [String direction]);
/** @domName HTMLInputElement.stepDown */
void stepDown([int n]);
/** @domName HTMLInputElement.stepUp */
void stepUp([int n]);
}
interface InputElementEvents extends ElementEvents {
EventListenerList get speechChange();
}