Modified: trunk/LayoutTests/ChangeLog (145779 => 145780)
--- trunk/LayoutTests/ChangeLog 2013-03-14 01:54:09 UTC (rev 145779)
+++ trunk/LayoutTests/ChangeLog 2013-03-14 02:15:00 UTC (rev 145780)
@@ -1,3 +1,15 @@
+2013-03-13 Dean Jackson <d...@apple.com>
+
+ [WebGL] array-bounds-clamping should use less dramatic numbers
+ https://bugs.webkit.org/show_bug.cgi?id=112298
+ <rdar://problem/13415829>
+
+ Reviewed by Ken Russell.
+
+ Replace Number.MAX_VALUE with a non-infinite number.
+
+ * fast/canvas/webgl/array-bounds-clamping.html:
+
2013-03-13 Tim Horton <timothy_hor...@apple.com>
Make lint-test-expectations happy with the Apple-Windows TestExpectations files
Modified: trunk/LayoutTests/fast/canvas/webgl/array-bounds-clamping.html (145779 => 145780)
--- trunk/LayoutTests/fast/canvas/webgl/array-bounds-clamping.html 2013-03-14 01:54:09 UTC (rev 145779)
+++ trunk/LayoutTests/fast/canvas/webgl/array-bounds-clamping.html 2013-03-14 02:15:00 UTC (rev 145780)
@@ -67,7 +67,7 @@
// limits on each side, near the limits, and the
// exact limits.
// This should be clamped to [0, 0, 0, 7, 7, 7]
- new Float32Array([ -Number.MAX_VALUE, -1, 0, 7, 8, Number.MAX_VALUE]),
+ new Float32Array([ -123456789, -1, 0, 7, 8, 123456789]),
gl.STATIC_DRAW);
gl.enableVertexAttribArray(1);
gl.vertexAttribPointer(1, 1, gl.FLOAT, false, 0, 0);