Changeset 99819 in webkit
- Timestamp:
- Nov 9, 2011, 11:59:18 PM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
inspector/front-end/SourceFrame.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r99816 r99819 1 2011-11-09 Pavel Feldman <pfeldman@google.com> 2 3 Web Inspector: console does not work after switching panel while editing. 4 https://bugs.webkit.org/show_bug.cgi?id=71918 5 6 Reviewed by Yury Semikhatsky. 7 8 * inspector/front-end/SourceFrame.js: 9 (WebInspector.SourceFrame.prototype.wasShown): 10 (WebInspector.SourceFrame.prototype.willHide): 11 1 12 2011-11-09 Rakesh KN <rakesh.kn@motorola.com> 2 13 -
trunk/Source/WebCore/inspector/front-end/SourceFrame.js
r99410 r99819 84 84 this._ensureContentLoaded(); 85 85 this._textViewer.show(this.element); 86 if (this._wasHiddenWhileEditing) 87 this.setReadOnly(false); 86 88 }, 87 89 … … 93 95 94 96 this._clearLineHighlight(); 95 this._textViewer.readOnly = true; 97 if (!this._textViewer.readOnly) 98 this._wasHiddenWhileEditing = true; 99 this.setReadOnly(true); 96 100 }, 97 101
Note:
See TracChangeset
for help on using the changeset viewer.