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

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

Issue 2263863002: Remove implementation of Panels on OSes other than ChromeOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CR feedback Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « chrome/test/data/panels/test_extension/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
(Empty)
1 <!-- the Doctype PI turns off 'quirks mode' in HTML layout and makes auto-sizing work right. -->
2 <!doctype html>
3 <html>
4
5 <head>
6 <script>
7 function changeSize(delta) {
8 var elem = document.getElementById("textInput");
9 elem.size = elem.size + delta;
10 }
11 </script>
12 </head>
13
14 <body>
15
16 Hello<br/>
17 <input id="textInput" type="text" size="5"><br/>
18
19 </body>
20 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/panels/test_extension/test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698