OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 part of $LIBRARYNAME; | 5 part of $LIBRARYNAME; |
6 | 6 |
7 @DocsEditable() | 7 @DocsEditable() |
8 $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { | 8 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS
{ |
9 | 9 |
10 @DomName('HTMLTableRowElement.cells') | 10 @DomName('HTMLTableRowElement.cells') |
11 List<TableCellElement> get cells => | 11 List<TableCellElement> get cells => |
12 new _WrappedList<TableCellElement>(_cells); | 12 new _WrappedList<TableCellElement>(_cells); |
13 | 13 |
14 TableCellElement addCell() { | 14 TableCellElement addCell() { |
15 return insertCell(-1); | 15 return insertCell(-1); |
16 } | 16 } |
17 | 17 |
18 TableCellElement insertCell(int index) => _insertCell(index); | 18 TableCellElement insertCell(int index) => _insertCell(index); |
19 | 19 |
20 $if DART2JS | 20 $if DART2JS |
21 DocumentFragment createFragment(String html, | 21 DocumentFragment createFragment(String html, |
22 {NodeValidator validator, NodeTreeSanitizer treeSanitizer}) { | 22 {NodeValidator validator, NodeTreeSanitizer treeSanitizer}) { |
23 if (Range.supportsCreateContextualFragment) { | 23 if (Range.supportsCreateContextualFragment) { |
24 return super.createFragment( | 24 return super.createFragment( |
25 html, validator: validator, treeSanitizer: treeSanitizer); | 25 html, validator: validator, treeSanitizer: treeSanitizer); |
26 } | 26 } |
27 // IE9 workaround which does not support innerHTML on Table elements. | 27 // IE9 workaround which does not support innerHTML on Table elements. |
28 var fragment = new DocumentFragment(); | 28 var fragment = new DocumentFragment(); |
29 var section = new TableElement().createFragment( | 29 var section = new TableElement().createFragment( |
30 html, validator: validator, treeSanitizer: treeSanitizer).nodes.single; | 30 html, validator: validator, treeSanitizer: treeSanitizer).nodes.single; |
31 var row = section.nodes.single; | 31 var row = section.nodes.single; |
32 fragment.nodes.addAll(row.nodes); | 32 fragment.nodes.addAll(row.nodes); |
33 return fragment; | 33 return fragment; |
34 } | 34 } |
35 $endif | 35 $endif |
36 | 36 |
37 $!MEMBERS} | 37 $!MEMBERS} |
OLD | NEW |