[Webkit-unassigned] [Bug 58726] New: ASSERT failure when svg <use> element changes href

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Apr 16 01:27:39 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=58726

           Summary: ASSERT failure when svg <use> element changes href
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: All
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: SVG
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: leoyang.webkit at gmail.com
                CC: zimmermann at kde.org, krit at webkit.org


ASSERT failure in SVGUseElement.cpp:509 when load the following document.

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">

<g>
    <use id="use" xlink:href="#rect" />
</g>

<defs>
    <rect id="rect" x="0" y="0" width="100" height="60" />
</defs>

<script>
    if (window.layoutTestController)
        layoutTestController.waitUntilDone();

    function runTest()
    {   
        document.getElementById("use").setAttribute("xlink:href", "");
        if (window.layoutTestController)
            layoutTestController.notifyDone();
    }   

    window.setTimeout("runTest()", 0); 
</script>

</svg>

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list