Changeset 73005 in webkit


Ignore:
Timestamp:
Nov 30, 2010 7:38:33 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-11-30 Rob Buis <rwlbuis@gmail.com>

Reviewed by Xan Lopez.

[gtk] SVGLineElement-dom-requiredFeatures.html and
SVGLineElement-svgdom-requiredFeatures.html failing in the bots
https://bugs.webkit.org/show_bug.cgi?id=49529

Replaced fill with stroke and increased the line size. This fixes
the problem clicking the element.

  • platform/gtk/Skipped:
  • svg/dynamic-updates/script-tests/SVGLineElement-dom-requiredFeatures.js:
  • svg/dynamic-updates/script-tests/SVGLineElement-svgdom-requiredFeatures.js:
Location:
trunk/LayoutTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r73001 r73005  
     12010-11-30  Rob Buis  <rwlbuis@gmail.com>
     2
     3        Reviewed by Xan Lopez.
     4
     5        [gtk] SVGLineElement-dom-requiredFeatures.html and
     6        SVGLineElement-svgdom-requiredFeatures.html failing in the bots
     7        https://bugs.webkit.org/show_bug.cgi?id=49529
     8
     9        Replaced fill with stroke and increased the line size. This fixes
     10        the problem clicking the element.
     11
     12        * platform/gtk/Skipped:
     13        * svg/dynamic-updates/script-tests/SVGLineElement-dom-requiredFeatures.js:
     14        * svg/dynamic-updates/script-tests/SVGLineElement-svgdom-requiredFeatures.js:
     15
    1162010-11-30  Ojan Vafai  <ojan@chromium.org>
    217
  • trunk/LayoutTests/platform/gtk/Skipped

    r72977 r73005  
    55495549animations/stop-animation-on-suspend.html
    55505550
    5551 # https://bugs.webkit.org/show_bug.cgi?id=49529
    5552 svg/dynamic-updates/SVGLineElement-dom-requiredFeatures.html
    5553 svg/dynamic-updates/SVGLineElement-svgdom-requiredFeatures.html
    5554 
    55555551# computedStyleIncludingVisitedInfo is not implemented
    55565552# https://bugs.webkit.org/show_bug.cgi?id=37336
  • trunk/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-dom-requiredFeatures.js

    r71969 r73005  
    99lineElement.setAttribute("x2", "200");
    1010lineElement.setAttribute("y2", "200");
    11 lineElement.setAttribute("fill", "green");
     11lineElement.setAttribute("stroke", "green");
     12lineElement.setAttribute("stroke-width", "10px");
    1213
    1314rootSVGElement.appendChild(lineElement);
  • trunk/LayoutTests/svg/dynamic-updates/script-tests/SVGLineElement-svgdom-requiredFeatures.js

    r71969 r73005  
    99lineElement.setAttribute("x2", "200");
    1010lineElement.setAttribute("y2", "200");
    11 lineElement.setAttribute("fill", "green");
     11lineElement.setAttribute("stroke", "green");
     12lineElement.setAttribute("stroke-width", "10px");
    1213
    1314rootSVGElement.appendChild(lineElement);
Note: See TracChangeset for help on using the changeset viewer.