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: 50px; } | 9 #wrapper { font-size: 50px; } |
10 .border { border: 1px solid red; } | 10 .border { border: 1px solid red; } |
11 #box { -webkit-flow-into: flow1; height: 50px; margin-top: 40px; background-
color: blue} | 11 #box { -webkit-flow-into: flow1; height: 50px; margin-top: 40px; background-
color: blue} |
12 #region1 { -webkit-flow-from: flow1; width: 250px; height: 30px; left: 20px;
top: 250px;} | 12 #region1 { -webkit-flow-from: flow1; width: 250px; height: 30px; left: 20px;
top: 250px;} |
13 #region2 { -webkit-flow-from: flow1; width: 250px; height: 60px; left: 20px;
top: 300px;} | 13 #region2 { -webkit-flow-from: flow1; width: 250px; height: 60px; left: 20px;
top: 300px;} |
14 #region3 { -webkit-flow-from: flow1; width: 250px; height: 60px; left: 20px;
top: 300px;} | 14 #region3 { -webkit-flow-from: flow1; width: 250px; height: 60px; left: 20px;
top: 300px;} |
15 </style> | 15 </style> |
(...skipping 26 matching lines...) Expand all Loading... |
42 function hideRegionsAndFlows() { | 42 function hideRegionsAndFlows() { |
43 document.getElementById("region1").style.visibility = "hidden"; | 43 document.getElementById("region1").style.visibility = "hidden"; |
44 document.getElementById("region2").style.visibility = "hidden"; | 44 document.getElementById("region2").style.visibility = "hidden"; |
45 document.getElementById("region3").style.visibility = "hidden"; | 45 document.getElementById("region3").style.visibility = "hidden"; |
46 } | 46 } |
47 | 47 |
48 hideRegionsAndFlows(); | 48 hideRegionsAndFlows(); |
49 </script> | 49 </script> |
50 </body> | 50 </body> |
51 </html> | 51 </html> |
OLD | NEW |