Index: LayoutTests/inspector/console/console-format.html |
diff --git a/LayoutTests/inspector/console/console-format.html b/LayoutTests/inspector/console/console-format.html |
index fbba233f8fc3470a4820c4541a61d40d07f4533a..4357ec257cd5b510d8a6f5fd03a118eefc2858f3 100644 |
--- a/LayoutTests/inspector/console/console-format.html |
+++ b/LayoutTests/inspector/console/console-format.html |
@@ -50,12 +50,13 @@ function onload() |
getFoo: { value: function() { return this.foo; } }, |
bar: { get: function() { return this.bar; }, set: function(x) { this.bar = x; } } |
}); |
+ var negZero = 1 / Number.NEGATIVE_INFINITY; |
globals = [ |
regex1, regex2, str, str2, error, errorWithMessage, node, func, multilinefunc, num, linkify, |
null, undefined, valuelessAttribute, valuedAttribute, existingAttribute, throwingLengthGetter, |
NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY, array, {}, [function() {}], bar, svg, |
- objectWithNonEnumerables, Object.create(null), Object, Object.prototype |
+ objectWithNonEnumerables, negZero, Object.create(null), Object, Object.prototype |
]; |
runTest(); |