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

Side by Side Diff: build/android/pylib/results/presentation/template/main.html

Issue 2777353002: Upload the test results html file to google bucket. (Closed)
Patch Set: john's comments Created 3 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
« no previous file with comments | « no previous file | build/android/pylib/results/presentation/test_results_presentation.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <link rel="stylesheet" href="../../../../../../../default.css" type="text/cs s"> 5 <link rel="stylesheet" href="https://storage.googleapis.com/{{bucket}}/css/d efault.css" type="text/css">
jbudorick 2017/03/30 00:10:12 Should this always be storage.googleapis.com? Will
6 <style> 6 <style>
7 table, th, td { 7 table, th, td {
8 border: 1px solid black; 8 border: 1px solid black;
9 border-collapse: collapse; 9 border-collapse: collapse;
10 } 10 }
11 th, td { 11 th, td {
12 padding: 5px; 12 padding: 5px;
13 } 13 }
14 th { 14 th {
15 cursor: pointer; 15 cursor: pointer;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 // Enable sorting for each column of tables. 56 // Enable sorting for each column of tables.
57 Array.prototype.slice.call(document.getElementsByTagName('th')) 57 Array.prototype.slice.call(document.getElementsByTagName('th'))
58 .forEach(function(head) { 58 .forEach(function(head) {
59 head.addEventListener( 59 head.addEventListener(
60 "click", 60 "click",
61 function() { sortByColumn(head); }); 61 function() { sortByColumn(head); });
62 } 62 }
63 ); 63 );
64 </script> 64 </script>
65 </html> 65 </html>
OLDNEW
« no previous file with comments | « no previous file | build/android/pylib/results/presentation/test_results_presentation.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698