OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "public/web/WebFrame.h" | 42 #include "public/web/WebFrame.h" |
43 #include "public/web/WebView.h" | 43 #include "public/web/WebView.h" |
44 #include "v8.h" | 44 #include "v8.h" |
45 #include "web/WebLocalFrameImpl.h" | 45 #include "web/WebLocalFrameImpl.h" |
46 #include "web/WebViewImpl.h" | 46 #include "web/WebViewImpl.h" |
47 #include "web/tests/FrameTestHelpers.h" | 47 #include "web/tests/FrameTestHelpers.h" |
48 | 48 |
49 #include <gtest/gtest.h> | 49 #include <gtest/gtest.h> |
50 | 50 |
51 using namespace blink; | 51 using namespace blink; |
52 using namespace blink; | |
53 | 52 |
54 namespace { | 53 namespace { |
55 | 54 |
56 class TestListener : public V8AbstractEventListener { | 55 class TestListener : public V8AbstractEventListener { |
57 public: | 56 public: |
58 virtual bool operator==(const EventListener&) | 57 virtual bool operator==(const EventListener&) |
59 { | 58 { |
60 return true; | 59 return true; |
61 } | 60 } |
62 | 61 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 V8TestingScope scope(isolate); | 108 V8TestingScope scope(isolate); |
110 customEvent.initCustomEvent("blah", false, false, WebSerializedScriptValue::
serialize(v8::Boolean::New(isolate, true))); | 109 customEvent.initCustomEvent("blah", false, false, WebSerializedScriptValue::
serialize(v8::Boolean::New(isolate, true))); |
111 RefPtr<EventListener> listener = TestListener::create(scope.scriptState()); | 110 RefPtr<EventListener> listener = TestListener::create(scope.scriptState()); |
112 frame->frame()->document()->addEventListener("blah", listener, false); | 111 frame->frame()->document()->addEventListener("blah", listener, false); |
113 frame->frame()->document()->dispatchEvent(event); | 112 frame->frame()->document()->dispatchEvent(event); |
114 | 113 |
115 Platform::current()->unitTestSupport()->unregisterAllMockedURLs(); | 114 Platform::current()->unitTestSupport()->unregisterAllMockedURLs(); |
116 } | 115 } |
117 | 116 |
118 } | 117 } |
OLD | NEW |