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

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

Issue 57007: Styles pane is made work with IPC. Still not work and will be fixed later:... (Closed) Base URL: http://src.chromium.org/svn/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/js/devtools.js ('k') | webkit/glue/devtools/js/dom_agent.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/js/devtools_host_stub.js
===================================================================
--- webkit/glue/devtools/js/devtools_host_stub.js (revision 13008)
+++ webkit/glue/devtools/js/devtools_host_stub.js (working copy)
@@ -127,6 +127,21 @@
};
+RemoteDomAgentStub.prototype.GetNodeStyles = function(callId, id, authorOnly) {
+ var styles = {
+ computedStyle: "display: none",
+ inlineStyle: "display: none",
+ styleAttributes: {attr: "display: none"},
+ matchedCSSRules: [{selector: "S", cssText: "display: none",
+ parentStyleSheetHref: "http://localhost",
+ parentStyleSheetOwnerNodeName: "DIV"}]
+ };
+ setTimeout(function() {
+ RemoteDomAgent.DidGetNodeStyles(callId, styles);
+ }, 0);
+};
+
+
/**
* @constructor
*/
« no previous file with comments | « webkit/glue/devtools/js/devtools.js ('k') | webkit/glue/devtools/js/dom_agent.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698