From 3d476cf047d6a463d5706f70bfdf5e3787f863ee Mon Sep 17 00:00:00 2001 From: "gman@google.com" Date: Wed, 17 Jun 2009 06:13:42 +0000 Subject: Undoing gcl bug damage git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18598 0039d316-1c4b-4281-b951-d872f2087c98 --- o3d/tests/selenium/javascript_unit_test_list.txt | 4 +- o3d/tests/selenium/tests/param-array-test.html | 307 ----------------------- o3d/tests/selenium/tests/texture-set-test.html | 9 +- 3 files changed, 6 insertions(+), 314 deletions(-) delete mode 100644 o3d/tests/selenium/tests/param-array-test.html (limited to 'o3d/tests') diff --git a/o3d/tests/selenium/javascript_unit_test_list.txt b/o3d/tests/selenium/javascript_unit_test_list.txt index f73c951..090ffe2 100644 --- a/o3d/tests/selenium/javascript_unit_test_list.txt +++ b/o3d/tests/selenium/javascript_unit_test_list.txt @@ -70,8 +70,8 @@ small base-test small util-test small pixel-perfection screenshot pdiff_threshold(2500) pdiff_threshold_mac(3000) except(*iexplore) medium offscreen-test -medium texture-set-test screenshot -#medium param-array-test screenshot +# TODO Temporarily removing until its fixed on mac +#medium texture-set-test screenshot small no-rendergraph screenshot small non-cachable-params screenshot pdiff_threshold(1700) small type-test diff --git a/o3d/tests/selenium/tests/param-array-test.html b/o3d/tests/selenium/tests/param-array-test.html deleted file mode 100644 index aca7d0f..0000000 --- a/o3d/tests/selenium/tests/param-array-test.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - - - - -Param Array Test. - - - - - -

Param Array Test

-
- - -
- - - - - diff --git a/o3d/tests/selenium/tests/texture-set-test.html b/o3d/tests/selenium/tests/texture-set-test.html index a421e5f..a58d024 100644 --- a/o3d/tests/selenium/tests/texture-set-test.html +++ b/o3d/tests/selenium/tests/texture-set-test.html @@ -92,12 +92,11 @@ function initStep2(clientElements) { var clientWidth = g_client.width; var clientHeight = g_client.height; - // The + 0.5 makes this pixel aligned. g_viewInfo.drawContext.projection = g_math.matrix4.orthographic( - -clientWidth * 0.5 + 0.5, - clientWidth * 0.5 + 0.5, - -clientHeight * 0.5 + 0.5, - clientHeight * 0.5 + 0.5, + -clientWidth * 0.5, + clientWidth * 0.5, + -clientHeight * 0.5, + clientHeight * 0.5, 0.001, 1000); g_viewInfo.drawContext.view = g_math.matrix4.lookAt( -- cgit v1.1