Index: core/html/HTMLLegendElement.idl |
diff --git a/core/html/HTMLLegendElement.idl b/core/html/HTMLLegendElement.idl |
index d51070699932c103936c8053ae063edda4fdc942..452bcfea8cd0b8f4c47d17bc9fd2679494e5f552 100644 |
--- a/core/html/HTMLLegendElement.idl |
+++ b/core/html/HTMLLegendElement.idl |
@@ -18,7 +18,12 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
+// https://html.spec.whatwg.org/#the-legend-element |
+ |
interface HTMLLegendElement : HTMLElement { |
- readonly attribute HTMLFormElement form; |
+ readonly attribute HTMLFormElement? form; |
+ |
+ // obsolete members |
+ // https://html.spec.whatwg.org/#HTMLLegendElement-partial |
[Reflect] attribute DOMString align; |
}; |