| Index: Source/core/html/HTMLOptionElement.idl
|
| diff --git a/Source/core/html/HTMLOptionElement.idl b/Source/core/html/HTMLOptionElement.idl
|
| index 1c800da12b7091b8ed28e8dae84ae564ab438126..bcbeed389d434e96643d011d113b2dfc204b556d 100644
|
| --- a/Source/core/html/HTMLOptionElement.idl
|
| +++ b/Source/core/html/HTMLOptionElement.idl
|
| @@ -20,12 +20,11 @@
|
|
|
| // https://html.spec.whatwg.org/#the-option-element
|
|
|
| -// TODO(philipj): The constructor arguments default values are not per spec.
|
| [
|
| NamedConstructor=Option(optional DOMString data = null,
|
| optional DOMString value = null,
|
| - [Default=Undefined] optional boolean defaultSelected,
|
| - [Default=Undefined] optional boolean selected),
|
| + optional boolean defaultSelected = false,
|
| + optional boolean selected = false),
|
| ConstructorCallWith=Document,
|
| RaisesException=Constructor
|
| ] interface HTMLOptionElement : HTMLElement {
|
|
|