summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/webui/webview_execute_script_test.js
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/data/webui/webview_execute_script_test.js')
-rw-r--r--chrome/test/data/webui/webview_execute_script_test.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/chrome/test/data/webui/webview_execute_script_test.js b/chrome/test/data/webui/webview_execute_script_test.js
new file mode 100644
index 0000000..e0a4c80c
--- /dev/null
+++ b/chrome/test/data/webui/webview_execute_script_test.js
@@ -0,0 +1,32 @@
+// Copyright 2015 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.
+
+function createWebview() {
+ var webview = document.createElement('webview');
+ document.body.appendChild(webview);
+ return webview;
+}
+
+function testExecuteScriptCode(url) {
+ var webview = createWebview();
+
+ var onGetBackgroundExecuted = function(results) {
+ chrome.send('testResult', [results.length == 1 && results[0] == 'red']);
+ };
+
+ var onSetBackgroundExecuted = function() {
+ webview.executeScript({
+ code: 'document.body.style.backgroundColor;'
+ }, onGetBackgroundExecuted);
+ };
+
+ var onLoadStop = function() {
+ webview.executeScript({
+ code: 'document.body.style.backgroundColor = \'red\';'
+ }, onSetBackgroundExecuted);
+ };
+
+ webview.addEventListener('loadstop', onLoadStop);
+ webview.src = url;
+}