Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: third_party/WebCore/html/HTMLInputElement.idl

Issue 11363035: Roll IDLs forward. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 [Reflect] attribute boolean required; 49 [Reflect] attribute boolean required;
50 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C 50 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
51 [ObjCImplementedAsUnsignedLong] attribute DOMString size; // DOM level 2 cha nged this to a long, but ObjC API is a string 51 [ObjCImplementedAsUnsignedLong] attribute DOMString size; // DOM level 2 cha nged this to a long, but ObjC API is a string
52 #else 52 #else
53 attribute unsigned long size setter raises(DOMException); // Changed string -> long -> unsigned long 53 attribute unsigned long size setter raises(DOMException); // Changed string -> long -> unsigned long
54 #endif 54 #endif
55 [Reflect, URL] attribute DOMString src; 55 [Reflect, URL] attribute DOMString src;
56 [Reflect] attribute DOMString step; 56 [Reflect] attribute DOMString step;
57 [TreatNullAs=NullString] attribute DOMString type; // readonly dropped as pa rt of DOM level 2 57 [TreatNullAs=NullString] attribute DOMString type; // readonly dropped as pa rt of DOM level 2
58 [TreatNullAs=NullString] attribute DOMString defaultValue; 58 [TreatNullAs=NullString] attribute DOMString defaultValue;
59 [TreatNullAs=NullString] attribute DOMString value; 59 [TreatNullAs=NullString] attribute DOMString value setter raises(DOMExceptio n);
60 #if !defined(LANGUAGE_CPP) || !LANGUAGE_CPP 60 #if !defined(LANGUAGE_CPP) || !LANGUAGE_CPP
61 attribute Date valueAsDate setter raises(DOMException); 61 attribute Date valueAsDate setter raises(DOMException);
62 #endif 62 #endif
63 attribute double valueAsNumber setter raises(DOMException); 63 attribute double valueAsNumber setter raises(DOMException);
64 64
65 void stepUp(in [Optional] long n) raises(DOMException); 65 void stepUp(in [Optional] long n) raises(DOMException);
66 void stepDown(in [Optional] long n) raises(DOMException); 66 void stepDown(in [Optional] long n) raises(DOMException);
67 67
68 attribute unsigned long width; 68 attribute unsigned long width;
69 readonly attribute boolean willValidate; 69 readonly attribute boolean willValidate;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 116
117 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C 117 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
118 // Objective-C extension: 118 // Objective-C extension:
119 readonly attribute DOMString altDisplayString; 119 readonly attribute DOMString altDisplayString;
120 readonly attribute URL absoluteImageURL; 120 readonly attribute URL absoluteImageURL;
121 #endif 121 #endif
122 122
123 // See http://www.w3.org/TR/html-media-capture/ 123 // See http://www.w3.org/TR/html-media-capture/
124 [Conditional=MEDIA_CAPTURE] attribute DOMString capture; 124 [Conditional=MEDIA_CAPTURE] attribute DOMString capture;
125 }; 125 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698