这是indexloc提供的服务,不要输入任何密码
WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
[patch]
patch with "no test" changelog comment removed
19131.patch (text/plain), 1.53 KB, created by
Patrick Mueller
on 2009-08-13 07:29:41 PDT
(
hide
)
Description:
patch with "no test" changelog comment removed
Filename:
MIME Type:
Creator:
Patrick Mueller
Created:
2009-08-13 07:29:41 PDT
Size:
1.53 KB
patch
obsolete
>Index: WebCore/ChangeLog >=================================================================== >--- WebCore/ChangeLog (revision 47140) >+++ WebCore/ChangeLog (working copy) >@@ -1,3 +1,13 @@ >+2009-08-12 Patrick Mueller <Patrick_Mueller@us.ibm.com> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Add a new gesture in Web Inspector to remove breakpoints >+ https://bugs.webkit.org/show_bug.cgi?id=19131 >+ >+ * inspector/front-end/SourceFrame.js: >+ (WebInspector.SourceFrame.prototype._documentMouseDown): >+ > 2009-08-12 Lyon Chen <lyon.chen@torchmobile.com> > > Reviewed by George Staikos. >Index: WebCore/inspector/front-end/SourceFrame.js >=================================================================== >--- WebCore/inspector/front-end/SourceFrame.js (revision 47060) >+++ WebCore/inspector/front-end/SourceFrame.js (working copy) >@@ -289,8 +289,10 @@ WebInspector.SourceFrame.prototype = { > return; > > var sourceRow = event.target.enclosingNodeOrSelfWithNodeName("tr"); >- if (sourceRow._breakpointObject) >- sourceRow._breakpointObject.enabled = !sourceRow._breakpointObject.enabled; >+ if (sourceRow._breakpointObject && sourceRow._breakpointObject.enabled) >+ sourceRow._breakpointObject.enabled = false; >+ else if (sourceRow._breakpointObject) >+ WebInspector.panels.scripts.removeBreakpoint(sourceRow._breakpointObject); > else if (this.addBreakpointDelegate) > this.addBreakpointDelegate(this.lineNumberForSourceRow(sourceRow)); > },
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 19131
:
34682
| 34739