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

Side by Side Diff: chrome/test/data/extensions/samples/subscribe_page_action2/subscribe.html

Issue 149371: Changing LF ending on one html. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>Subscribe to feed</title> 3 <title>Subscribe to feed</title>
4 4
5 <script type="text/javascript"> 5 <script type="text/javascript">
6 function navigate() { 6 function navigate() {
7 var select = document.getElementById("readers"); 7 var select = document.getElementById("readers");
8 // Grab the URL from the querystring, removing question mark at the front. 8 // Grab the URL from the querystring, removing question mark at the front.
9 var feed_url = document.location.search.substring(1); 9 var feed_url = document.location.search.substring(1);
10 var url = select.options[select.selectedIndex].value + feed_url; 10 var url = select.options[select.selectedIndex].value + feed_url;
11 document.location = url; 11 document.location = url;
12 } 12 }
13 </script> 13 </script>
14 </head> 14 </head>
15 15
16 <body> 16 <body>
17 <img src="feed-icon-64x64.png" align="absmiddle" /> 17 <img src="feed-icon-64x64.png" align="absmiddle" />
18 Subscribe to this feed using: 18 Subscribe to this feed using:
19 <select id="readers"> 19 <select id="readers">
20 <option value="http://www.google.com/reader/view/feed/">Google</option> 20 <option value="http://www.google.com/reader/view/feed/">Google</option>
21 </select> 21 </select>
22 <button onclick="navigate();">Subscribe Now</button> 22 <button onclick="navigate();">Subscribe Now</button>
23 </body> 23 </body>
24 </html> 24 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698