| Index: tools/dom/templates/html/impl/impl_Element.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Element.darttemplate b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| index 35e8e2ffc9c4241e892495858b71b43fe1e7887d..8dbf0e64f9c6b072bf352d2dcd633cd3919662c5 100644
|
| --- a/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| @@ -1061,7 +1061,8 @@ class _ElementFactoryProvider {
|
| switch (tag) {
|
| case 'td':
|
| case 'th':
|
| - element = _singleNode(_singleNode(table.rows).cells);
|
| + TableRowElement row = _singleNode(table.rows);
|
| + element = _singleNode(row.cells);
|
| break;
|
| case 'tr':
|
| element = _singleNode(table.rows);
|
|
|