Changeset 57015 in webkit


Ignore:
Timestamp:
Apr 2, 2010 12:21:53 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-02 Zhenyao Mo <zmo@google.com>

Reviewed by Eric Seidel.

fast/canvas/webgl/index-validation.html failed on Leopard Commit Bot
https://bugs.webkit.org/show_bug.cgi?id=36908

  • fast/canvas/webgl/index-validation-expected.txt: Gathering more information about the cause of the failure. It's not a fix, and it won't worse change the current test behavior either, i.e., it won't make it better or worse.
  • fast/canvas/webgl/script-tests/index-validation.js: Ditto.
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r57013 r57015  
     12010-04-02  Zhenyao Mo  <zmo@google.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        fast/canvas/webgl/index-validation.html failed on Leopard Commit Bot
     6        https://bugs.webkit.org/show_bug.cgi?id=36908
     7
     8        * fast/canvas/webgl/index-validation-expected.txt: Gathering more information about the cause of the failure.  It's not a fix, and it won't worse change the current test behavior either, i.e., it won't make it better or worse.
     9        * fast/canvas/webgl/script-tests/index-validation.js: Ditto.
     10
    1112010-04-02  Kent Tamura  <tkent@chromium.org>
    212
  • trunk/LayoutTests/fast/canvas/webgl/index-validation-expected.txt

    r51400 r57015  
    33On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
    44
     5PASS gl.checkFramebufferStatus(gl.FRAMEBUFFER) is gl.FRAMEBUFFER_COMPLETE
    56PASS gl.getError() is 0
    67PASS gl.drawElements(gl.TRIANGLES, 3, gl.UNSIGNED_SHORT, 0) is undefined.
  • trunk/LayoutTests/fast/canvas/webgl/script-tests/index-validation.js

    r56925 r57015  
    2626gl.vertexAttribPointer(normalLoc, 3, gl.FLOAT, false, 7 * gl.sizeInBytes(gl.FLOAT), 3 * gl.sizeInBytes(gl.FLOAT));
    2727gl.enableVertexAttribArray(normalLoc);
     28shouldBe('gl.checkFramebufferStatus(gl.FRAMEBUFFER)', 'gl.FRAMEBUFFER_COMPLETE');
    2829shouldBe('gl.getError()', '0');
    2930shouldBeUndefined('gl.drawElements(gl.TRIANGLES, 3, gl.UNSIGNED_SHORT, 0)');
Note: See TracChangeset for help on using the changeset viewer.