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

Side by Side Diff: Source/core/inspector/InspectorOverlayPage.html

Issue 306953006: Remove webkit- prefix from classes used by View Source (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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
« no previous file with comments | « Source/core/html/HTMLViewSourceDocument.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright (C) 2012 Google Inc. All rights reserved. 2 Copyright (C) 2012 Google Inc. All rights reserved.
3 3
4 Redistribution and use in source and binary forms, with or without 4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions 5 modification, are permitted provided that the following conditions
6 are met: 6 are met:
7 7
8 1. Redistributions of source code must retain the above copyright 8 1. Redistributions of source code must retain the above copyright
9 notice, this list of conditions and the following disclaimer. 9 notice, this list of conditions and the following disclaimer.
10 2. Redistributions in binary form must reproduce the above copyright 10 2. Redistributions in binary form must reproduce the above copyright
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 .px { 129 .px {
130 color: rgb(128, 128, 128); 130 color: rgb(128, 128, 128);
131 } 131 }
132 132
133 #element-title { 133 #element-title {
134 position: absolute; 134 position: absolute;
135 z-index: 10; 135 z-index: 10;
136 } 136 }
137 137
138 #tag-name { 138 #tag-name {
139 /* Keep this in sync with view-source.css (.webkit-html-tag) */ 139 /* Keep this in sync with view-source.css (.html-tag) */
140 color: rgb(136, 18, 128); 140 color: rgb(136, 18, 128);
141 } 141 }
142 142
143 #node-id { 143 #node-id {
144 /* Keep this in sync with view-source.css (.webkit-html-attribute-value) */ 144 /* Keep this in sync with view-source.css (.html-attribute-value) */
145 color: rgb(26, 26, 166); 145 color: rgb(26, 26, 166);
146 } 146 }
147 147
148 #class-name { 148 #class-name {
149 /* Keep this in sync with view-source.css (.webkit-html-attribute-name) */ 149 /* Keep this in sync with view-source.css (.html-attribute-name) */
150 color: rgb(153, 69, 0); 150 color: rgb(153, 69, 0);
151 } 151 }
152 152
153 </style> 153 </style>
154 <script> 154 <script>
155 const lightGridColor = "rgba(0,0,0,0.2)"; 155 const lightGridColor = "rgba(0,0,0,0.2)";
156 const darkGridColor = "rgba(0,0,0,0.7)"; 156 const darkGridColor = "rgba(0,0,0,0.7)";
157 const transparentColor = "rgba(0, 0, 0, 0)"; 157 const transparentColor = "rgba(0, 0, 0, 0)";
158 const gridBackgroundColor = "rgba(255, 255, 255, 0.8)"; 158 const gridBackgroundColor = "rgba(255, 255, 255, 0.8)";
159 // CSS shapes 159 // CSS shapes
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 <div class="button" id="step-over-button" title="Step over next function cal l (F10)."><div class="glyph"></div></div> 741 <div class="button" id="step-over-button" title="Step over next function cal l (F10)."><div class="glyph"></div></div>
742 </div> 742 </div>
743 </body> 743 </body>
744 <canvas id="canvas" class="fill"></canvas> 744 <canvas id="canvas" class="fill"></canvas>
745 <div id="element-title"> 745 <div id="element-title">
746 <span id="tag-name"></span><span id="node-id"></span><span id="class-name"></s pan> 746 <span id="tag-name"></span><span id="node-id"></span><span id="class-name"></s pan>
747 <span id="node-width"></span><span class="px">px</span><span class="px"> &#xD7 ; </span><span id="node-height"></span><span class="px">px</span> 747 <span id="node-width"></span><span class="px">px</span><span class="px"> &#xD7 ; </span><span id="node-height"></span><span class="px">px</span>
748 </div> 748 </div>
749 <div id="log"></div> 749 <div id="log"></div>
750 </html> 750 </html>
OLDNEW
« no previous file with comments | « Source/core/html/HTMLViewSourceDocument.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698