Changeset 84390 in webkit


Ignore:
Timestamp:
Apr 20, 2011 10:06:57 AM (13 years ago)
Author:
mdelaney@apple.com
Message:

2011-04-20 Matthew Delaney <mdelaney@apple.com>

Reviewed by Dan Bernstein.

Update fast/canvas/font-update.html to use dumpAsText.
https://bugs.webkit.org/show_bug.cgi?id=59003

  • fast/canvas/font-update-expected.txt:
  • fast/canvas/font-update.html: This test is only useful as a pixel test. Dumping the render tree will always show the same thing regardless of what's done on the canvas in the test. However, with new render tree schemes (canvases in layers and such) the render trees will even look different but not actually failing what the test tests.
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r84387 r84390  
     12011-04-20  Matthew Delaney  <mdelaney@apple.com>
     2
     3        Reviewed by Dan Bernstein.
     4
     5        Update fast/canvas/font-update.html to use dumpAsText.
     6        https://bugs.webkit.org/show_bug.cgi?id=59003
     7
     8        * fast/canvas/font-update-expected.txt:
     9        * fast/canvas/font-update.html: This test is only useful as a pixel test. Dumping the render tree will always show the same thing regardless of what's done on the canvas in the test. However, with new render tree schemes (canvases in layers and such) the render trees will even look different but not actually failing what the test tests.
     10
    1112011-04-20  Mike Reed  <reed@google.com>
    212
  • trunk/LayoutTests/fast/canvas/font-update-expected.txt

    r83396 r84390  
    1 layer at (0,0) size 800x600
    2   RenderView at (0,0) size 800x600
    3 layer at (0,0) size 800x600
    4   RenderBlock {HTML} at (0,0) size 800x600
    5     RenderBody {BODY} at (8,8) size 784x584
    6       RenderText {#text} at (0,0) size 0x0
    7       RenderText {#text} at (0,0) size 0x0
    8       RenderHTMLCanvas {CANVAS} at (0,0) size 300x150
     1
  • trunk/LayoutTests/fast/canvas/font-update.html

    r83396 r84390  
    1414    ctx.fillStyle = "green";
    1515    canvas.parentNode.removeChild(canvas);
    16     if (window.layoutTestController)
     16    if (window.layoutTestController) {
     17        layoutTestController.dumpAsText(true);
    1718        layoutTestController.waitUntilDone();
     19        }
    1820    setTimeout(function()
    1921    {
Note: See TracChangeset for help on using the changeset viewer.