summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-02-28 17:44:23 +0000
committerBen Murdoch <benm@google.com>2011-02-28 17:45:53 +0000
commit99791c639dd95c082f551a62034d8959ce2cf15a (patch)
tree0fa8274ea5b783cf270dcd7c60fda667d11af553 /WebCore/inspector
parentd914e54363c3b0482ac7f4843af11d1beb340afe (diff)
downloadexternal_webkit-99791c639dd95c082f551a62034d8959ce2cf15a.zip
external_webkit-99791c639dd95c082f551a62034d8959ce2cf15a.tar.gz
external_webkit-99791c639dd95c082f551a62034d8959ce2cf15a.tar.bz2
Merge WebKit at Chromium 9.0.597.107: Initial merge by git.
Note that we are tracking the Chromium 9.0.597 release branch, which is WebKit r72805 + stability cherry picks. This corresponds to r78920 on the 597 release branch. Change-Id: I610ebdbcba92cfa788b229ee207a405789d45e67
Diffstat (limited to 'WebCore/inspector')
-rw-r--r--WebCore/inspector/front-end/ScriptsPanel.js5
-rw-r--r--WebCore/inspector/front-end/SourceFrame.js5
2 files changed, 1 insertions, 9 deletions
diff --git a/WebCore/inspector/front-end/ScriptsPanel.js b/WebCore/inspector/front-end/ScriptsPanel.js
index 2a216cc..30bd513 100644
--- a/WebCore/inspector/front-end/ScriptsPanel.js
+++ b/WebCore/inspector/front-end/ScriptsPanel.js
@@ -245,9 +245,6 @@ WebInspector.ScriptsPanel.prototype = {
// Resource is finished, bind the script right away.
resource.addScript(script);
this._sourceIDMap[sourceID] = resource;
- var view = WebInspector.ResourceManager.existingResourceViewForResource(resource);
- if (view && view.sourceFrame)
- view.sourceFrame.addScript(script);
} else {
// Resource is not finished, bind the script later.
if (!resource._scriptsPendingResourceLoad) {
@@ -315,7 +312,7 @@ WebInspector.ScriptsPanel.prototype = {
return;
// Need to clear breakpoints and re-create them later when editing source.
- var breakpoints = WebInspector.breakpointManager.breakpointsForSourceID(sourceID);
+ var breakpoints = WebInspector.breakpointManager.breakpointsForSourceID(editData.sourceID);
for (var i = 0; i < breakpoints.length; ++i)
breakpoints[i].remove();
diff --git a/WebCore/inspector/front-end/SourceFrame.js b/WebCore/inspector/front-end/SourceFrame.js
index 6cf226b..8e077cd 100644
--- a/WebCore/inspector/front-end/SourceFrame.js
+++ b/WebCore/inspector/front-end/SourceFrame.js
@@ -132,11 +132,6 @@ WebInspector.SourceFrame.prototype = {
this._addMessageToSource(msg);
},
- addScript: function(script)
- {
- this._scripts[script.sourceID] = script;
- },
-
clearMessages: function()
{
for (var line in this._messageBubbles) {