[LNT] r253333 - [html] Empty action not allowed in form. NFC.

Arnaud A. de Grandmaison via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 17 05:20:27 PST 2015


Author: aadg
Date: Tue Nov 17 07:20:26 2015
New Revision: 253333

URL: http://llvm.org/viewvc/llvm-project?rev=253333&view=rev
Log:
[html] Empty action not allowed in form. NFC.

Refer to: http://www.w3.org/TR/html-markup/form.html#form.

Modified:
    lnt/trunk/lnt/server/ui/templates/v4_run.html

Modified: lnt/trunk/lnt/server/ui/templates/v4_run.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_run.html?rev=253333&r1=253332&r2=253333&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_run.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_run.html Tue Nov 17 07:20:26 2015
@@ -191,7 +191,7 @@
 
   <section id="view_options">
   {{ utils.render_popup_begin('view_options', 'View Options', true) }}
-  <form action="" method="get">
+  <form method="GET">
     <table class="table table-striped table-condensed table-hover">
     <tr>
       <td>Show Delta</td>




More information about the llvm-commits mailing list