diff options
author | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-23 00:27:08 +0000 |
---|---|---|
committer | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-23 00:27:08 +0000 |
commit | 7d7c8c0dbd381532d4c0137056ac2809289eac97 (patch) | |
tree | 427527a29dc4a9711fb9a0f46618f6a36c8f323a /chrome/browser/resources/about_credits.html | |
parent | e95180db0287b6a7480edb22e28ef47e0af6af68 (diff) | |
download | chromium_src-7d7c8c0dbd381532d4c0137056ac2809289eac97.zip chromium_src-7d7c8c0dbd381532d4c0137056ac2809289eac97.tar.gz chromium_src-7d7c8c0dbd381532d4c0137056ac2809289eac97.tar.bz2 |
Some random cleanups in the HTML files.
Use HTML5 placeholder instead of js code for the text input place holders.
Use HTML5 doctype in all html files.
Skip optional type in script and style tags.
Some small optimizations in LocalStrings.
Review URL: http://codereview.chromium.org/88072
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14278 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/about_credits.html')
-rw-r--r-- | chrome/browser/resources/about_credits.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/resources/about_credits.html b/chrome/browser/resources/about_credits.html index 508732e..9eefc99 100644 --- a/chrome/browser/resources/about_credits.html +++ b/chrome/browser/resources/about_credits.html @@ -1,9 +1,9 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<!DOCTYPE HTML> <html> <head> -<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> +<meta charset="utf-8"> <title>Credits</title> -<style type="text/css"> +<style> body { font-family:arial,sans-serif; background-color:white; @@ -51,7 +51,7 @@ body { margin-top:0px; } </style> -<script type="text/javascript"> +<script> function $(o) {return document.getElementById(o);} function toggle(o) { var licence = o.nextSibling; |