| Index: LayoutTests/inspector/console/console-object-preview.html
|
| diff --git a/LayoutTests/inspector/console/console-object-preview.html b/LayoutTests/inspector/console/console-object-preview.html
|
| index ee42453bb2c8404e5bcca805d14629656b5e230d..9705e130ea589088cd306d698465fa369ed27556 100644
|
| --- a/LayoutTests/inspector/console/console-object-preview.html
|
| +++ b/LayoutTests/inspector/console/console-object-preview.html
|
| @@ -60,6 +60,10 @@ function logToConsole()
|
| obj[" "] = " ";
|
| obj["a\n\nb\nc"] = "a\n\nb\nc";
|
| console.log(obj);
|
| +
|
| + console.log("Object with special numbers");
|
| + var obj = { nan: NaN, posInf: Infinity, negInf: -Infinity, negZero: -0 };
|
| + console.log(obj);
|
| }
|
|
|
| function test()
|
|
|