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,
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>
</head>
<body>
......@@ -95,7 +107,8 @@ table.results-table,
<b>Sort by: </b> <span id=sort-by-container></span>
</td>
<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' />
</td>
</tr>
......@@ -111,6 +124,13 @@ table.results-table,
</div>
</td>
</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>
<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