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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector-unit/viewport-datagrid-items-expandable-attached-to-dom.js

Issue 2747893005: [Devtools] Changed ViewportDataGrid to use DataGrid for dom operations
Patch Set: better viewportdatagrid Created 3 years, 9 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/http/tests/inspector-unit/viewport-datagrid-items-expandable-attached-to-dom.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-unit/viewport-datagrid-items-expandable-attached-to-dom.js b/third_party/WebKit/LayoutTests/http/tests/inspector-unit/viewport-datagrid-items-expandable-attached-to-dom.js
index 851472da9d93501f2987ae6190dfa4a4c10e9551..78dee70b967bbbf6c92db87240972e7b67da7e23 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector-unit/viewport-datagrid-items-expandable-attached-to-dom.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector-unit/viewport-datagrid-items-expandable-attached-to-dom.js
@@ -91,7 +91,7 @@ function test() {
var element = node.existingElement();
if (!element)
continue;
- if (node.attachedToDOM() && div.contains(element)) {
+ if (div.contains(element)) {
var attributes = [];
if (node.hasChildren())
attributes.push("has children");

Powered by Google App Engine
This is Rietveld 408576698