diff options
Diffstat (limited to 'webkit/glue/devtools/js/inspector_controller.js')
-rw-r--r-- | webkit/glue/devtools/js/inspector_controller.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webkit/glue/devtools/js/inspector_controller.js b/webkit/glue/devtools/js/inspector_controller.js index 6a7871a..578be7f 100644 --- a/webkit/glue/devtools/js/inspector_controller.js +++ b/webkit/glue/devtools/js/inspector_controller.js @@ -152,6 +152,7 @@ devtools.InspectorController.prototype.moveByUnrestricted = function(x, y) { */ devtools.InspectorController.prototype.addResourceSourceToFrame = function(identifier, element) { + return false; }; @@ -163,7 +164,7 @@ devtools.InspectorController.prototype.addResourceSourceToFrame = */ devtools.InspectorController.prototype.addSourceToFrame = function(mimeType, source, element) { - return true; + return false; }; |