| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <title>CQ status timeline for issue %(issue)s patch %(patchset)s</title> | 2 <title>CQ status timeline for issue %(issue)s patch %(patchset)s</title> |
| 3 <script> | 3 <script> |
| 4 var issue = %(issue)s; | 4 var issue = %(issue)s; |
| 5 var patchset = %(patchset)s; | 5 var patchset = %(patchset)s; |
| 6 </script> | 6 </script> |
| 7 <script src="/js/patch_status.js"></script> | 7 <script src="/js/patch_status.js"></script> |
| 8 | 8 |
| 9 <style> | 9 <style> |
| 10 :root { | 10 :root { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 .tryjob.passed { | 98 .tryjob.passed { |
| 99 background: #9e6; | 99 background: #9e6; |
| 100 } | 100 } |
| 101 .tryjob.failed { | 101 .tryjob.failed { |
| 102 background: #e88; | 102 background: #e88; |
| 103 } | 103 } |
| 104 </style> | 104 </style> |
| 105 <a href="/"><h1>Chromium CQ Status</h1></a> | 105 <a href="/"><h1>Chromium CQ Status</h1></a> |
| 106 <h2>CQ status timeline for issue <a href="http://codereview.chromium.org/%(issue
)s">%(issue)s</a> patch <a href="http://codereview.chromium.org/%(issue)s#ps%(pa
tchset)s">%(patchset)s</a></h2> | 106 <h2>CQ status timeline for issue <a href="http://codereview.chromium.org/%(issue
)s">%(issue)s</a> patch <a href="http://codereview.chromium.org/%(issue)s#ps%(pa
tchset)s">%(patchset)s</a></h2> |
| 107 Status updates are shown in reverse chronological order.<br> | 107 Status updates are shown in reverse chronological order.<br> |
| 108 <a href="/recent#issue=%(issue)s,patchset=%(patchset)s" class="raw">[Raw CQ logs
]</a><a href="/patch-timeline/%(issue)s/%(patchset)s" class="raw">[Timeline View
]</a><br> | 108 <a href="/recent#issue=%(issue)s,patchset=%(patchset)s" class="raw">[Raw CQ logs
]</a><br> |
| 109 <br> | 109 <br> |
| 110 <div id="container"></div> | 110 <div id="container"></div> |
| 111 | 111 |
| 112 <script> | 112 <script> |
| 113 window.addEventListener('load', patchStatusModule.main); | 113 window.addEventListener('load', patchStatusModule.main); |
| 114 </script> | 114 </script> |
| 115 | 115 |
| 116 <script> | 116 <script> |
| 117 // Add Google Analytics integration | 117 // Add Google Analytics integration |
| 118 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | 118 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ |
| 119 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | 119 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), |
| 120 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m
) | 120 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m
) |
| 121 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | 121 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); |
| 122 | 122 |
| 123 ga('create', 'UA-55762617-13', {'siteSpeedSampleRate': 100}); | 123 ga('create', 'UA-55762617-13', {'siteSpeedSampleRate': 100}); |
| 124 ga('send', 'pageview'); | 124 ga('send', 'pageview'); |
| 125 </script> | 125 </script> |
| OLD | NEW |