Index: LayoutTests/inspector/console/console-format.html |
=================================================================== |
--- LayoutTests/inspector/console/console-format.html (revision 136037) |
+++ LayoutTests/inspector/console/console-format.html (working copy) |
@@ -12,6 +12,9 @@ |
console.log('Message format number %i, %d and %f', 1, 2, 3.5); |
console.log('Message %s for %s', 'format', 'string'); |
console.log('Object %o', {'foo' : 'bar' }); |
+ var foo = { foo: "foo"}; |
+ var bar = { bar: "bar" }; |
+ bar.__proto__ = foo; |
var array = ["test", "test2"]; array.length = 10; |
array.foo = {}; |
@@ -43,7 +46,7 @@ |
globals = [ |
regex1, regex2, str, str2, error, node, func, multilinefunc, num, linkify, |
null, undefined, valuelessAttribute, valuedAttribute, existingAttribute, throwingLengthGetter, |
- NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY, array |
+ NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY, array, {}, [function() {}], bar |
]; |
runTest(); |