Diff
Modified: branches/safari-601-branch/Source/_javascript_Core/ChangeLog (193465 => 193466)
--- branches/safari-601-branch/Source/_javascript_Core/ChangeLog 2015-12-04 21:01:35 UTC (rev 193465)
+++ branches/safari-601-branch/Source/_javascript_Core/ChangeLog 2015-12-04 21:01:39 UTC (rev 193466)
@@ -1,5 +1,20 @@
2015-12-04 Timothy Hatcher <[email protected]>
+ Merge r191397. rdar://problem/23221163
+
+ 2015-10-21 Joseph Pecoraro <[email protected]>
+
+ Web Inspector: Array previews with Symbol objects have too few preview values
+ https://bugs.webkit.org/show_bug.cgi?id=150404
+
+ Reviewed by Timothy Hatcher.
+
+ * inspector/InjectedScriptSource.js:
+ (InjectedScript.RemoteObject.prototype._appendPropertyPreviews):
+ We should be continuing inside this loop not returning.
+
+2015-12-04 Timothy Hatcher <[email protected]>
+
Merge r188976. rdar://problem/23221163
2015-08-26 Brian Burg <[email protected]>
Modified: branches/safari-601-branch/Source/_javascript_Core/inspector/InjectedScriptSource.js (193465 => 193466)
--- branches/safari-601-branch/Source/_javascript_Core/inspector/InjectedScriptSource.js 2015-12-04 21:01:35 UTC (rev 193465)
+++ branches/safari-601-branch/Source/_javascript_Core/inspector/InjectedScriptSource.js 2015-12-04 21:01:39 UTC (rev 193466)
@@ -1185,7 +1185,7 @@
preview.lossless = false;
}
this._appendPropertyPreview(preview, internal, {name, type, value: symbolString}, propertiesThreshold);
- return;
+ continue;
}
// Object.
_______________________________________________ webkit-changes mailing list [email protected] https://lists.webkit.org/mailman/listinfo/webkit-changes
