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

Unified Diff: webkit/glue/devtools/js/devtools.js

Issue 60047: DevTools: Add support for r/o CSS inspection. Original review CL by serya : h... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/devtools/dom_agent_impl.cc ('k') | webkit/glue/devtools/js/devtools_host_stub.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/js/devtools.js
===================================================================
--- webkit/glue/devtools/js/devtools.js (revision 13008)
+++ webkit/glue/devtools/js/devtools.js (working copy)
@@ -142,13 +142,13 @@
* @param {string} text
*/
function debugPrint(text) {
- var console = WebInspector.console;
- if (console) {
- console.addMessage(new WebInspector.ConsoleMessage(
- "", undefined, 1, "", undefined, 1, text));
- } else {
- alert(text);
- }
+ var console = WebInspector.console;
+ if (console) {
+ console.addMessage(new WebInspector.ConsoleMessage(
+ "", undefined, 1, "", undefined, 1, text));
+ } else {
+ alert(text);
+ }
}
@@ -224,6 +224,30 @@
};
+WebInspector.ElementsPanel.prototype.updateStyles = function(forceUpdate) {
+ var stylesSidebarPane = this.sidebarPanes.styles;
+ if (!stylesSidebarPane.expanded || !stylesSidebarPane.needsUpdate)
+ return;
+
+ var node = this.focusedDOMNode;
+ if (node && node.nodeType === Node.TEXT_NODE && node.parentNode)
+ node = node.parentNode;
+
+ if (node && node.nodeType == Node.ELEMENT_NODE) {
+ var callback = function() {
+ stylesSidebarPane.update(node, null, forceUpdate);
+ stylesSidebarPane.needsUpdate = false;
+ };
+
+ devtools.tools.getDomAgent().getNodeStylesAsync(node,
+ !Preferences.showUserAgentStyles, callback);
+ } else {
+ stylesSidebarPane.update(null, null, forceUpdate);
+ stylesSidebarPane.needsUpdate = false;
+ }
+};
+
+
WebInspector.PropertiesSidebarPane.prototype.update = function(object) {
var body = this.bodyElement;
body.removeChildren();
« no previous file with comments | « webkit/glue/devtools/dom_agent_impl.cc ('k') | webkit/glue/devtools/js/devtools_host_stub.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698