| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 0dc02f2d485cc725282e99fcffc4e9f45b32b6c2..b938aea9ecfed02afb94123fe5346707f9146a8f 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -14261,7 +14261,6 @@ class InputElement extends _Element_Merged implements
|
| TelephoneInputElement,
|
| EmailInputElement,
|
| PasswordInputElement,
|
| - DateTimeInputElement,
|
| DateInputElement,
|
| MonthInputElement,
|
| WeekInputElement,
|
| @@ -15019,32 +15018,6 @@ abstract class RangeInputElementBase implements InputElementBase {
|
| }
|
|
|
| /**
|
| - * A date and time (year, month, day, hour, minute, second, fraction of a
|
| - * second) with the time zone set to UTC.
|
| - *
|
| - * Use [supported] to check if this is supported on the current platform.
|
| - */
|
| -@SupportedBrowser(SupportedBrowser.CHROME, '25')
|
| -@Experimental
|
| -abstract class DateTimeInputElement implements RangeInputElementBase {
|
| - factory DateTimeInputElement() => new InputElement(type: 'datetime');
|
| -
|
| - @DomName('HTMLInputElement.valueAsDate')
|
| - DateTime valueAsDate;
|
| -
|
| - @DomName('HTMLInputElement.readOnly')
|
| - bool readOnly;
|
| -
|
| - @DomName('HTMLInputElement.required')
|
| - bool required;
|
| -
|
| - /// Returns true if this input type is supported on the current platform.
|
| - static bool get supported {
|
| - return (new InputElement(type: 'datetime')).type == 'datetime';
|
| - }
|
| -}
|
| -
|
| -/**
|
| * A date (year, month, day) with no time zone.
|
| *
|
| * Use [supported] to check if this is supported on the current platform.
|
|
|