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

Side by Side Diff: chrome/test/data/panels/update-preferred-size.html

Issue 8621002: Reduce minimum size of Panels to allow 1-text-line tight autosize. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: hopefully final Created 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/test/data/extensions/api_test/window_update/show_state/test.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- the Doctype PI turns off 'quirks mode' in HTML layout and makes auto-sizing work right. -->
2 <!doctype html>
1 <html> 3 <html>
2 4
3 <head> 5 <head>
4 <script> 6 <script>
5 function changeSize(delta) { 7 function changeSize(delta) {
6 var elem = document.getElementById("textInput"); 8 var elem = document.getElementById("textInput");
7 elem.size = elem.size + delta; 9 elem.size = elem.size + delta;
8 } 10 }
9 </script> 11 </script>
10 </head> 12 </head>
11 13
12 <body> 14 <body>
13 15
14 Hello<br/> 16 Hello<br/>
15 <input id="textInput" type="text" size="5"><br/> 17 <input id="textInput" type="text" size="5"><br/>
16 18
17 </body> 19 </body>
18 </html> 20 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/window_update/show_state/test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698