Title: [171276] trunk/Source/WebInspectorUI
Revision
171276
Author
[email protected]
Date
2014-07-19 21:32:27 -0700 (Sat, 19 Jul 2014)

Log Message

Web Inspector: TextContentView calls wrong prototype function in the hidden() function
https://bugs.webkit.org/show_bug.cgi?id=135097

Patch by Saam Barati <[email protected]> on 2014-07-19
Reviewed by Timothy Hatcher.

Corollary bug to: https://bugs.webkit.org/show_bug.cgi?id=135001

* UserInterface/Views/TextContentView.js:
(WebInspector.TextContentView.prototype.hidden):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (171275 => 171276)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-07-20 00:04:52 UTC (rev 171275)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-07-20 04:32:27 UTC (rev 171276)
@@ -1,3 +1,15 @@
+2014-07-19  Saam Barati  <[email protected]>
+
+        Web Inspector: TextContentView calls wrong prototype function in the hidden() function
+        https://bugs.webkit.org/show_bug.cgi?id=135097
+
+        Reviewed by Timothy Hatcher.
+
+        Corollary bug to: https://bugs.webkit.org/show_bug.cgi?id=135001
+
+        * UserInterface/Views/TextContentView.js:
+        (WebInspector.TextContentView.prototype.hidden):
+
 2014-07-18  Timothy Hatcher  <[email protected]>
 
         Revert r169735 since it broke Timeline, and fix bug 129696 in a more targeted way.

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TextContentView.js (171275 => 171276)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TextContentView.js	2014-07-20 00:04:52 UTC (rev 171275)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TextContentView.js	2014-07-20 04:32:27 UTC (rev 171276)
@@ -77,7 +77,7 @@
 
     hidden: function()
     {
-        WebInspector.ResourceContentView.prototype.hidden.call(this);
+        WebInspector.ContentView.prototype.hidden.call(this);
 
         this._textEditor.hidden();
     },
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to