Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3039)

Unified Diff: content/shell/webkit_test_runner.js

Issue 11573035: [content shell] implement testRunner.execCommand (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add comment Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/shell/webkit_test_runner.cc ('k') | content/shell/webkit_test_runner_bindings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/webkit_test_runner.js
diff --git a/content/shell/webkit_test_runner.js b/content/shell/webkit_test_runner.js
index 97b571e658abe6215135406d10a8668b00c18037..4159b5548a2d8801b0509917fdd64985f75ae0ae 100644
--- a/content/shell/webkit_test_runner.js
+++ b/content/shell/webkit_test_runner.js
@@ -8,6 +8,7 @@ var testRunner = testRunner || {};
native function CloseWebInspector();
native function Display();
native function EvaluateInWebInspector();
+ native function ExecCommand();
native function GetWorkerThreadCount();
native function NotifyDone();
native function SetCanOpenWindows();
@@ -75,6 +76,7 @@ var testRunner = testRunner || {};
Object.defineProperty(this,
"evaluateInWebInspector",
{value: EvaluateInWebInspector});
+ Object.defineProperty(this, "execCommand", {value: ExecCommand});
Object.defineProperty(this,
« no previous file with comments | « content/shell/webkit_test_runner.cc ('k') | content/shell/webkit_test_runner_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698