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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-edit-property-value.html

Issue 2800573002: DevTools: editing property values should wrap object literals similar to console (Closed)
Patch Set: Created 3 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: third_party/WebKit/LayoutTests/inspector/console/console-edit-property-value.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-edit-property-value.html b/third_party/WebKit/LayoutTests/inspector/console/console-edit-property-value.html
index afe9694fe08e96845764b851c9755f6a5780379a..f4fcc8bbd28607194bdae02f81cf5cba525d9b72 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-edit-property-value.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-edit-property-value.html
@@ -6,7 +6,7 @@
function logToConsole()
{
- var obj = {a: 1, b: "foo", c: null};
+ var obj = {a: 1, b: "foo", c: null, d: 2};
console.log(obj);
}
@@ -42,6 +42,13 @@ var test = function()
function step5()
{
+ var valueElements = getValueElements();
+ doubleClickTypeAndEnter(valueElements[3], "{x: 2}");
+ InspectorTest.waitForRemoteObjectsConsoleMessages(step6);
+ }
+
+ function step6()
+ {
InspectorTest.dumpConsoleMessagesIgnoreErrorStackFrames();
InspectorTest.completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698