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

Side by Side Diff: test/unittests/api/remote-object-unittest.cc

Issue 2677653002: Fix receiver checks for v8::Function on a remote context. (Closed)
Patch Set: . Created 3 years, 10 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 unified diff | Download patch
« no previous file with comments | « test/cctest/test-access-checks.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 the V8 project authors. All rights reserved. 1 // Copyright 2017 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "testing/gtest/include/gtest/gtest.h" 5 #include "testing/gtest/include/gtest/gtest.h"
6 6
7 #include "include/v8.h" 7 #include "include/v8.h"
8 #include "test/unittests/test-utils.h" 8 #include "test/unittests/test-utils.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 AccessCheck, NamedPropertyHandlerConfiguration(NamedGetter), 60 AccessCheck, NamedPropertyHandlerConfiguration(NamedGetter),
61 IndexedPropertyHandlerConfiguration()); 61 IndexedPropertyHandlerConfiguration());
62 constructor_template->Inherit(parent_template); 62 constructor_template->Inherit(parent_template);
63 63
64 Local<Object> remote_context = 64 Local<Object> remote_context =
65 Context::NewRemoteContext(isolate(), 65 Context::NewRemoteContext(isolate(),
66 constructor_template->InstanceTemplate()) 66 constructor_template->InstanceTemplate())
67 .ToLocalChecked(); 67 .ToLocalChecked();
68 EXPECT_TRUE(parent_template->HasInstance(remote_context)); 68 EXPECT_TRUE(parent_template->HasInstance(remote_context));
69 EXPECT_TRUE(constructor_template->HasInstance(remote_context)); 69 EXPECT_TRUE(constructor_template->HasInstance(remote_context));
70
71 EXPECT_EQ(remote_context,
72 remote_context->FindInstanceInPrototypeChain(parent_template));
73 EXPECT_EQ(remote_context,
74 remote_context->FindInstanceInPrototypeChain(constructor_template));
75 } 70 }
76 71
77 } // namespace v8 72 } // namespace v8
OLDNEW
« no previous file with comments | « test/cctest/test-access-checks.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698