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

Side by Side Diff: chrome/browser/resources/chromeos/host_registration_page.html

Issue 10828382: Cleanup: Don't close single tags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 8 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <title>Register your computer with Google</title> 5 <title>Register your computer with Google</title>
6 <style> 6 <style>
7 #form { 7 #form {
8 position: absolute; 8 position: absolute;
9 left: 0; 9 left: 0;
10 right: 0; 10 right: 0;
11 top: 0; 11 top: 0;
12 bottom: 0; 12 bottom: 0;
13 overflow: hidden; 13 overflow: hidden;
14 width: 100%; 14 width: 100%;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 } 61 }
62 62
63 // Called by WebUI handler when startup manifest is not defined. 63 // Called by WebUI handler when startup manifest is not defined.
64 function skipRegistration() { 64 function skipRegistration() {
65 location.replace(registerSkipUrl); 65 location.replace(registerSkipUrl);
66 } 66 }
67 </script> 67 </script>
68 </head> 68 </head>
69 <body><iframe id="form" frameborder="0"></iframe></body> 69 <body><iframe id="form" frameborder="0"></iframe></body>
70 </html> 70 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698