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

Unified Diff: LayoutTests/inspector/console/console-custom-formatters.html

Issue 1072523002: Devtools: allow multiple custom formatters (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Test added Created 5 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
« no previous file with comments | « no previous file | LayoutTests/inspector/console/console-custom-formatters-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/console/console-custom-formatters.html
diff --git a/LayoutTests/inspector/console/console-custom-formatters.html b/LayoutTests/inspector/console/console-custom-formatters.html
new file mode 100644
index 0000000000000000000000000000000000000000..caa83964758de6bc0b74c7c2ea91f02936800801
--- /dev/null
+++ b/LayoutTests/inspector/console/console-custom-formatters.html
@@ -0,0 +1,99 @@
+<html>
+<head>
+<script src="../../http/tests/inspector/inspector-test.js"></script>
+<script src="../../http/tests/inspector/console-test.js"></script>
+<script>
+
+var a = {name: "a"};
+var b = {name: "b"};
+var c = {name: "c"};
+
+a.formattableBy1 = true;
+b.formattableBy2 = true;
+c.formattableBy1 = true;
+c.formattableBy2 = true;
+
+var formatter1 = {
+ header: function(x)
+ {
+ if (!x.formattableBy1)
+ return null;
+
+ return ["span", {}, "Header formatted by 1 ", x.name];
+ },
+
+ hasBody: function(x)
+ {
+ return true;
+ },
+
+ body: function(x)
+ {
+ return ["span", {}, "Body formatted by 1 ", x.name]
+ }
+};
+
+var formatter2 = {
+ header: function(x)
+ {
+ if (!x.formattableBy2)
+ return null;
+
+ return ["span", {}, "Header formatted by 2 ", x.name];
+ },
+
+ hasBody: function(x)
+ {
+ return true;
+ },
+
+ body: function(x)
+ {
+ return ["span", {}, "Body formatted by 2 ", x.name]
+ }
+};
+
+window.devtoolsFormatters = [formatter1, formatter2];
+
+function logVars()
+{
+ console.log(a);
+ console.log(b);
+ console.log(c);
+ window.devtoolsFormatters = [formatter2, formatter1];
+}
+
+function test()
+{
+ InspectorTest.mainTarget.runtimeAgent().setCustomObjectFormatterEnabled(true);
+ InspectorTest.evaluateInPage("logVars()", expandVariablesInConsole);
+
+ function expandVariablesInConsole()
+ {
+ var consoleView = WebInspector.ConsolePanel._view();
+ if (consoleView._needsFullUpdate)
+ consoleView._updateMessageList();
+ var viewMessages = consoleView._visibleViewMessages;
+ for (var i = 0; i < viewMessages.length; ++i) {
+ var uiMessage = viewMessages[i];
+ var customElement = uiMessage.contentElement().querySelector("span /deep/ .custom-expandable-section");
+ if (customElement)
+ customElement.click();
+ }
+
+ InspectorTest.runAfterPendingDispatches(dumpExpanded);
+ }
+
+ function dumpExpanded()
+ {
+ InspectorTest.dumpConsoleMessages();
+ InspectorTest.completeTest();
+ }
+}
+</script>
+</head>
+
+<body onload="runTest()">
+<p>Tests that console logging dumps properly when there are multiple custom formatters on the page</p>
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/inspector/console/console-custom-formatters-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698