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); |
} |