| OLD | NEW |
| 1 <!DOCTYPE html><html><head> | 1 <!DOCTYPE html><html><head> |
| 2 | 2 |
| 3 | 3 |
| 4 <title>Dart VM Observatory</title> | 4 <title>Dart VM Observatory</title> |
| 5 <meta charset="utf-8"> | 5 <meta charset="utf-8"> |
| 6 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c
ss"> | 6 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c
ss"> |
| 7 <script type="text/javascript" src="https://www.google.com/jsapi"></script> | 7 <script type="text/javascript" src="https://www.google.com/jsapi"></script> |
| 8 | 8 |
| 9 | 9 |
| 10 <script src="index_devtools.html_bootstrap.dart.js"></script> | 10 <script src="index_devtools.html_bootstrap.dart.js"></script> |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 vertical-align: top; | 313 vertical-align: top; |
| 314 padding: 0 0 0 1em; | 314 padding: 0 0 0 1em; |
| 315 } | 315 } |
| 316 </style> | 316 </style> |
| 317 <div> | 317 <div> |
| 318 <template if="{{ isUnexpectedRef(ref['type']) }}"> | 318 <template if="{{ isUnexpectedRef(ref['type']) }}"> |
| 319 unexpected reference type <{{ ref['type'] }}> | 319 unexpected reference type <{{ ref['type'] }}> |
| 320 </template> | 320 </template> |
| 321 | 321 |
| 322 <template if="{{ isNullRef(ref['type']) }}"> | 322 <template if="{{ isNullRef(ref['type']) }}"> |
| 323 {{ name }} | 323 <div title="{{ hoverText }}">{{ name }}</div> |
| 324 </template> | 324 </template> |
| 325 | 325 |
| 326 <template if="{{ (isStringRef(ref['type']) || | 326 <template if="{{ (isStringRef(ref['type']) || |
| 327 isBoolRef(ref['type']) || | 327 isBoolRef(ref['type']) || |
| 328 isIntRef(ref['type'])) }}"> | 328 isIntRef(ref['type'])) }}"> |
| 329 <a href="{{ url }}">{{ name }}</a> | 329 <a href="{{ url }}">{{ name }}</a> |
| 330 </template> | 330 </template> |
| 331 | 331 |
| 332 <template if="{{ isClosureRef(ref['type']) }}"> | 332 <template if="{{ isClosureRef(ref['type']) }}"> |
| 333 <a href="{{ url }}"> | 333 <a href="{{ url }}"> |
| (...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1182 <template> | 1182 <template> |
| 1183 <response-viewer app="{{ app }}"></response-viewer> | 1183 <response-viewer app="{{ app }}"></response-viewer> |
| 1184 </template> | 1184 </template> |
| 1185 | 1185 |
| 1186 </polymer-element> | 1186 </polymer-element> |
| 1187 | 1187 |
| 1188 | 1188 |
| 1189 <observatory-application devtools="true"></observatory-application> | 1189 <observatory-application devtools="true"></observatory-application> |
| 1190 | 1190 |
| 1191 </body></html> | 1191 </body></html> |
| OLD | NEW |