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 22982 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
22993 desc = x->GetOwnPropertyDescriptor(v8_str("p1")); | 22993 desc = x->GetOwnPropertyDescriptor(v8_str("p1")); |
22994 Local<Function> set = | 22994 Local<Function> set = |
22995 Local<Function>::Cast(Local<Object>::Cast(desc)->Get(v8_str("set"))); | 22995 Local<Function>::Cast(Local<Object>::Cast(desc)->Get(v8_str("set"))); |
22996 Local<Function> get = | 22996 Local<Function> get = |
22997 Local<Function>::Cast(Local<Object>::Cast(desc)->Get(v8_str("get"))); | 22997 Local<Function>::Cast(Local<Object>::Cast(desc)->Get(v8_str("get"))); |
22998 CHECK_EQ(v8_num(13), get->Call(x, 0, NULL)); | 22998 CHECK_EQ(v8_num(13), get->Call(x, 0, NULL)); |
22999 Handle<Value> args[] = { v8_num(14) }; | 22999 Handle<Value> args[] = { v8_num(14) }; |
23000 set->Call(x, 1, args); | 23000 set->Call(x, 1, args); |
23001 CHECK_EQ(v8_num(14), get->Call(x, 0, NULL)); | 23001 CHECK_EQ(v8_num(14), get->Call(x, 0, NULL)); |
23002 } | 23002 } |
| 23003 |
| 23004 |
| 23005 TEST(Regress411877) { |
| 23006 v8::Isolate* isolate = CcTest::isolate(); |
| 23007 v8::HandleScope handle_scope(isolate); |
| 23008 v8::Handle<v8::ObjectTemplate> object_template = |
| 23009 v8::ObjectTemplate::New(isolate); |
| 23010 object_template->SetAccessCheckCallbacks(NamedAccessCounter, |
| 23011 IndexedAccessCounter); |
| 23012 |
| 23013 v8::Handle<Context> context = Context::New(isolate); |
| 23014 v8::Context::Scope context_scope(context); |
| 23015 |
| 23016 context->Global()->Set(v8_str("o"), object_template->NewInstance()); |
| 23017 CompileRun("Object.getOwnPropertyNames(o)"); |
| 23018 } |
OLD | NEW |