OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 23017 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
23028 | 23028 |
23029 v8::Handle<Context> context = Context::New(isolate); | 23029 v8::Handle<Context> context = Context::New(isolate); |
23030 v8::Context::Scope context_scope(context); | 23030 v8::Context::Scope context_scope(context); |
23031 | 23031 |
23032 v8::Handle<v8::Object> obj = object_template->NewInstance(); | 23032 v8::Handle<v8::Object> obj = object_template->NewInstance(); |
23033 obj->Set(v8_str("key"), v8_str("value")); | 23033 obj->Set(v8_str("key"), v8_str("value")); |
23034 obj->Delete(v8_str("key")); | 23034 obj->Delete(v8_str("key")); |
23035 | 23035 |
23036 obj->SetHiddenValue(v8_str("hidden key 2"), v8_str("hidden value 2")); | 23036 obj->SetHiddenValue(v8_str("hidden key 2"), v8_str("hidden value 2")); |
23037 } | 23037 } |
| 23038 |
| 23039 |
| 23040 TEST(Regress411793) { |
| 23041 v8::Isolate* isolate = CcTest::isolate(); |
| 23042 v8::HandleScope handle_scope(isolate); |
| 23043 v8::Handle<v8::ObjectTemplate> object_template = |
| 23044 v8::ObjectTemplate::New(isolate); |
| 23045 object_template->SetAccessCheckCallbacks(NamedAccessCounter, |
| 23046 IndexedAccessCounter); |
| 23047 |
| 23048 v8::Handle<Context> context = Context::New(isolate); |
| 23049 v8::Context::Scope context_scope(context); |
| 23050 |
| 23051 context->Global()->Set(v8_str("o"), object_template->NewInstance()); |
| 23052 CompileRun( |
| 23053 "Object.defineProperty(o, 'key', " |
| 23054 " { get: function() {}, set: function() {} });"); |
| 23055 } |
OLD | NEW |