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="../../fast/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 .content { -webkit-flow-into: flow } | 9 .content { -webkit-flow-into: flow } |
10 .region { -webkit-flow-from: flow} | 10 .region { -webkit-flow-from: flow} |
11 #region, #region2, #region3 { width: 250px; height: 50px; } | 11 #region, #region2, #region3 { width: 250px; height: 50px; } |
12 </style> | 12 </style> |
13 </head> | 13 </head> |
14 <body> | 14 <body> |
15 <div id="article" class="content"> | 15 <div id="article" class="content"> |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 // FirstEmptyRegionIndex should be -1, since there are no more regions in th
e named flow. | 78 // FirstEmptyRegionIndex should be -1, since there are no more regions in th
e named flow. |
79 shouldBe("namedFlow.firstEmptyRegionIndex", "-1"); | 79 shouldBe("namedFlow.firstEmptyRegionIndex", "-1"); |
80 | 80 |
81 document.getElementById("article").style.display = "none"; | 81 document.getElementById("article").style.display = "none"; |
82 region.style.display = "none"; | 82 region.style.display = "none"; |
83 region2.style.display = "none"; | 83 region2.style.display = "none"; |
84 region3.style.display = "none"; | 84 region3.style.display = "none"; |
85 </script> | 85 </script> |
86 </body> | 86 </body> |
87 </html> | 87 </html> |
OLD | NEW |