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

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

Issue 10590003: Roll IDL to multivm@615 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 months 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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 18 matching lines...) Expand all
29 */ 29 */
30 30
31 module html { 31 module html {
32 32
33 interface HTMLKeygenElement : HTMLElement { 33 interface HTMLKeygenElement : HTMLElement {
34 attribute [Reflect] boolean autofocus; 34 attribute [Reflect] boolean autofocus;
35 attribute [Reflect] DOMString challenge; 35 attribute [Reflect] DOMString challenge;
36 attribute [Reflect] boolean disabled; 36 attribute [Reflect] boolean disabled;
37 readonly attribute HTMLFormElement form; 37 readonly attribute HTMLFormElement form;
38 attribute [Reflect] DOMString keytype; 38 attribute [Reflect] DOMString keytype;
39 attribute DOMString name; 39 attribute [Reflect] DOMString name;
40 40
41 readonly attribute DOMString type; 41 readonly attribute DOMString type;
42 42
43 readonly attribute boolean willValidate; 43 readonly attribute boolean willValidate;
44 readonly attribute ValidityState validity; 44 readonly attribute ValidityState validity;
45 readonly attribute DOMString validationMessage; 45 readonly attribute DOMString validationMessage;
46 boolean checkValidity(); 46 boolean checkValidity();
47 void setCustomValidity(in [TreatNullAs=NullString, TreatUndefinedAs=Null String] DOMString error); 47 void setCustomValidity(in [TreatNullAs=NullString, TreatUndefinedAs=Null String] DOMString error);
48 48
49 readonly attribute NodeList labels; 49 readonly attribute NodeList labels;
50 }; 50 };
51 51
52 } 52 }
OLDNEW
« no previous file with comments | « third_party/WebCore/html/HTMLButtonElement.idl ('k') | third_party/WebCore/html/HTMLSelectElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698