| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "bindings/core/v8/ScriptPromise.h" | 31 #include "bindings/core/v8/ScriptPromise.h" |
| 32 | 32 |
| 33 #include "bindings/core/v8/IDLTypes.h" | 33 #include "bindings/core/v8/IDLTypes.h" |
| 34 #include "bindings/core/v8/NativeValueTraitsImpl.h" | 34 #include "bindings/core/v8/NativeValueTraitsImpl.h" |
| 35 #include "bindings/core/v8/ScriptFunction.h" | 35 #include "bindings/core/v8/ScriptFunction.h" |
| 36 #include "bindings/core/v8/ScriptValue.h" | 36 #include "bindings/core/v8/ScriptValue.h" |
| 37 #include "bindings/core/v8/V8Binding.h" | 37 #include "bindings/core/v8/V8BindingForCore.h" |
| 38 #include "bindings/core/v8/V8BindingForTesting.h" | 38 #include "bindings/core/v8/V8BindingForTesting.h" |
| 39 #include "core/dom/DOMException.h" | 39 #include "core/dom/DOMException.h" |
| 40 #include "core/dom/ExceptionCode.h" | 40 #include "core/dom/ExceptionCode.h" |
| 41 #include "core/testing/NullExecutionContext.h" | 41 #include "core/testing/NullExecutionContext.h" |
| 42 #include "testing/gtest/include/gtest/gtest.h" | 42 #include "testing/gtest/include/gtest/gtest.h" |
| 43 #include "v8/include/v8.h" | 43 #include "v8/include/v8.h" |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 namespace { | 47 namespace { |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 v8::MicrotasksScope::PerformCheckpoint(scope.GetIsolate()); | 362 v8::MicrotasksScope::PerformCheckpoint(scope.GetIsolate()); |
| 363 | 363 |
| 364 EXPECT_TRUE(on_fulfilled.IsEmpty()); | 364 EXPECT_TRUE(on_fulfilled.IsEmpty()); |
| 365 EXPECT_FALSE(on_rejected.IsEmpty()); | 365 EXPECT_FALSE(on_rejected.IsEmpty()); |
| 366 EXPECT_EQ("world", ToString(scope.GetContext(), on_rejected)); | 366 EXPECT_EQ("world", ToString(scope.GetContext(), on_rejected)); |
| 367 } | 367 } |
| 368 | 368 |
| 369 } // namespace | 369 } // namespace |
| 370 | 370 |
| 371 } // namespace blink | 371 } // namespace blink |
| OLD | NEW |