| Index: tools/dom/templates/html/impl/impl_HTMLSelectElement.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_HTMLSelectElement.darttemplate b/tools/dom/templates/html/impl/impl_HTMLSelectElement.darttemplate
|
| index c37999f31d5548f64bece7eeeb6532ac773916e3..b677b61cdfca69fbe79e008c1a922c8b41ec8437 100644
|
| --- a/tools/dom/templates/html/impl/impl_HTMLSelectElement.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_HTMLSelectElement.darttemplate
|
| @@ -10,8 +10,8 @@ $!MEMBERS
|
| // Override default options, since IE returns SelectElement itself and it
|
| // does not operate as a List.
|
| List<OptionElement> get options {
|
| - var options =
|
| - this.queryAll('option').where((e) => e is OptionElement).toList();
|
| + var options = this.querySelectorAll('option').where(
|
| + (e) => e is OptionElement).toList();
|
| return new UnmodifiableListView(options);
|
| }
|
|
|
|
|