Chromium Code Reviews| Index: build/android/pylib/results/presentation/javascript/main_html.js |
| diff --git a/build/android/pylib/results/presentation/javascript/main_html.js b/build/android/pylib/results/presentation/javascript/main_html.js |
| index 3d94663e33f1b8bf44eda7483c7835650d3b2ffc..442aaf53039bd6fa9f0ddac0dec7b9e44f13efc3 100644 |
| --- a/build/android/pylib/results/presentation/javascript/main_html.js |
| +++ b/build/android/pylib/results/presentation/javascript/main_html.js |
| @@ -191,3 +191,23 @@ function sortByColumn(head) { |
| function sortSuiteTableByFailedTestCases() { |
| sortByColumn(document.getElementById('number_fail_tests')); |
| } |
| + |
| +function setTableCellsAsClickable() { |
| + const tableCells = document.getElementsByTagName('td'); |
| + for(let i = 0; i < tableCells.length; i++) { |
| + const links = tableCells[i].getElementsByTagName('a'); |
| + if (links.length == 1) { |
|
the real yoland
2017/05/18 00:17:14
nit: you prob want to comment on that only make th
|
| + tableCells[i].addEventListener('click', function() { |
| + links[0].click(); |
| + }); |
| + tableCells[i].addEventListener('mouseover', function() { |
| + tableCells[i].style.cursor = 'pointer'; |
| + links[0].style.textDecoration = 'underline'; |
| + }); |
| + tableCells[i].addEventListener('mouseout', function() { |
| + tableCells[i].style.cursor = 'initial'; |
| + links[0].style.textDecoration = 'initial'; |
| + }); |
| + } |
| + } |
| +} |