1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#define STRSAFE_NO_DEPRECATE
#include "webkit/glue/plugins/test/plugin_windowless_test.h"
#include "webkit/glue/plugins/test/plugin_client.h"
namespace NPAPIClient {
WindowlessPluginTest::WindowlessPluginTest(
NPP id, NPNetscapeFuncs *host_functions, const std::string& test_name)
: PluginTest(id, host_functions),
test_name_(test_name) {
}
int16 WindowlessPluginTest::HandleEvent(void* event) {
NPNetscapeFuncs* browser = NPAPIClient::PluginClient::HostFunctions();
NPBool supports_windowless = 0;
NPError result = browser->getvalue(id(), NPNVSupportsWindowless,
&supports_windowless);
if ((result != NPERR_NO_ERROR) || (supports_windowless != TRUE)) {
SetError("Failed to read NPNVSupportsWindowless value");
SignalTestCompleted();
return PluginTest::HandleEvent(event);
}
NPEvent* np_event = reinterpret_cast<NPEvent*>(event);
if (WM_PAINT == np_event->event &&
test_name_ == "execute_script_delete_in_paint") {
HDC paint_dc = reinterpret_cast<HDC>(np_event->wParam);
if (paint_dc == NULL) {
SetError("Invalid Window DC passed to HandleEvent for WM_PAINT");
SignalTestCompleted();
return NPERR_GENERIC_ERROR;
}
HRGN clipping_region = CreateRectRgn(0, 0, 0, 0);
if (!GetClipRgn(paint_dc, clipping_region)) {
SetError("No clipping region set in window DC");
DeleteObject(clipping_region);
SignalTestCompleted();
return NPERR_GENERIC_ERROR;
}
DeleteObject(clipping_region);
NPUTF8* urlString = "javascript:DeletePluginWithinScript()";
NPUTF8* targetString = NULL;
browser->geturl(id(), urlString, targetString);
SignalTestCompleted();
} else if (WM_MOUSEMOVE == np_event->event &&
test_name_ == "execute_script_delete_in_mouse_move") {
std::string script = "javascript:DeletePluginWithinScript()";
NPString script_string;
script_string.UTF8Characters = script.c_str();
script_string.UTF8Length = static_cast<unsigned int>(script.length());
NPObject *window_obj = NULL;
browser->getvalue(id(), NPNVWindowNPObject, &window_obj);
NPVariant result_var;
NPError result = browser->evaluate(id(), window_obj,
&script_string, &result_var);
SignalTestCompleted();
} else if (WM_LBUTTONUP == np_event->event &&
test_name_ == "delete_frame_test") {
std::string script =
"javascript:parent.document.getElementById('frame').outerHTML = ''";
NPString script_string;
script_string.UTF8Characters = script.c_str();
script_string.UTF8Length = static_cast<unsigned int>(script.length());
NPObject *window_obj = NULL;
browser->getvalue(id(), NPNVWindowNPObject, &window_obj);
NPVariant result_var;
NPError result = browser->evaluate(id(), window_obj,
&script_string, &result_var);
}
// If this test failed, then we'd have crashed by now.
return PluginTest::HandleEvent(event);
}
} // namespace NPAPIClient
|