Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(866)

Unified Diff: test/mjsunit/regress/regress-crbug-148376.js

Issue 10907233: Merged r12485, r12486, r12491, r12494, r12495 into trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/regress/regress-148378.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-crbug-148376.js
diff --git a/test/mjsunit/regress/regress-2119.js b/test/mjsunit/regress/regress-crbug-148376.js
similarity index 90%
copy from test/mjsunit/regress/regress-2119.js
copy to test/mjsunit/regress/regress-crbug-148376.js
index 54840c238b977590ba3c850c6fa9d5f1a3c5fe34..55bb5f16fa79870973e4c347420210460672767d 100644
--- a/test/mjsunit/regress/regress-2119.js
+++ b/test/mjsunit/regress/regress-crbug-148376.js
@@ -25,12 +25,11 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-// Flags: --nouse-ic
-
-function strict_function() {
- "use strict"
- undeclared = 1;
+function defineSetter(o) {
+ o.__defineSetter__('property', function() {});
}
-assertThrows(strict_function);
-
+defineSetter(Object.prototype);
+property = 0;
+defineSetter(this);
+var keys = Object.keys(this);
« no previous file with comments | « test/mjsunit/regress/regress-148378.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698