| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 /* Make sure the console and the description don't interfere with th
e rest of the layout. */ | 5 /* Make sure the console and the description don't interfere with th
e rest of the layout. */ |
| 6 #description { | 6 #description { |
| 7 position: absolute; | 7 position: absolute; |
| 8 top: 0px; | 8 top: 0px; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 elementsToHide[i].style.visibility = "hidden"; | 158 elementsToHide[i].style.visibility = "hidden"; |
| 159 } | 159 } |
| 160 | 160 |
| 161 else { | 161 else { |
| 162 var elementsToHide = document.querySelectorAll("#console, #descr
iption"); | 162 var elementsToHide = document.querySelectorAll("#console, #descr
iption"); |
| 163 for (var i=0; i<elementsToHide.length; i++) | 163 for (var i=0; i<elementsToHide.length; i++) |
| 164 elementsToHide[i].style.visibility = "hidden"; | 164 elementsToHide[i].style.visibility = "hidden"; |
| 165 } | 165 } |
| 166 </script> | 166 </script> |
| 167 | 167 |
| 168 <script src="../js/resources/js-test-post.js"></script> | |
| 169 </body> | 168 </body> |
| 170 </html> | 169 </html> |
| OLD | NEW |