Changeset 57234 in webkit


Ignore:
Timestamp:
Apr 7, 2010 2:30:08 PM (14 years ago)
Author:
eric@webkit.org
Message:

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

Reviewed by Eric Seidel.

A few tests in fast/canvas/webgl failed randomly on Leopard Commit Bot
https://bugs.webkit.org/show_bug.cgi?id=37098

  • fast/canvas/webgl/resources/webgl-test.js: Turn off stencil/antialias by default. (create3DContext):
  • fast/canvas/webgl/script-tests/index-validation.js: By default antialias is off.
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r57231 r57234  
     12010-04-07  Zhenyao Mo  <zmo@google.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        A few tests in fast/canvas/webgl failed randomly on Leopard Commit Bot
     6        https://bugs.webkit.org/show_bug.cgi?id=37098
     7
     8        * fast/canvas/webgl/resources/webgl-test.js: Turn off stencil/antialias by default.
     9        (create3DContext):
     10        * fast/canvas/webgl/script-tests/index-validation.js: By default antialias is off.
     11
    1122010-04-07  Jaime Yap  <jaimeyap@google.com>
    213
  • trunk/LayoutTests/fast/canvas/webgl/resources/webgl-test.js

    r53238 r57234  
    1010
    1111function create3DContext(attrs) {
     12    // FIXME: setting default attributes back to all true when the driver bug is fixed.
     13    // https://bugs.webkit.org/show_bug.cgi?id=37098
     14    if (typeof(attrs) == "undefined")
     15        attrs = { stencil: false, antialias: false };
    1216    var canvas = document.createElement("canvas");
    1317    try {
  • trunk/LayoutTests/fast/canvas/webgl/script-tests/index-validation.js

    r57015 r57234  
    11description("Test of get calls against GL objects like getBufferParameter, etc.");
    22
    3 var gl = create3DContext({ antialias: false });
     3var gl = create3DContext();
    44var program = loadStandardProgram(gl);
    55
Note: See TracChangeset for help on using the changeset viewer.