Skip to content

Instantly share code, notes, and snippets.

@hewhocutsdown
Created October 10, 2013 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hewhocutsdown/6925095 to your computer and use it in GitHub Desktop.
Save hewhocutsdown/6925095 to your computer and use it in GitHub Desktop.
Dart SDK bug reproduction code
import 'dart:html';
void main() {
TableElement table = new TableElement();
TableSectionElement tableBody = table.createTBody();
TableRowElement row = tableBody.addRow();
TableCellElement cell = row.addCell();
cell.appendText("123");
document.body.append(table);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment