| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html lang="en"> | 2 <html lang="en"> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 /* Make sure the console and the description don't interfere wit
h the rest of the layout. */ | 5 /* Make sure the console and the description don't interfere wit
h the 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 elementsToHide[i].style.visibility = "hidden"; | 113 elementsToHide[i].style.visibility = "hidden"; |
| 114 } | 114 } |
| 115 | 115 |
| 116 else { | 116 else { |
| 117 var elementsToHide = document.querySelectorAll("#console
, #description"); | 117 var elementsToHide = document.querySelectorAll("#console
, #description"); |
| 118 for (var i=0; i<elementsToHide.length; i++) | 118 for (var i=0; i<elementsToHide.length; i++) |
| 119 elementsToHide[i].style.visibility = "hidden"; | 119 elementsToHide[i].style.visibility = "hidden"; |
| 120 } | 120 } |
| 121 </script> | 121 </script> |
| 122 | 122 |
| 123 <script src="../js/resources/js-test-post.js"></script> | |
| 124 </body> | 123 </body> |
| 125 </html> | 124 </html> |
| OLD | NEW |