| 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="../../fast/js/resources/js-test-pre.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} |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 region2.className = region3.className = ""; | 76 region2.className = region3.className = ""; |
| 77 | 77 |
| 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 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 87 </body> | 86 </body> |
| 88 </html> | 87 </html> |
| OLD | NEW |