Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: third_party/WebKit/LayoutTests/inspector/profiler/heap-snapshot-summary-search-by-id.html

Issue 2716983002: [Devtools] Moved DataGridNode's .parent property to proper getter/setter (Closed)
Patch Set: [Devtools] Moved DataGridNode's .parent property to proper getter/setter Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector/profiler/heap-snapshot-summary-search-by-id.html
diff --git a/third_party/WebKit/LayoutTests/inspector/profiler/heap-snapshot-summary-search-by-id.html b/third_party/WebKit/LayoutTests/inspector/profiler/heap-snapshot-summary-search-by-id.html
index c11a6eedecbd4dd58e88cabdfb89c9951ebbd468..6eb462358dbe6e45472e1dcb37a5ed8773732a39 100644
--- a/third_party/WebKit/LayoutTests/inspector/profiler/heap-snapshot-summary-search-by-id.html
+++ b/third_party/WebKit/LayoutTests/inspector/profiler/heap-snapshot-summary-search-by-id.html
@@ -88,8 +88,8 @@ function test()
InspectorTest.addResult("FAIL: node @" + nodeId + " not found");
return next();
}
- if (constructorName !== node.parent._name) {
- InspectorTest.addResult("FAIL: constructor name doesn't match. " + constructorName + " !== " + node.parent._name);
+ if (constructorName !== node.parent()._name) {
+ InspectorTest.addResult("FAIL: constructor name doesn't match. " + constructorName + " !== " + node.parent()._name);
next();
}
if (nodeId != node.snapshotNodeId) {

Powered by Google App Engine
This is Rietveld 408576698