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

Side by Side Diff: test/cctest/test-api.cc

Issue 22802013: Remove access-check-failed callback after test. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: added comment Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 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 20153 matching lines...) Expand 10 before | Expand all | Expand 10 after
20164 CheckCorrectThrow("%DeleteProperty(other, 'x', 0)"); 20164 CheckCorrectThrow("%DeleteProperty(other, 'x', 0)");
20165 CheckCorrectThrow("%DeleteProperty(other, '1', 0)"); 20165 CheckCorrectThrow("%DeleteProperty(other, '1', 0)");
20166 CheckCorrectThrow("%HasLocalProperty(other, 'x')"); 20166 CheckCorrectThrow("%HasLocalProperty(other, 'x')");
20167 CheckCorrectThrow("%HasProperty(other, 'x')"); 20167 CheckCorrectThrow("%HasProperty(other, 'x')");
20168 CheckCorrectThrow("%HasElement(other, 1)"); 20168 CheckCorrectThrow("%HasElement(other, 1)");
20169 CheckCorrectThrow("%IsPropertyEnumerable(other, 'x')"); 20169 CheckCorrectThrow("%IsPropertyEnumerable(other, 'x')");
20170 CheckCorrectThrow("%GetPropertyNames(other)"); 20170 CheckCorrectThrow("%GetPropertyNames(other)");
20171 CheckCorrectThrow("%GetLocalPropertyNames(other, true)"); 20171 CheckCorrectThrow("%GetLocalPropertyNames(other, true)");
20172 CheckCorrectThrow("%DefineOrRedefineAccessorProperty(" 20172 CheckCorrectThrow("%DefineOrRedefineAccessorProperty("
20173 "other, 'x', null, null, 1)"); 20173 "other, 'x', null, null, 1)");
20174
20175 // Reset the failed access check callback so it does not influence
20176 // the other tests.
20177 v8::V8::SetFailedAccessCheckCallbackFunction(NULL);
20174 } 20178 }
20175 20179
20176 #endif // WIN32 20180 #endif // WIN32
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698