Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(607)

Side by Side Diff: runtime/bin/vmservice/client/deployed/web/index.html

Issue 357763004: Observatory requests coverage per script (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: add deployed Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 </head> 11 </head>
12 <body><script src="packages/web_components/platform.js"></script> 12 <body><script src="packages/web_components/platform.js"></script>
13 13
14
14 <!-- unminfied for debugging: 15 <!-- unminfied for debugging:
15 <link rel="import" href="src/js/polymer/layout.html"> 16 <link rel="import" href="src/js/polymer/layout.html">
16 <script src="src/js/polymer/polymer.concat.js"></script> 17 <script src="src/js/polymer/polymer.concat.js"></script>
17 --> 18 -->
18 19
19 20
20 21
21 <style shim-shadowdom=""> 22 <style shim-shadowdom="">
22 /******************************* 23 /*******************************
23 Flex Layout 24 Flex Layout
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 /******************************* 243 /*******************************
243 Other Layout 244 Other Layout
244 *******************************/ 245 *******************************/
245 246
246 html /deep/ [block] { 247 html /deep/ [block] {
247 display: block; 248 display: block;
248 } 249 }
249 250
250 /* ie support for hidden */ 251 /* ie support for hidden */
251 html /deep/ [hidden] { 252 html /deep/ [hidden] {
252 display: none; 253 display: none !important;
253 } 254 }
254 255
255 html /deep/ [relative] { 256 html /deep/ [relative] {
256 position: relative; 257 position: relative;
257 } 258 }
258 259
259 html /deep/ [fit] { 260 html /deep/ [fit] {
260 position: absolute; 261 position: absolute;
261 top: 0; 262 top: 0;
262 right: 0; 263 right: 0;
(...skipping 17 matching lines...) Expand all
280 -ms-box-sizing: border-box; 281 -ms-box-sizing: border-box;
281 box-sizing: border-box; 282 box-sizing: border-box;
282 margin: 1em 0.5em; 283 margin: 1em 0.5em;
283 padding: 1em; 284 padding: 1em;
284 background-color: white; 285 background-color: white;
285 -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); 286 -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
286 box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); 287 box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
287 border-radius: 5px 5px 5px 5px; 288 border-radius: 5px 5px 5px 5px;
288 } 289 }
289 290
290 </style><script src="packages/polymer/src/js/polymer/polymer.js"></script><scrip t type="text/javascript" src="https://www.google.com/jsapi"></script><style> 291 </style><script src="packages/polymer/src/js/polymer/polymer.js"></script><scrip t>
292 // TODO(sigmund): remove this script tag (dartbug.com/19650). This empty
293 // script tag is necessary to work around a bug in Chrome 36.
294 </script><script type="text/javascript" src="https://www.google.com/jsapi"></scr ipt><style>
291 /* Global styles */ 295 /* Global styles */
292 * { 296 * {
293 margin: 0; 297 margin: 0;
294 padding: 0; 298 padding: 0;
295 font: 400 14px 'Montserrat', sans-serif; 299 font: 400 14px 'Montserrat', sans-serif;
296 color: #333; 300 color: #333;
297 box-sizing: border-box; 301 box-sizing: border-box;
298 } 302 }
299 303
300 .content { 304 .content {
(...skipping 3426 matching lines...) Expand 10 before | Expand all | Expand 10 after
3727 3731
3728 .break-wrap { 3732 .break-wrap {
3729 word-wrap: break-word; 3733 word-wrap: break-word;
3730 } 3734 }
3731 </style> 3735 </style>
3732 <nav-bar> 3736 <nav-bar>
3733 <top-nav-menu></top-nav-menu> 3737 <top-nav-menu></top-nav-menu>
3734 <isolate-nav-menu isolate="{{ cls.isolate }}"></isolate-nav-menu> 3738 <isolate-nav-menu isolate="{{ cls.isolate }}"></isolate-nav-menu>
3735 <library-nav-menu library="{{ cls.library }}"></library-nav-menu> 3739 <library-nav-menu library="{{ cls.library }}"></library-nav-menu>
3736 <class-nav-menu cls="{{ cls }}" last="{{ true }}"></class-nav-menu> 3740 <class-nav-menu cls="{{ cls }}" last="{{ true }}"></class-nav-menu>
3741 <nav-refresh callback="{{ refreshCoverage }}" label="Refresh Coverage"></n av-refresh>
3737 <nav-refresh callback="{{ refresh }}"></nav-refresh> 3742 <nav-refresh callback="{{ refresh }}"></nav-refresh>
3738 <nav-control></nav-control> 3743 <nav-control></nav-control>
3739 </nav-bar> 3744 </nav-bar>
3740 3745
3741 <div class="content"> 3746 <div class="content">
3742 <h1> 3747 <h1>
3743 <template if="{{ cls.isAbstract }}"> 3748 <template if="{{ cls.isAbstract }}">
3744 abstract 3749 abstract
3745 </template> 3750 </template>
3746 <template if="{{ cls.isPatch }}"> 3751 <template if="{{ cls.isPatch }}">
(...skipping 9270 matching lines...) Expand 10 before | Expand all | Expand 10 after
13017 } 13022 }
13018 .miniProfileChart { 13023 .miniProfileChart {
13019 width: 80%; 13024 width: 80%;
13020 } 13025 }
13021 </style> 13026 </style>
13022 13027
13023 <nav-bar> 13028 <nav-bar>
13024 <top-nav-menu></top-nav-menu> 13029 <top-nav-menu></top-nav-menu>
13025 <isolate-nav-menu isolate="{{ isolate }}" last="{{ true }}"> 13030 <isolate-nav-menu isolate="{{ isolate }}" last="{{ true }}">
13026 </isolate-nav-menu> 13031 </isolate-nav-menu>
13032 <nav-refresh callback="{{ refreshCoverage }}" label="Refresh Coverage"></n av-refresh>
13027 <nav-refresh callback="{{ refresh }}"></nav-refresh> 13033 <nav-refresh callback="{{ refresh }}"></nav-refresh>
13028 <nav-control></nav-control> 13034 <nav-control></nav-control>
13029 </nav-bar> 13035 </nav-bar>
13030 13036
13031 <div class="content"> 13037 <div class="content">
13032 <h1>isolate '{{ isolate.name }}'</h1> 13038 <h1>isolate '{{ isolate.name }}'</h1>
13033 </div> 13039 </div>
13034 13040
13035 <br> 13041 <br>
13036 <div class="flex-row"> 13042 <div class="flex-row">
(...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after
13831 13837
13832 .break-wrap { 13838 .break-wrap {
13833 word-wrap: break-word; 13839 word-wrap: break-word;
13834 } 13840 }
13835 </style> 13841 </style>
13836 13842
13837 <nav-bar> 13843 <nav-bar>
13838 <top-nav-menu></top-nav-menu> 13844 <top-nav-menu></top-nav-menu>
13839 <isolate-nav-menu isolate="{{ library.isolate }}"></isolate-nav-menu> 13845 <isolate-nav-menu isolate="{{ library.isolate }}"></isolate-nav-menu>
13840 <library-nav-menu library="{{ library }}" last="{{ true }}"></library-nav- menu> 13846 <library-nav-menu library="{{ library }}" last="{{ true }}"></library-nav- menu>
13847 <nav-refresh callback="{{ refreshCoverage }}" label="Refresh Coverage"></n av-refresh>
13841 <nav-refresh callback="{{ refresh }}"></nav-refresh> 13848 <nav-refresh callback="{{ refresh }}"></nav-refresh>
13842 <nav-control></nav-control> 13849 <nav-control></nav-control>
13843 </nav-bar> 13850 </nav-bar>
13844 13851
13845 <div class="content"> 13852 <div class="content">
13846 <h1> 13853 <h1>
13847 <!-- TODO(turnidge): Handle unnamed libraries --> 13854 <!-- TODO(turnidge): Handle unnamed libraries -->
13848 library {{ library.name }} 13855 library {{ library.name }}
13849 </h1> 13856 </h1>
13850 <div class="memberList"> 13857 <div class="memberList">
(...skipping 2694 matching lines...) Expand 10 before | Expand all | Expand 10 after
16545 </style> 16552 </style>
16546 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a> 16553 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a>
16547 </template> 16554 </template>
16548 </polymer-element> 16555 </polymer-element>
16549 16556
16550 16557
16551 16558
16552 16559
16553 <observatory-application></observatory-application> 16560 <observatory-application></observatory-application>
16554 16561
16555 <script src="index.html_bootstrap.dart.js"></script></body></html> 16562 <script src="index.html_bootstrap.dart.js" async=""></script></body></html>
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698