The Tor Browser
/ file comparison
Search:
summary
shortlog
changelog
graph
tags
bookmarks
branches
files
help
file
revisions
annotate
diff
comparison
raw
comparison: js/src/tests/js1_8_5/regress/regress-635195.js
js/src/tests/js1_8_5/regress/regress-635195.js
branch
TOR_BUG_3246
changeset 7
129ffea94266
equal
deleted
inserted
replaced
-1:000000000000
0:81f81a4b979b
1
// Any copyright is dedicated to the Public Domain.
2
// http://creativecommons.org/licenses/publicdomain/
3
4
var obj = {set x(v) {}};
5
obj.watch("x", function() { delete obj.x; });
6
obj.x = "hi"; // don't assert
7
8
reportCompare(0, 0, 'ok');