Index: chrome/common/extensions/docs/examples/tutorials/getstarted/popup.html |
diff --git a/chrome/common/extensions/docs/examples/tutorials/getstarted/popup.html b/chrome/common/extensions/docs/examples/tutorials/getstarted/popup.html |
index f58540d5d551b4af8b13f63ad2c82b680ff36181..c75c282d7ce20d4ba2bc8a29f96d2ba519e0bd09 100644 |
--- a/chrome/common/extensions/docs/examples/tutorials/getstarted/popup.html |
+++ b/chrome/common/extensions/docs/examples/tutorials/getstarted/popup.html |
@@ -4,16 +4,15 @@ |
<title>Getting Started Extension's Popup</title> |
<style> |
body { |
- min-width: 357px; |
- overflow-x: hidden; |
+ font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif; |
+ font-size: 100%; |
} |
- |
- img { |
- margin: 5px; |
- border: 2px solid black; |
- vertical-align: middle; |
- width: 75px; |
- height: 75px; |
+ #status { |
+ /* avoid an excessively wide status text */ |
+ white-space: pre; |
+ text-overflow: ellipsis; |
+ overflow: hidden; |
+ max-width: 400px; |
} |
</style> |
@@ -21,11 +20,13 @@ |
- JavaScript and HTML must be in separate files: see our Content Security |
- Policy documentation[1] for details and explanation. |
- |
- - [1]: http://developer.chrome.com/extensions/contentSecurityPolicy.html |
+ - [1]: https://developer.chrome.com/extensions/contentSecurityPolicy |
--> |
<script src="popup.js"></script> |
</head> |
<body> |
+ <div id="status"></div> |
+ <img id="image-result" hidden> |
</body> |
</html> |