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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/news/feed.html

Issue 400028: Make extension popups shrink when their contents shrink. (Closed)
Patch Set: Created 11 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 body { 5 body {
6 font-family: helvetica, arial, sans-serif; 6 font-family: helvetica, arial, sans-serif;
7 font-size: 12px; 7 font-size: 12px;
8 overflow: hidden; 8 overflow: hidden;
9 } 9 }
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 cursor: pointer; 43 cursor: pointer;
44 } 44 }
45 45
46 .item_desc { 46 .item_desc {
47 min-width: 500px; 47 min-width: 500px;
48 height: 0px; 48 height: 0px;
49 display: block; 49 display: block;
50 border: none; 50 border: none;
51 padding: 0px; 51 padding: 0px;
52 margin: 0px; 52 margin: 0px;
53 -webkit-transition: height 0.2s ease-out;
53 } 54 }
54 55
55 #title { 56 #title {
56 display: block; 57 display: block;
57 margin-left: auto; 58 margin-left: auto;
58 } 59 }
59 60
60 .error { 61 .error {
61 white-space: nowrap; 62 white-space: nowrap;
62 color: red; 63 color: red;
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 } 292 }
292 293
293 window.addEventListener("message", iframeMessageHandler); 294 window.addEventListener("message", iframeMessageHandler);
294 </script> 295 </script>
295 </head> 296 </head>
296 <body onload="main();"> 297 <body onload="main();">
297 <a id="title_a"><img id='title'></a> 298 <a id="title_a"><img id='title'></a>
298 <div id="feed"></div> 299 <div id="feed"></div>
299 </body> 300 </body>
300 </html> 301 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698