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 .flow { -webkit-flow-into: flow } | 9 .flow { -webkit-flow-into: flow } |
10 .region { -webkit-flow-from: flow; } | 10 .region { -webkit-flow-from: flow; } |
11 #region { width: 250px; height: 50px; } | 11 #region { width: 250px; height: 50px; } |
12 #region2 { width: 250px; height: 50px; } | 12 #region2 { width: 250px; height: 50px; } |
13 #region3 { width: 250px; height: 50px; } | 13 #region3 { width: 250px; height: 50px; } |
14 </style> | 14 </style> |
15 </head> | 15 </head> |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 // Overset should be true since the flow does not have any region chain | 89 // Overset should be true since the flow does not have any region chain |
90 shouldBe("namedFlow.overset", "true"); | 90 shouldBe("namedFlow.overset", "true"); |
91 | 91 |
92 document.getElementById("article").style.display = "none"; | 92 document.getElementById("article").style.display = "none"; |
93 region.style.display = "none"; | 93 region.style.display = "none"; |
94 region2.style.display = "none"; | 94 region2.style.display = "none"; |
95 region3.style.display = "none"; | 95 region3.style.display = "none"; |
96 </script> | 96 </script> |
97 </body> | 97 </body> |
98 </html> | 98 </html> |
OLD | NEW |