| Index: third_party/WebKit/LayoutTests/inspector/console/console-format-table.html | 
| diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-format-table.html b/third_party/WebKit/LayoutTests/inspector/console/console-format-table.html | 
| index 8fc891a6ca07fa5bcb4c7536ed91be777d3a5e59..4fb1897521fe753e4fe898223e962a15ed2da0f4 100644 | 
| --- a/third_party/WebKit/LayoutTests/inspector/console/console-format-table.html | 
| +++ b/third_party/WebKit/LayoutTests/inspector/console/console-format-table.html | 
| @@ -41,6 +41,12 @@ function logToConsole() | 
|  | 
| console.log("Missing column name"); | 
| console.table([{a:1, b:2, c:3}, {a:"foo"}], ["d"]); | 
| + | 
| +    console.log("Shallow array"); | 
| +    console.table([1, "foo", null]); | 
| + | 
| +    console.log("Deep and shallow array"); | 
| +    console.table([1, "foo", [2]]); | 
| } | 
|  | 
| function onload() | 
|  |