Chromium Code Reviews| 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> |