Changeset 90996 in webkit


Ignore:
Timestamp:
Jul 14, 2011 6:36:29 AM (13 years ago)
Author:
caseq@chromium.org
Message:

2011-07-14 Andrey Kosyakov <caseq@chromium.org>

Web Inspector: remove more dead code
https://bugs.webkit.org/show_bug.cgi?id=64524

Reviewed by Yury Semikhatsky.

  • WebCore.gypi:
  • inspector/front-end/SummaryBar.js: Removed.
  • inspector/front-end/WebKit.qrc:
  • inspector/front-end/inspector.css:
  • inspector/front-end/inspector.html:
Location:
trunk/Source/WebCore
Files:
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r90991 r90996  
     12011-07-14  Andrey Kosyakov  <caseq@chromium.org>
     2
     3        Web Inspector: remove more dead code
     4        https://bugs.webkit.org/show_bug.cgi?id=64524
     5
     6        Reviewed by Yury Semikhatsky.
     7
     8        * WebCore.gypi:
     9        * inspector/front-end/SummaryBar.js: Removed.
     10        * inspector/front-end/WebKit.qrc:
     11        * inspector/front-end/inspector.css:
     12        * inspector/front-end/inspector.html:
     13
    1142011-07-14  Peter Varga  <pvarga@webkit.org>
    215
  • trunk/Source/WebCore/WebCore.gypi

    r90963 r90996  
    63276327            'inspector/front-end/StatusBarButton.js',
    63286328            'inspector/front-end/StylesSidebarPane.js',
    6329             'inspector/front-end/SummaryBar.js',
    63306329            'inspector/front-end/TabbedPane.js',
    63316330            'inspector/front-end/TestController.js',
  • trunk/Source/WebCore/inspector/front-end/WebKit.qrc

    r90830 r90996  
    111111    <file>StatusBarButton.js</file>
    112112    <file>StylesSidebarPane.js</file>
    113     <file>SummaryBar.js</file>
    114113    <file>TabbedPane.js</file>
    115114    <file>TestController.js</file>
  • trunk/Source/WebCore/inspector/front-end/inspector.css

    r90460 r90996  
    29412941}
    29422942
    2943 #resources-summary {
    2944     position: absolute;
    2945     padding-top: 20px;
    2946     top: 0;
    2947     left: 0;
    2948     right: 0;
    2949     height: 93px;
    2950     margin-left: -1px;
    2951     border-left: 1px solid rgb(102, 102, 102);
    2952     background-color: rgb(101, 111, 130);
    2953     background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
    2954     background-repeat: repeat-x;
    2955     background-position: bottom;
    2956     text-align: center;
    2957     text-shadow: black 0 1px 1px;
    2958     white-space: nowrap;
    2959     color: white;
    2960     -webkit-background-size: 1px 6px;
    2961     -webkit-background-origin: padding;
    2962     -webkit-background-clip: padding;
    2963     z-index: 400;
    2964 }
    2965 
    2966 .summary-graph-legend {
    2967     margin-top: -10px;
    2968     padding-left: 15px;
    2969 }
    2970 
    2971 .summary-graph-legend-item {
    2972     display: inline-block;
    2973     font-weight: bold;
    2974     margin-right: 15px;
    2975     vertical-align: top;
    2976 }
    2977 
    2978 .summary-graph-legend-item.total {
    2979     margin-left: 10px;
    2980 }
    2981 
    2982 .summary-graph-legend-label {
    2983     display: inline-block;
    2984     text-align: left;
    2985 }
    2986 
    2987 .summary-graph-legend-header {
    2988     font-size: 12px;
    2989 }
    2990 
    2991 .summary-graph-legend-value {
    2992     font-size: 10px;
    2993 }
    2994 
    2995 .summary-graph-legend-swatch {
    2996     vertical-align: top;
    2997     margin-top: 1px;
    2998     margin-right: 3px;
    2999 }
    3000 
    30012943.resources-dividers {
    30022944    position: absolute;
     
    30903032    color: rgb(50%, 50%, 50%);
    30913033    white-space: nowrap;
    3092 }
    3093 
    3094 .resources-graph-label {
    3095     position: absolute;
    3096     top: 0;
    3097     bottom: 0;
    3098     margin: auto -7px;
    3099     height: 13px;
    3100     line-height: 13px;
    3101     font-size: 9px;
    3102     color: rgba(0, 0, 0, 0.75);
    3103     text-shadow: rgba(255, 255, 255, 0.25) 1px 0 0, rgba(255, 255, 255, 0.25) -1px 0 0, rgba(255, 255, 255, 0.333) 0 1px 0, rgba(255, 255, 255, 0.25) 0 -1px 0;
    3104     z-index: 150;
    3105     overflow: hidden;
    3106     text-align: center;
    3107     font-weight: bold;
    3108     opacity: 0;
    3109     -webkit-transition: opacity 250ms ease-in-out;
    3110 }
    3111 
    3112 .resources-graph-side:hover .resources-graph-label {
    3113     opacity: 1;
    3114 }
    3115 
    3116 .resources-graph-label:empty {
    3117     display: none;
    3118 }
    3119 
    3120 .resources-graph-label.waiting {
    3121     margin-right: 5px;
    3122 }
    3123 
    3124 .resources-graph-label.waiting-right {
    3125     margin-left: 5px;
    3126 }
    3127 
    3128 .resources-graph-label.before {
    3129     color: rgba(0, 0, 0, 0.7);
    3130     text-shadow: none;
    3131     text-align: right;
    3132     margin-right: 2px;
    3133 }
    3134 
    3135 .resources-graph-label.before::after {
    3136     padding-left: 2px;
    3137     height: 6px;
    3138     content: url(Images/graphLabelCalloutLeft.png);
    3139 }
    3140 
    3141 .resources-graph-label.after {
    3142     color: rgba(0, 0, 0, 0.7);
    3143     text-shadow: none;
    3144     text-align: left;
    3145     margin-left: 2px;
    3146 }
    3147 
    3148 .resources-graph-label.after::before {
    3149     padding-right: 2px;
    3150     height: 6px;
    3151     content: url(Images/graphLabelCalloutRight.png);
    3152 }
    3153 
    3154 .resources-graph-bar {
    3155     position: absolute;
    3156     top: 0;
    3157     bottom: 0;
    3158     margin: auto -7px;
    3159     border-width: 6px 7px;
    3160     height: 13px;
    3161     min-width: 14px;
    3162     opacity: 0.65;
    3163     -webkit-border-image: url(Images/timelinePillGray.png) 6 7 6 7;
    31643034}
    31653035
     
    35523422}
    35533423
    3554 #resources-container:not(.viewing-resource) .resource-sidebar-tree-item:nth-of-type(2n) {
    3555     background-color: rgba(0, 0, 0, 0.05);
    3556 }
    3557 
    3558 #resources-container:not(.viewing-resource) .resources-graph-side:nth-of-type(2n) {
    3559     background-color: rgba(0, 0, 0, 0.05);
    3560 }
    3561 
    35623424.resources-time-graph-sidebar-item .icon {
    35633425    content: url(Images/resourcesTimeGraphIcon.png);
  • trunk/Source/WebCore/inspector/front-end/inspector.html

    r90830 r90996  
    9898    <script type="text/javascript" src="WelcomeView.js"></script>
    9999    <script type="text/javascript" src="StatusBarButton.js"></script>
    100     <script type="text/javascript" src="SummaryBar.js"></script>
    101100    <script type="text/javascript" src="ElementsPanel.js"></script>
    102101    <script type="text/javascript" src="NetworkPanel.js"></script>
Note: See TracChangeset for help on using the changeset viewer.