| OLD | NEW |
| 1 <!DOCTYPE html><html><head> | 1 <!DOCTYPE html><html><head> |
| 2 <meta charset="utf-8"> | 2 <meta charset="utf-8"> |
| 3 <title>Dart VM Observatory</title> | 3 <title>Dart VM Observatory</title> |
| 4 | 4 |
| 5 | 5 |
| 6 | 6 |
| 7 | 7 |
| 8 | 8 |
| 9 | 9 |
| 10 | 10 |
| (...skipping 2478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2489 | 2489 |
| 2490 | 2490 |
| 2491 | 2491 |
| 2492 | 2492 |
| 2493 | 2493 |
| 2494 | 2494 |
| 2495 | 2495 |
| 2496 | 2496 |
| 2497 | 2497 |
| 2498 | 2498 |
| 2499 |
| 2499 <polymer-element name="eval-box" extends="observatory-element"> | 2500 <polymer-element name="eval-box" extends="observatory-element"> |
| 2500 <template> | 2501 <template> |
| 2501 <style> | 2502 <style> |
| 2502 .textbox { | 2503 .textbox { |
| 2503 width: 80ex; | 2504 width: 80ex; |
| 2504 font: 400 16px 'Montserrat', sans-serif; | 2505 font: 400 16px 'Montserrat', sans-serif; |
| 2505 } | 2506 } |
| 2506 .bigtextbox { | 2507 .bigtextbox { |
| 2507 font: 400 16px 'Montserrat', sans-serif; | 2508 font: 400 16px 'Montserrat', sans-serif; |
| 2508 } | 2509 } |
| (...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3397 </template> | 3398 </template> |
| 3398 <template if="{{ !nameIsEmpty }}"> | 3399 <template if="{{ !nameIsEmpty }}"> |
| 3399 <a on-click="{{ goto }}" href="{{ url }}">{{ name }}</a> | 3400 <a on-click="{{ goto }}" href="{{ url }}">{{ name }}</a> |
| 3400 </template> | 3401 </template> |
| 3401 </template> | 3402 </template> |
| 3402 </polymer-element> | 3403 </polymer-element> |
| 3403 | 3404 |
| 3404 | 3405 |
| 3405 | 3406 |
| 3406 | 3407 |
| 3408 <polymer-element name="script-inset" extends="observatory-element"> |
| 3409 <template> |
| 3410 <style> |
| 3411 .sourceInset { |
| 3412 padding-left: 15%; |
| 3413 padding-right: 15%; |
| 3414 } |
| 3415 .grayBox { |
| 3416 width: 100%; |
| 3417 background-color: #f5f5f5; |
| 3418 border: 1px solid #ccc; |
| 3419 padding: 10px; |
| 3420 } |
| 3421 </style> |
| 3422 <div class="sourceInset"> |
| 3423 <content></content> |
| 3424 <div class="grayBox"> |
| 3425 <table> |
| 3426 <tbody> |
| 3427 <tr template="" repeat="{{ lineNumber in lineNumbers }}"> |
| 3428 <td style="{{ styleForHits(script.lines[lineNumber].hits) }}"><spa
n> </span></td> |
| 3429 <td style="font-family: consolas, courier, monospace;font-size: 1e
m;line-height: 1.2em;white-space: nowrap;">{{script.lines[lineNumber].line}}</td
> |
| 3430 <td> </td> |
| 3431 <td width="99%" style="font-family: consolas, courier, monospace;f
ont-size: 1em;line-height: 1.2em;white-space: pre;">{{script.lines[lineNumber].t
ext}}</td> |
| 3432 </tr> |
| 3433 </tbody> |
| 3434 </table> |
| 3435 </div> |
| 3436 </div> |
| 3437 </template> |
| 3438 </polymer-element> |
| 3439 |
| 3440 |
| 3441 |
| 3442 |
| 3443 |
| 3407 | 3444 |
| 3408 <polymer-element name="script-ref" extends="service-ref"> | 3445 <polymer-element name="script-ref" extends="service-ref"> |
| 3409 <template> | 3446 <template> |
| 3410 <style> | 3447 <style> |
| 3411 /* Global styles */ | 3448 /* Global styles */ |
| 3412 * { | 3449 * { |
| 3413 margin: 0; | 3450 margin: 0; |
| 3414 padding: 0; | 3451 padding: 0; |
| 3415 font: 400 14px 'Montserrat', sans-serif; | 3452 font: 400 14px 'Montserrat', sans-serif; |
| 3416 color: #333; | 3453 color: #333; |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4071 </div> | 4108 </div> |
| 4072 </div> | 4109 </div> |
| 4073 </template> | 4110 </template> |
| 4074 </div> | 4111 </div> |
| 4075 | 4112 |
| 4076 <hr> | 4113 <hr> |
| 4077 | 4114 |
| 4078 <div class="content"> | 4115 <div class="content"> |
| 4079 <eval-box callback="{{ eval }}"></eval-box> | 4116 <eval-box callback="{{ eval }}"></eval-box> |
| 4080 </div> | 4117 </div> |
| 4118 |
| 4119 <hr> |
| 4120 <script-inset script="{{ cls.script }}" pos="{{ cls.tokenPos }}" endpos="{{
cls.endTokenPos }}"> |
| 4121 </script-inset> |
| 4122 |
| 4081 <br><br><br><br> | 4123 <br><br><br><br> |
| 4082 <br><br><br><br> | 4124 <br><br><br><br> |
| 4083 </template> | 4125 </template> |
| 4084 </polymer-element> | 4126 </polymer-element> |
| 4085 | 4127 |
| 4086 | 4128 |
| 4087 | 4129 |
| 4088 | 4130 |
| 4089 <polymer-element name="code-ref" extends="service-ref"> | 4131 <polymer-element name="code-ref" extends="service-ref"> |
| 4090 <template> | 4132 <template> |
| (...skipping 2123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6214 | 6256 |
| 6215 | 6257 |
| 6216 | 6258 |
| 6217 | 6259 |
| 6218 | 6260 |
| 6219 | 6261 |
| 6220 | 6262 |
| 6221 | 6263 |
| 6222 | 6264 |
| 6223 | 6265 |
| 6224 | |
| 6225 | |
| 6226 | |
| 6227 <polymer-element name="script-inset" extends="observatory-element"> | |
| 6228 <template> | |
| 6229 <style> | |
| 6230 .sourceInset { | |
| 6231 padding-left: 15%; | |
| 6232 padding-right: 15%; | |
| 6233 } | |
| 6234 .grayBox { | |
| 6235 width: 100%; | |
| 6236 background-color: #f5f5f5; | |
| 6237 border: 1px solid #ccc; | |
| 6238 padding: 10px; | |
| 6239 } | |
| 6240 </style> | |
| 6241 <div class="sourceInset"> | |
| 6242 <content></content> | |
| 6243 <div class="grayBox"> | |
| 6244 <table> | |
| 6245 <tbody> | |
| 6246 <tr template="" repeat="{{ lineNumber in lineNumbers }}"> | |
| 6247 <td style="{{ styleForHits(script.lines[lineNumber].hits) }}"><spa
n> </span></td> | |
| 6248 <td style="font-family: consolas, courier, monospace;font-size: 1e
m;line-height: 1.2em;white-space: nowrap;">{{script.lines[lineNumber].line}}</td
> | |
| 6249 <td> </td> | |
| 6250 <td width="99%" style="font-family: consolas, courier, monospace;f
ont-size: 1em;line-height: 1.2em;white-space: pre;">{{script.lines[lineNumber].t
ext}}</td> | |
| 6251 </tr> | |
| 6252 </tbody> | |
| 6253 </table> | |
| 6254 </div> | |
| 6255 </div> | |
| 6256 </template> | |
| 6257 </polymer-element> | |
| 6258 | |
| 6259 | |
| 6260 <polymer-element name="function-view" extends="observatory-element"> | 6266 <polymer-element name="function-view" extends="observatory-element"> |
| 6261 <template> | 6267 <template> |
| 6262 <style> | 6268 <style> |
| 6263 /* Global styles */ | 6269 /* Global styles */ |
| 6264 * { | 6270 * { |
| 6265 margin: 0; | 6271 margin: 0; |
| 6266 padding: 0; | 6272 padding: 0; |
| 6267 font: 400 14px 'Montserrat', sans-serif; | 6273 font: 400 14px 'Montserrat', sans-serif; |
| 6268 color: #333; | 6274 color: #333; |
| 6269 box-sizing: border-box; | 6275 box-sizing: border-box; |
| (...skipping 11314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17584 } | 17590 } |
| 17585 </style> | 17591 </style> |
| 17586 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a> | 17592 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a> |
| 17587 </template> | 17593 </template> |
| 17588 </polymer-element> | 17594 </polymer-element> |
| 17589 | 17595 |
| 17590 | 17596 |
| 17591 | 17597 |
| 17592 <observatory-application></observatory-application> | 17598 <observatory-application></observatory-application> |
| 17593 | 17599 |
| 17594 <script type="application/dart" src="index.html_bootstrap.dart"></script><script
src="packages/browser/dart.js"></script></body></html> | 17600 <script src="index.html_bootstrap.dart.js" async=""></script></body></html> |
| OLD | NEW |