| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 elementsToHide[i].style.visibility = "hidden"; | 227 elementsToHide[i].style.visibility = "hidden"; |
| 228 } | 228 } |
| 229 | 229 |
| 230 else { | 230 else { |
| 231 var elementsToHide = document.querySelectorAll("#console, #descr
iption"); | 231 var elementsToHide = document.querySelectorAll("#console, #descr
iption"); |
| 232 for (var i=0; i<elementsToHide.length; i++) | 232 for (var i=0; i<elementsToHide.length; i++) |
| 233 elementsToHide[i].style.visibility = "hidden"; | 233 elementsToHide[i].style.visibility = "hidden"; |
| 234 } | 234 } |
| 235 </script> | 235 </script> |
| 236 | 236 |
| 237 <script src="../js/resources/js-test-post.js"></script> | |
| 238 </body> | 237 </body> |
| 239 </html> | 238 </html> |
| OLD | NEW |