Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: templates/testcase.tmpl

Issue 29755578: Issue 2148 - Rewrite the testpages test suite (Closed)
Left Patch Set: Addressed Dave's feedback Created June 4, 2018, 1:21 p.m.
Right Patch Set: Fixed README title Created June 7, 2018, 1:58 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « templates/default.tmpl ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>{{ title }} - ABP Test Pages</title> 4 <title>{{ title }} - ABP Test Pages</title>
5 <link rel="stylesheet" href="/css/testpages.css"> 5 <link rel="stylesheet" href="/css/testpages.css">
6 <link rel="icon" type="image/png" sizes="32x32" href="/images/abp-32.png"> 6 <link rel="icon" type="image/png" sizes="32x32" href="/images/abp-32.png">
7 <meta name="viewport" content="width=device-width, initial-scale=1"> 7 <meta name="viewport" content="width=device-width, initial-scale=1">
8 </head> 8 </head>
9 <body> 9 <body>
10 <? include header ?> 10 <? include header ?>
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 <li><a href="{{link[1]}}">{{link[0]}}</a></li> 70 <li><a href="{{link[1]}}">{{link[0]}}</a></li>
71 {% endfor %} 71 {% endfor %}
72 </ul> 72 </ul>
73 </section> 73 </section>
74 {% endif %} 74 {% endif %}
75 75
76 </div> 76 </div>
77 77
78 <? include footer ?> 78 <? include footer ?>
79 79
80 <script>
81 function pagelog(message, ) {
82 var log = document.getElementById("testcase-output");
83 log.innerText = log.innerText + message + "\n";
84 console.log(message);
85 }
86 </script>
80 </body> 87 </body>
81 </html> 88 </html>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld