| OLD | NEW |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
| 2 <link rel="import" href="class_ref.html"> | |
| 3 | 2 |
| 4 <polymer-element name="class-tree"> | 3 <polymer-element name="class-tree"> |
| 5 <template> | 4 <template> |
| 6 <link rel="stylesheet" href="css/shared.css"> | 5 <link rel="stylesheet" href="css/shared.css"> |
| 7 <style> | 6 <style> |
| 8 .table { | 7 .table { |
| 9 border-spacing: 0px; | 8 border-spacing: 0px; |
| 10 width: 100%; | 9 width: 100%; |
| 11 margin-bottom: 20px | 10 margin-bottom: 20px |
| 12 vertical-align: middle; | 11 vertical-align: middle; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 34 <div class="content-centered"> | 33 <div class="content-centered"> |
| 35 <h1>Class Hierarchy</h1> | 34 <h1>Class Hierarchy</h1> |
| 36 <table id="tableTree" class="table"> | 35 <table id="tableTree" class="table"> |
| 37 <tbody id="tableTreeBody"></tbody> | 36 <tbody id="tableTreeBody"></tbody> |
| 38 </table> | 37 </table> |
| 39 </div> | 38 </div> |
| 40 </template> | 39 </template> |
| 41 </polymer-element> | 40 </polymer-element> |
| 42 | 41 |
| 43 <script type="application/dart" src="class_tree.dart"></script> | 42 <script type="application/dart" src="class_tree.dart"></script> |
| OLD | NEW |