Commit 32646ea9 authored by finnur@chromium.org's avatar finnur@chromium.org

Changing LF ending on one html.

TBR=maruel
BUG=None
TEST=None

Review URL: http://codereview.chromium.org/149371

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20216 0039d316-1c4b-4281-b951-d872f2087c98
parent f7a70417
<html>
<head>
<title>Subscribe to feed</title>
<script type="text/javascript">
function navigate() {
var select = document.getElementById("readers");
// Grab the URL from the querystring, removing question mark at the front.
var feed_url = document.location.search.substring(1);
var url = select.options[select.selectedIndex].value + feed_url;
document.location = url;
}
</script>
</head>
<body>
<img src="feed-icon-64x64.png" align="absmiddle" />
Subscribe to this feed using:
<select id="readers">
<option value="http://www.google.com/reader/view/feed/">Google</option>
</select>
<button onclick="navigate();">Subscribe Now</button>
</body>
</html>
<html>
<head>
<title>Subscribe to feed</title>
<script type="text/javascript">
function navigate() {
var select = document.getElementById("readers");
// Grab the URL from the querystring, removing question mark at the front.
var feed_url = document.location.search.substring(1);
var url = select.options[select.selectedIndex].value + feed_url;
document.location = url;
}
</script>
</head>
<body>
<img src="feed-icon-64x64.png" align="absmiddle" />
Subscribe to this feed using:
<select id="readers">
<option value="http://www.google.com/reader/view/feed/">Google</option>
</select>
<button onclick="navigate();">Subscribe Now</button>
</body>
</html>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment