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

Side by Side Diff: tests/test_console_handler_utf8/console-expected.html

Issue 142243002: Fix presubmit.py tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-build
Patch Set: Remove spurious spaces. Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
1 1
2 <script> 2 <script>
3 /** 3 /**
4 * Pseudo namespace for chromium - keep it short because we are in a very 4 * Pseudo namespace for chromium - keep it short because we are in a very
5 * narrow scope for this file. 5 * narrow scope for this file.
6 * @type {Object} 6 * @type {Object}
7 */ 7 */
8 var c = {}; 8 var c = {};
9 9
10 /** 10 /**
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 // <![CDATA[ 435 // <![CDATA[
436 function reload_page() { 436 function reload_page() {
437 name_value = document.getElementById('namebox').value 437 name_value = document.getElementById('namebox').value
438 if (document.location.href.lastIndexOf('?') == -1) 438 if (document.location.href.lastIndexOf('?') == -1)
439 document.location.href = document.location.href+ '?name=' + name_v alue; 439 document.location.href = document.location.href+ '?name=' + name_v alue;
440 else 440 else
441 document.location.href = document.location.href+ '&name=' + name_v alue; 441 document.location.href = document.location.href+ '&name=' + name_v alue;
442 } 442 }
443 // ]]> 443 // ]]>
444 </script> 444 </script>
445 <!-- <input id='namebox' name='name' type='text' style='color:#999;' 445
446 onblur='this.value = this.value || this.defaultValue; this.style.col or = "#999";' 446
447 onfocus='this.value=""; this.style.color = "#000";'
448 value='Personalized for...'/>
449 <input type='submit' value='Go' onclick='reload_page()'/> -->
450 </td> 447 </td>
451 </tr> 448 </tr>
452 </table> 449 </table>
453 </div> 450 </div>
454 451
455 <br/> 452 <br/>
456 453
457 454
458 <div align="center"> 455 <div align="center">
459 <table width="96%"> 456 <table width="96%">
(...skipping 9562 matching lines...) Expand 10 before | Expand all | Expand 10 after
10022 }, false); 10019 }, false);
10023 </script> 10020 </script>
10024 10021
10025 </div><div class="footer" style="clear:both"> 10022 </div><div class="footer" style="clear:both">
10026 <hr/> 10023 <hr/>
10027 [ <a class='collapse' href='#' OnClick='collapse(); return false;'>collapse</a > 10024 [ <a class='collapse' href='#' OnClick='collapse(); return false;'>collapse</a >
10028 <a class='uncollapse' href='#' OnClick='uncollapse(); return false;'>un-collap se</a> 10025 <a class='uncollapse' href='#' OnClick='uncollapse(); return false;'>un-collap se</a>
10029 <a class='merge' href="#" OnClick="merge(); return false;">merge</a> 10026 <a class='merge' href="#" OnClick="merge(); return false;">merge</a>
10030 <a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return f alse;">un-merge</a> ] 10027 <a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return f alse;">un-merge</a> ]
10031 </div> 10028 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698