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

Unified Diff: LayoutTests/inspector/console/console-filter-level-test.html

Issue 254833004: DevTools: [Console] use filtering to collapse and expand console groups (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update tests Created 6 years, 8 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: LayoutTests/inspector/console/console-filter-level-test.html
diff --git a/LayoutTests/inspector/console/console-filter-level-test.html b/LayoutTests/inspector/console/console-filter-level-test.html
index e4743cf9c0e55502fa94499d23275ad801610d97..fa0546488e30c909dfbc0bbcb6d9bc72f278468c 100644
--- a/LayoutTests/inspector/console/console-filter-level-test.html
+++ b/LayoutTests/inspector/console/console-filter-level-test.html
@@ -24,11 +24,9 @@ function onload()
function test()
{
- var messagesElement = WebInspector.ConsolePanel._view()._messagesElement;
-
function dumpVisibleMessages()
{
- var children = WebInspector.ConsolePanel._view()._topGroup._messagesElement.childNodes;
+ var children = WebInspector.ConsolePanel._view()._messagesContainer.childNodes;
for (var i = 0; i < children.length; i++)
InspectorTest.addResult(">" + children[i].textContent);

Powered by Google App Engine
This is Rietveld 408576698