diff options
Diffstat (limited to 'chrome/test')
3 files changed, 5 insertions, 22 deletions
diff --git a/chrome/test/data/extensions/good/extension1/1/index.html b/chrome/test/data/extensions/good/extension1/1/index.html new file mode 100644 index 0000000..2a03e43 --- /dev/null +++ b/chrome/test/data/extensions/good/extension1/1/index.html @@ -0,0 +1,5 @@ +<body> +<script> + window.setTimeout('alert(window.extension.getTestString())', 2500); +</script> +</body> diff --git a/chrome/test/data/extensions/good/extension1/1/manifest.json b/chrome/test/data/extensions/good/extension1/1/manifest.json index 77a4639..32022c4 100644 --- a/chrome/test/data/extensions/good/extension1/1/manifest.json +++ b/chrome/test/data/extensions/good/extension1/1/manifest.json @@ -4,7 +4,6 @@ "version": "1.0.0.0", "name": "My extension 1", "description": "The first extension that I made.", - "toolstrip": "toolstrip.html", "content_scripts": [ { "matches": ["http://*.google.com/*", "https://*.google.com/*"], diff --git a/chrome/test/data/extensions/good/extension1/1/toolstrip.html b/chrome/test/data/extensions/good/extension1/1/toolstrip.html deleted file mode 100644 index 7be7eec..0000000 --- a/chrome/test/data/extensions/good/extension1/1/toolstrip.html +++ /dev/null @@ -1,21 +0,0 @@ -<style> -body { - overflow: hidden; - margin: 0 0 0 0; -} - -/* TODO: put the background style into body when - https://bugs.webkit.org/show_bug.cgi?id=18445 is fixed. */ -.content { - background: -webkit-gradient(linear, left top, left bottom, from(rgb(222, 234, 248)), to(rgb(237, 244, 252))); - padding: 1; -} -</style> -<body> -<div class="content"> -<script> - window.setTimeout('alert(window.extension.getTestString())', 2500); -</script> -<button onclick="alert('clicked')">HTML button</button> -</div> -</body> |