| 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();
|
| }
|
|
|