OLD | NEW |
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="https://storage.googleapis.com/chromium-result-
details/css/default.css" type="text/css"> | 5 <link rel="stylesheet" href="https://storage.googleapis.com/chromium-result-
details/css/default.css" type="text/css"> |
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 } |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 showSuiteTableOnlyWithReplaceState(); | 56 showSuiteTableOnlyWithReplaceState(); |
57 // Enable sorting for each column of tables. | 57 // Enable sorting for each column of tables. |
58 Array.prototype.slice.call(document.getElementsByTagName('th')) | 58 Array.prototype.slice.call(document.getElementsByTagName('th')) |
59 .forEach(function(head) { | 59 .forEach(function(head) { |
60 head.addEventListener( | 60 head.addEventListener( |
61 "click", | 61 "click", |
62 function() { sortByColumn(head); }); | 62 function() { sortByColumn(head); }); |
63 } | 63 } |
64 ); | 64 ); |
65 setBrowserBackButtonLogic(); | 65 setBrowserBackButtonLogic(); |
| 66 setTableCellsAsClickable(); |
66 </script> | 67 </script> |
67 </html> | 68 </html> |
OLD | NEW |