[Webkit-unassigned] [Bug 14771] Mostly reproducible crash in modified celtickane benchmark

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jul 29 03:34:07 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=14771





------- Comment #4 from john at johnmoe.com  2007-07-29 03:34 PDT -------
Two simpler(?) examples of the same problem:
var x =
"0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789";

for (var i = 0; i < 100000000; i++) {
   x = 'aaaaaaaaaaaaaaaaaaaa' + x.slice(0,x.length-20);
}

and

var x =
"0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789";

for (var i = 0; i < 100000000; i++) {
   x = x.slice(20,x.length) + 'aaaaaaaaaaaaaaaaaaaa';
}


-- 
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