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

Unified Diff: chrome/test/data/extensions/good/extension1/1/toolstrip.html

Issue 39285: Support loading extensions into the bookmark toolbar. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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
« no previous file with comments | « chrome/test/data/extensions/good/extension1/1/manifest.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/good/extension1/1/toolstrip.html
===================================================================
--- chrome/test/data/extensions/good/extension1/1/toolstrip.html (revision 11167)
+++ chrome/test/data/extensions/good/extension1/1/toolstrip.html (working copy)
@@ -1,5 +1,21 @@
+<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>
« no previous file with comments | « chrome/test/data/extensions/good/extension1/1/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698