| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <script src="../js/resources/js-test-pre.js"></script> | 5 <script src="../../resources/js-test.js"></script> |
| 6 <script src="resources/helper.js"></script> | 6 <script src="resources/helper.js"></script> |
| 7 <style> | 7 <style> |
| 8 body { font-family: monospace; } | 8 body { font-family: monospace; } |
| 9 #wrapper { font-size: 30px; } | 9 #wrapper { font-size: 30px; } |
| 10 .border { border: 1px solid red; } | 10 .border { border: 1px solid red; } |
| 11 #article { background-color: lightblue; height: 135px; padding: 10px;} | 11 #article { background-color: lightblue; height: 135px; padding: 10px;} |
| 12 #box1 { background-color: lightgreen; height: 110px; padding: 10px;} | 12 #box1 { background-color: lightgreen; height: 110px; padding: 10px;} |
| 13 #box2 { background-color: orange; height: 10px; padding: 5px;} | 13 #box2 { background-color: orange; height: 10px; padding: 5px;} |
| 14 #region1 { -webkit-flow-from: flow1; width: 250px; height: 70px; left: 20px;
top: 250px;} | 14 #region1 { -webkit-flow-from: flow1; width: 250px; height: 70px; left: 20px;
top: 250px;} |
| 15 #region2 { -webkit-flow-from: flow1; width: 250px; height: 60px; left: 20px;
top: 300px;} | 15 #region2 { -webkit-flow-from: flow1; width: 250px; height: 60px; left: 20px;
top: 300px;} |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 function hideRegionsAndFlows() { | 96 function hideRegionsAndFlows() { |
| 97 document.getElementById("region1").style.visibility = "hidden"; | 97 document.getElementById("region1").style.visibility = "hidden"; |
| 98 document.getElementById("region2").style.visibility = "hidden"; | 98 document.getElementById("region2").style.visibility = "hidden"; |
| 99 document.getElementById("region3").style.visibility = "hidden"; | 99 document.getElementById("region3").style.visibility = "hidden"; |
| 100 } | 100 } |
| 101 | 101 |
| 102 hideRegionsAndFlows(); | 102 hideRegionsAndFlows(); |
| 103 </script> | 103 </script> |
| 104 </body> | 104 </body> |
| 105 </html> | 105 </html> |
| OLD | NEW |