[Webkit-unassigned] [Bug 13751] New: Crash on double-click
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed May 16 12:26:41 PDT 2007
http://bugs.webkit.org/show_bug.cgi?id=13751
Summary: Crash on double-click
Product: WebKit
Version: 522+ (nightly)
Platform: Macintosh
OS/Version: Mac OS X 10.4
Status: UNCONFIRMED
Severity: Normal
Priority: P2
Component: SVG
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: gera.weiss at gmail.com
Webkit crashes when I double click the text in the following SVG.
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" onload="init()">
<script><![CDATA[
var flag=1;
var c;
function init() {
c= document.getElementById("use")
setInterval("loop()",250);
}
function loop() {
c.setAttributeNS("http://www.w3.org/1999/xlink","href","#rec"+flag)
flag=1-flag;
}
]]>
</script>
<symbol shape-rendering="optimizeSpeed" id="rec0" viewBox="0 0 64 64">
<rect width="59" height="59" x="5" y="5" fill="red" />
<text x="17" y="56" font-size="60" pointer-events="none" > A </text>
</symbol>
<symbol shape-rendering="optimizeSpeed" id="rec1" viewBox="0 0 64 64">
<rect width="59" height="59" x="5" y="5" fill="magenta" />
<text x="17" y="56" font-size="60" pointer-events="none" > B </text>
</symbol>
<use id="use" xlink:href="#rec0"/>
</svg>
--
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list