OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 12 matching lines...) Expand all Loading... |
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 */ | 24 */ |
25 | 25 |
26 #include "config.h" | 26 #include "config.h" |
27 #include "Document.h" | 27 #include "Document.h" |
28 #include "Frame.h" | 28 #include "Frame.h" |
29 #include "FrameTestHelpers.h" | 29 #include "FrameTestHelpers.h" |
30 #include "IDBBindingUtilities.h" | 30 #include "IDBBindingUtilities.h" |
31 #include "IDBKey.h" | 31 #include "IDBKey.h" |
32 #include "IDBKeyPath.h" | 32 #include "IDBKeyPath.h" |
| 33 #include "ScriptController.h" |
33 #include "V8Binding.h" | 34 #include "V8Binding.h" |
34 #include "V8PerIsolateData.h" | 35 #include "V8PerIsolateData.h" |
35 #include "V8Utilities.h" | 36 #include "V8Utilities.h" |
36 #include "WebFrame.h" | 37 #include "WebFrame.h" |
37 #include "WebFrameImpl.h" | 38 #include "WebFrameImpl.h" |
38 #include "WebView.h" | 39 #include "WebView.h" |
39 #include "WorldContextHandle.h" | 40 #include "WorldContextHandle.h" |
40 | 41 |
41 #include <gtest/gtest.h> | 42 #include <gtest/gtest.h> |
42 #include <wtf/Vector.h> | 43 #include <wtf/Vector.h> |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 checkInjection(IDBKey::createDate(4567), scriptObject, "foo.baz"); | 203 checkInjection(IDBKey::createDate(4567), scriptObject, "foo.baz"); |
203 checkInjection(IDBKey::createDate(4567), scriptObject, "bar"); | 204 checkInjection(IDBKey::createDate(4567), scriptObject, "bar"); |
204 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "foo.b
az"); | 205 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "foo.b
az"); |
205 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "bar")
; | 206 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "bar")
; |
206 | 207 |
207 checkInjectionFails(IDBKey::createString("zoo"), scriptObject, "foo.bar.baz"
); | 208 checkInjectionFails(IDBKey::createString("zoo"), scriptObject, "foo.bar.baz"
); |
208 checkInjection(IDBKey::createString("zoo"), scriptObject, "foo.xyz.foo"); | 209 checkInjection(IDBKey::createString("zoo"), scriptObject, "foo.xyz.foo"); |
209 } | 210 } |
210 | 211 |
211 } // namespace | 212 } // namespace |
OLD | NEW |