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

Unified Diff: third_party/WebKit/LayoutTests/inspector/components/widget-events.html

Issue 2180853003: DevTools: follow up to the widget hierarchy change, account for local widget reparending. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/components/widget-events-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/components/widget-events.html
diff --git a/third_party/WebKit/LayoutTests/inspector/components/widget-events.html b/third_party/WebKit/LayoutTests/inspector/components/widget-events.html
index e4cbc78c245f47dd9b3fb26a7d2e98e0f8191b54..82582f5ca67c1818c5baaed6735dce5969711e1b 100644
--- a/third_party/WebKit/LayoutTests/inspector/components/widget-events.html
+++ b/third_party/WebKit/LayoutTests/inspector/components/widget-events.html
@@ -355,6 +355,18 @@ function test()
InspectorTest.addResult(e);
}
next();
+ },
+
+ function testReparentWithinWidget(next)
+ {
+ var parentWidget = new TestWidget("Parent");
+ parentWidget.show(WebInspector.inspectorView.element);
+ var childWidget = new TestWidget("Child");
+ var container1 = parentWidget.element.createChild("div");
+ var container2 = parentWidget.element.createChild("div");
+ childWidget.show(container1);
+ childWidget.show(container2);
+ next();
}
]);
}
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/components/widget-events-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698