diff --git a/source b/source index 877761a9424..cfff3aa002c 100644 --- a/source +++ b/source @@ -57287,14 +57287,17 @@ interface HTMLOptionElement : HTMLElement {
-

The form IDL - attribute's behavior depends on whether the option element is in a - select element or not. If the option has a select element - as its parent, or has an optgroup element as its parent and that - optgroup element has a select element as its parent, then the form IDL attribute must return the same value as the form IDL attribute on that select element. Otherwise, it - must return null.

+

The form + getter steps are:

+ +
    +
  1. Let select be this's option element nearest + ancestor select.

  2. + +
  3. If select is null, then return null.

  4. + +
  5. Return select's form owner.

  6. +