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

Unified Diff: chrome/test/data/extensions/api_test/webstore_inline_install/install.html

Issue 7621032: Initial inline web store install bindings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 months 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
Index: chrome/test/data/extensions/api_test/webstore_inline_install/install.html
diff --git a/chrome/test/data/extensions/api_test/webstore_inline_install/install.html b/chrome/test/data/extensions/api_test/webstore_inline_install/install.html
new file mode 100644
index 0000000000000000000000000000000000000000..fd8f3be125f1083ae3dbe649fbbbe844b1c27c5c
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/webstore_inline_install/install.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <link rel="chrome-webstore-item" href="http://cws.com/detail/abc">
Aaron Boodman 2011/08/17 04:53:03 Why specify the URL just to take it apart in the r
Mihai Parparita -not on Chrome 2011/08/17 23:00:16 Having a full URL seems cleaner from a web standar
+</head>
+<body>
+<script>
+ function runTest() {
+ chrome.webstore.install();
Aaron Boodman 2011/08/17 04:53:03 Do we need both chrome.webstore.install() and chro
Mihai Parparita -not on Chrome 2011/08/17 23:00:16 I don't seem much overlap in the implementation as
+ window.domAutomationController.send(true);
+ }
+</script>
+
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698