| 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>
|
|
|