| OLD | NEW |
| 1 library layout; | 1 library layout; |
| 2 | 2 |
| 3 import 'node.dart'; | 3 import 'node.dart'; |
| 4 import 'dart:sky' as sky; | 4 import 'dart:sky' as sky; |
| 5 import 'dart:collection'; | 5 import 'dart:collection'; |
| 6 | 6 |
| 7 // UTILS | 7 // UTILS |
| 8 | 8 |
| 9 // Bridge to legacy CSS-like style specification | 9 // Bridge to legacy CSS-like style specification |
| 10 // Eventually we'll replace this with something else | 10 // Eventually we'll replace this with something else |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 print(prefix + node.toString() + _attributes(node)); | 488 print(prefix + node.toString() + _attributes(node)); |
| 489 var children = node.getChildNodes(); | 489 var children = node.getChildNodes(); |
| 490 prefix = prefix + ' '; | 490 prefix = prefix + ' '; |
| 491 for (var child in children) | 491 for (var child in children) |
| 492 _serialiseDOM(child, prefix); | 492 _serialiseDOM(child, prefix); |
| 493 } | 493 } |
| 494 | 494 |
| 495 void dumpState() { | 495 void dumpState() { |
| 496 _serialiseDOM(sky.document); | 496 _serialiseDOM(sky.document); |
| 497 } | 497 } |
| OLD | NEW |