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

Side by Side Diff: appengine/findit/templates/flake/flake.html

Issue 2456033002: [Findit] Using flake_analysis_service and add bug number to check flake UI (Closed)
Patch Set: Created 4 years, 1 month 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <head> 2 <head>
3 <title>Flakiness</title> 3 <title>Flakiness</title>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js "></script> 5 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js "></script>
6 <script> 6 <script>
7 $(document).ready(function() { 7 $(document).ready(function() {
8 var testUrlRegexOnBuildbot = /^https?\:\/\/build\.chromium\.org\/p\/([^\/] +)\/builders\/([^\/]+)\/builds\/([\d]+)\/steps\/([^\/]+)\/logs\/([^\/]+)$/; 8 var testUrlRegexOnBuildbot = /^https?\:\/\/build\.chromium\.org\/p\/([^\/] +)\/builders\/([^\/]+)\/builds\/([\d]+)\/steps\/([^\/]+)\/logs\/([^\/]+)$/;
9 var testUrlRegexOnUberProxy = /^https?\:\/\/uberchromegw\.corp\.google\.co m\/i\/([^\/]+)\/builders\/([^\/]+)\/builds\/([\d]+)\/steps\/([^\/]+)\/logs\/([^\ /]+)$/; 9 var testUrlRegexOnUberProxy = /^https?\:\/\/uberchromegw\.corp\.google\.co m\/i\/([^\/]+)\/builders\/([^\/]+)\/builds\/([\d]+)\/steps\/([^\/]+)\/logs\/([^\ /]+)$/;
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 <td><input type="text" name="build_number" id="build_number" size="100 " placeholder="11062"/></td> 53 <td><input type="text" name="build_number" id="build_number" size="100 " placeholder="11062"/></td>
54 </tr> 54 </tr>
55 <tr> 55 <tr>
56 <td style="text-align:right">Step:</td> 56 <td style="text-align:right">Step:</td>
57 <td><input type="text" name="step_name" id="step_name" size="100" plac eholder="browser_tests on Windows-7-SP1"/></td> 57 <td><input type="text" name="step_name" id="step_name" size="100" plac eholder="browser_tests on Windows-7-SP1"/></td>
58 </tr> 58 </tr>
59 <tr> 59 <tr>
60 <td style="text-align:right">Test:</td> 60 <td style="text-align:right">Test:</td>
61 <td><input type="text" name="test_name" id="test_name" size="100" plac eholder="AppBackgroundPageApiTest.Basic"/></td> 61 <td><input type="text" name="test_name" id="test_name" size="100" plac eholder="AppBackgroundPageApiTest.Basic"/></td>
62 </tr> 62 </tr>
63 <tr>
64 <td style="text-align:right">Bug ID:</td>
chanli 2016/10/27 17:53:51 Since Bug ID is optional, should we change it to "
lijeffrey 2016/10/27 20:29:13 Done.
65 <td><input type="text" name="bug_id" id="bug_id" size="3" placeholder= "123456"/></td>
66 </tr>
63 </table> 67 </table>
64 <br> 68 <br>
65 <input type="submit" value="Find Regression Range"> 69 <input type="submit" value="Find Regression Range">
66 </form> 70 </form>
67 </div> 71 </div>
68 <br> 72 <br>
69 </body> 73 </body>
OLDNEW
« no previous file with comments | « appengine/findit/handlers/flake/test/check_flake_test.py ('k') | appengine/findit/waterfall/flake/flake_analysis_service.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698