[Webkit-unassigned] [Bug 19523] delete does not work in javascript

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jul 2 02:31:20 PDT 2008


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





------- Comment #1 from oliver at apple.com  2008-07-02 02:31 PDT -------
var declarations aren't deletable, per spec.  Firefox agrees with this.  I
would close as invalid, but there is one case we do fuck up:

<script>
a = 1;
</script>
<script>
var a;
delete a;
alert(a);
</script>

the existing a should prevent the creation of a new static slot for a, so the
delete should succeed in this case.


-- 
Configure bugmail: https://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