| Index: tools/profviz/profviz.css
|
| diff --git a/LICENSE.v8 b/tools/profviz/profviz.css
|
| similarity index 62%
|
| copy from LICENSE.v8
|
| copy to tools/profviz/profviz.css
|
| index 933718a9ef9dae4cb4afa56e490211760d8a949f..4042f15aaa35765a30fd69a1eace7d6b11943aad 100644
|
| --- a/LICENSE.v8
|
| +++ b/tools/profviz/profviz.css
|
| @@ -1,8 +1,9 @@
|
| -Copyright 2006-2011, the V8 project authors. All rights reserved.
|
| +/*
|
| +Copyright 2013 the V8 project authors. All rights reserved.
|
| +
|
| Redistribution and use in source and binary forms, with or without
|
| modification, are permitted provided that the following conditions are
|
| met:
|
| -
|
| * Redistributions of source code must retain the above copyright
|
| notice, this list of conditions and the following disclaimer.
|
| * Redistributions in binary form must reproduce the above
|
| @@ -12,7 +13,6 @@ met:
|
| * Neither the name of Google Inc. nor the names of its
|
| contributors may be used to endorse or promote products derived
|
| from this software without specific prior written permission.
|
| -
|
| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
| "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
| LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
| @@ -24,3 +24,75 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
| THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| +*/
|
| +
|
| +body {
|
| + background-color: #ddd;
|
| +}
|
| +
|
| +#content {
|
| + background-color: #fff;
|
| + width: 1200px;
|
| + margin-left: auto;
|
| + margin-right: auto;
|
| + padding: 25px;
|
| +}
|
| +
|
| +textarea.log {
|
| + font-family: monospace;
|
| + width: 1200px;
|
| + background-color: #ffe;
|
| + color: #000;
|
| + resize: none;
|
| +}
|
| +
|
| +button#start {
|
| + width: 100px;
|
| +}
|
| +
|
| +button#reset {
|
| + width: 100px;
|
| +}
|
| +
|
| +input.range {
|
| + width: 80px;
|
| + text-align: right;
|
| + padding-right: 5px;
|
| +}
|
| +
|
| +table {
|
| + width: 1200px;
|
| +}
|
| +
|
| +label {
|
| + font-family: Verdana;
|
| + font-size: 12px;
|
| +}
|
| +
|
| +.tooltip {
|
| + border-bottom: 1px dotted #000;
|
| +}
|
| +
|
| +h1 {
|
| + font-family: Verdana;
|
| + font-size: 14px;
|
| + font-weight: bold;
|
| +}
|
| +
|
| +.text {
|
| + font-family: Verdana;
|
| + font-size: 12px;
|
| +}
|
| +
|
| +.tt {
|
| + font-family: monospace;
|
| + font-size: 12px;
|
| + color: #822;
|
| +}
|
| +
|
| +a {
|
| + font-family: Verdana;
|
| + font-size: 12px;
|
| + text-decoration: none;
|
| + color: #282;
|
| +}
|
|
|