Title: [111008] trunk/Source/WebCore
- Revision
- 111008
- Author
- [email protected]
- Date
- 2012-03-16 07:54:09 -0700 (Fri, 16 Mar 2012)
Log Message
Web Inspector: Heap Snapshot: Unreviewed single line fix for isWindow getter.
* inspector/front-end/HeapSnapshot.js:
(WebInspector.HeapSnapshotNode.prototype.get isWindow):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (111007 => 111008)
--- trunk/Source/WebCore/ChangeLog 2012-03-16 14:53:01 UTC (rev 111007)
+++ trunk/Source/WebCore/ChangeLog 2012-03-16 14:54:09 UTC (rev 111008)
@@ -1,3 +1,10 @@
+2012-03-16 Ilya Tikhonovsky <[email protected]>
+
+ Web Inspector: Heap Snapshot: Unreviewed single line fix for isWindow getter.
+
+ * inspector/front-end/HeapSnapshot.js:
+ (WebInspector.HeapSnapshotNode.prototype.get isWindow):
+
2012-03-16 Tommy Widenflycht <[email protected]>
MediaStream API (JSEP): Fixing a few nits
Modified: trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js (111007 => 111008)
--- trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js 2012-03-16 14:53:01 UTC (rev 111007)
+++ trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js 2012-03-16 14:54:09 UTC (rev 111008)
@@ -631,7 +631,7 @@
get isWindow()
{
- return this.name.substr(0, 9) === "Window";
+ return this.name.substr(0, 6) === "Window";
},
get isDetachedDOMTreesRoot()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes