| 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 html { -webkit-writing-mode: vertical-rl; } | 8 html { -webkit-writing-mode: vertical-rl; } |
| 9 body { font-family: monospace; } | 9 body { font-family: monospace; } |
| 10 #wrapper { font-size: 30px; } | 10 #wrapper { font-size: 30px; } |
| 11 .border { border: 1px solid red; } | 11 .border { border: 1px solid red; } |
| 12 #article { background-color: lightblue; width: 135px; padding: 10px;} | 12 #article { background-color: lightblue; width: 135px; padding: 10px;} |
| 13 #box1 { background-color: lightgreen; width: 110px; padding: 10px;} | 13 #box1 { background-color: lightgreen; width: 110px; padding: 10px;} |
| 14 #box2 { background-color: orange; width: 10px; padding: 5px;} | 14 #box2 { background-color: orange; width: 10px; padding: 5px;} |
| 15 #region1 { -webkit-flow-from: flow1; width: 70px; height: 250px; left: 20px;
top: 250px;} | 15 #region1 { -webkit-flow-from: flow1; width: 70px; height: 250px; left: 20px;
top: 250px;} |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 function hideRegionsAndFlows() { | 98 function hideRegionsAndFlows() { |
| 99 document.getElementById("region1").style.visibility = "hidden"; | 99 document.getElementById("region1").style.visibility = "hidden"; |
| 100 document.getElementById("region2").style.visibility = "hidden"; | 100 document.getElementById("region2").style.visibility = "hidden"; |
| 101 document.getElementById("region3").style.visibility = "hidden"; | 101 document.getElementById("region3").style.visibility = "hidden"; |
| 102 } | 102 } |
| 103 | 103 |
| 104 hideRegionsAndFlows(); | 104 hideRegionsAndFlows(); |
| 105 </script> | 105 </script> |
| 106 </body> | 106 </body> |
| 107 </html> | 107 </html> |
| OLD | NEW |