| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |