Commit 5d02facb authored by eroman@chromium.org's avatar eroman@chromium.org

Add snapshotting support to about:profiler.

Review URL: http://codereview.chromium.org/8666005

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111280 0039d316-1c4b-4281-b951-d872f2087c98
parent 51edd2dd
...@@ -85,6 +85,18 @@ table.results-table, ...@@ -85,6 +85,18 @@ table.results-table,
text-decoration: underline; text-decoration: underline;
} }
.selected_snapshot {
font-weight: bold;
color: purple;
}
#snapshot-selection-summary {
margin-top: 1ex;
font-weight: bold;
font-style: italic;
color: green;
}
</style> </style>
</head> </head>
<body> <body>
...@@ -95,7 +107,8 @@ table.results-table, ...@@ -95,7 +107,8 @@ table.results-table,
<b>Sort by: </b> <span id=sort-by-container></span> <b>Sort by: </b> <span id=sort-by-container></span>
</td> </td>
<td align=right> <td align=right>
<span id=edit-columns-link class=pseudo-link>[Edit columns]</span> <span id=snapshots-link class=pseudo-link>[snapshots]</span>
<span id=edit-columns-link class=pseudo-link>[columns]</span>
<input type='search' incremental id='filter-search' /> <input type='search' incremental id='filter-search' />
</td> </td>
</tr> </tr>
...@@ -111,6 +124,13 @@ table.results-table, ...@@ -111,6 +124,13 @@ table.results-table,
</div> </div>
</td> </td>
</tr> </tr>
<tr id=snapshots-row style='display:none'>
<td colspan=2>
<button id=snapshot-button>Add snapshot</button>
<table><tbody id=snapshots-tbody></tbody></table>
<div id=snapshot-selection-summary></div>
</td>
</tr>
</table> </table>
<hr/> <hr/>
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment