Changeset 58090 in webkit


Ignore:
Timestamp:
Apr 22, 2010 5:28:44 AM (14 years ago)
Author:
eric@webkit.org
Message:

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

Reviewed by Eric Seidel.

Turn on antialias and stencil as default canvas attributes.
https://bugs.webkit.org/show_bug.cgi?id=36972

  • fast/canvas/webgl/resources/webgl-test.js: (create3DContext): Turn on antialias and stencil as default canvas attributes.
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r58085 r58090  
     12010-04-22  Zhenyao Mo  <zmo@google.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Turn on antialias and stencil as default canvas attributes.
     6        https://bugs.webkit.org/show_bug.cgi?id=36972 
     7
     8        * fast/canvas/webgl/resources/webgl-test.js:
     9        (create3DContext): Turn on antialias and stencil as default canvas attributes.
     10
    1112010-04-22  Kenneth Rohde Christiansen  <kenneth@webkit.org>
    212
  • trunk/LayoutTests/fast/canvas/webgl/resources/webgl-test.js

    r57234 r58090  
    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 };
    1612    var canvas = document.createElement("canvas");
    1713    try {
Note: See TracChangeset for help on using the changeset viewer.