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

Side by Side Diff: perf/dashboard/ui/changelog_blink.html

Issue 13608002: Copy changelog.html to changelog_blink.html with appropriate modifications. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 7 years, 8 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')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="js/changelog.js"></script> 3 <script src="js/changelog.js"></script>
4 <script src="js/common.js"></script> 4 <script src="js/common.js"></script>
5 <style type="text/css"> 5 <style type="text/css">
6 table { 6 table {
7 border-collapse: collapse; 7 border-collapse: collapse;
8 } 8 }
9 thead { 9 thead {
10 border-top: solid 1px gray; 10 border-top: solid 1px gray;
(...skipping 11 matching lines...) Expand all
22 td { 22 td {
23 padding-left: 0.5em; 23 padding-left: 0.5em;
24 padding-top: 0.3em; 24 padding-top: 0.3em;
25 padding-bottom: 0.3em; 25 padding-bottom: 0.3em;
26 padding-right: 1.4em; 26 padding-right: 1.4em;
27 border-top: solid 1px gray; 27 border-top: solid 1px gray;
28 vertical-align: top; 28 vertical-align: top;
29 font-family: monospace; 29 font-family: monospace;
30 } 30 }
31 form { 31 form {
32 background-color: lightblue; 32 background-color: rgb(198, 230, 173);
33 border: 1px solid gray; 33 border: 1px solid gray;
34 padding: 2px; 34 padding: 2px;
35 } 35 }
36 iframe#content { 36 iframe#content {
37 border: none; 37 border: none;
38 width: 0px; 38 width: 0px;
39 height: 0px; 39 height: 0px;
40 } 40 }
41 /* 41 /*
42 form { 42 form {
43 position: fixed; 43 position: fixed;
44 left: 0px; 44 left: 0px;
45 top: 0px; 45 top: 0px;
46 width: 100%; 46 width: 100%;
47 } 47 }
48 */ 48 */
49 </style> 49 </style>
50 </head> 50 </head>
51 <body> 51 <body>
52 <form name="ui"> 52 <form name="ui">
53 <strong>Blink Changelog:</strong>
53 SVN path: <input id="url" type="text" name="url" value=""> 54 SVN path: <input id="url" type="text" name="url" value="">
54 SVN revision range: <input id="range" type="text" name="range" value=""> 55 SVN revision range: <input id="range" type="text" name="range" value="">
55 <input id="mode_text" type="radio" name="mode" value="text">text 56 <input id="mode_text" type="radio" name="mode" value="text">text
56 <input id="mode_html" type="radio" name="mode" value="html">html 57 <input id="mode_html" type="radio" name="mode" value="html">html
57 <input type="submit" value="Show Changelog"> 58 <input type="submit" value="Show Changelog">
58 </form> 59 </form>
59 60
60 <script> 61 <script>
61 var svnRootUrl = "http://src.chromium.org/svn/"; 62 var svnRootUrl = "http://src.chromium.org/blink/";
62 var viewVc = "http://src.chromium.org/viewvc/chrome"; 63 var viewVc = "http://src.chromium.org/viewvc/blink";
63 64
64 params = ParseParams(); 65 params = ParseParams();
65 var svnPath = params["url"]; 66 var svnPath = params["url"];
66 var svnRange = params["range"]; 67 var svnRange = params["range"];
67 render_log(svnRootUrl, svnPath, svnRange, viewVc) 68 render_log(svnRootUrl, svnPath, svnRange, viewVc)
68 </script> 69 </script>
69 </body> 70 </body>
70 </html> 71 </html>
71 72
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