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

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

Issue 100199: DevTools: Implement styles editing. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 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
Index: webkit/glue/devtools/js/devtools_host_stub.js
===================================================================
--- webkit/glue/devtools/js/devtools_host_stub.js (revision 14844)
+++ webkit/glue/devtools/js/devtools_host_stub.js (working copy)
@@ -185,8 +185,9 @@
}
]
};
- } else if (functionName == 'toggleNodeStyle') {
- alert('toggleNodeStyle ' + args);
+ } else if (functionName == 'toggleNodeStyle' ||
+ functionName == 'applyStyleText') {
+ alert(functionName + '(' + args + ')');
} else {
alert('Unexpected utility function:' + functionName);
}

Powered by Google App Engine
This is Rietveld 408576698