| 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 a0885b062719fbe8015fd479304dca2f2208afbd..93f8d849b615d8f615fe88366ca3b34a8d1c760d 100644
|
| --- a/LayoutTests/inspector/console/console-object-preview.html
|
| +++ b/LayoutTests/inspector/console/console-object-preview.html
|
| @@ -63,6 +63,10 @@ function logToConsole()
|
|
|
| console.log("Object with a document.all property");
|
| console.log({all: document.all});
|
| +
|
| + console.log("Object with special numbers");
|
| + var obj = { nan: NaN, posInf: Infinity, negInf: -Infinity, negZero: -0 };
|
| + console.log(obj);
|
| }
|
|
|
| function test()
|
|
|