Index: Source/core/html/HTMLKeygenElement.idl |
diff --git a/Source/core/html/HTMLKeygenElement.idl b/Source/core/html/HTMLKeygenElement.idl |
index cffc1dca6922f6530177eb17c56f4df4647d291f..77e5371bf9987aba77a7ade55cf8f68a54709eda 100644 |
--- a/Source/core/html/HTMLKeygenElement.idl |
+++ b/Source/core/html/HTMLKeygenElement.idl |
@@ -28,11 +28,13 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// https://html.spec.whatwg.org/#htmlkeygenelement |
+ |
interface HTMLKeygenElement : HTMLElement { |
[Reflect] attribute boolean autofocus; |
[Reflect] attribute DOMString challenge; |
[Reflect] attribute boolean disabled; |
- [ImplementedAs=formOwner] readonly attribute HTMLFormElement form; |
+ [ImplementedAs=formOwner] readonly attribute HTMLFormElement? form; |
[Reflect, ReflectOnly="rsa", ReflectMissing="rsa"] attribute DOMString keytype; |
[Reflect] attribute DOMString name; |
@@ -43,6 +45,7 @@ interface HTMLKeygenElement : HTMLElement { |
readonly attribute DOMString validationMessage; |
boolean checkValidity(); |
boolean reportValidity(); |
+ // FIXME: The error argument should not be nullable. |
void setCustomValidity([TreatUndefinedAs=NullString] DOMString? error); |
readonly attribute NodeList labels; |