| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../fast/js/resources/js-test-pre.js"></script> |
| 5 <script src="resources/helper.js"></script> | 5 <script src="resources/helper.js"></script> |
| 6 <style> | 6 <style> |
| 7 body { font-family: monospace; } | 7 body { font-family: monospace; } |
| 8 #article { -webkit-flow-into: flow; } | 8 #article { -webkit-flow-into: flow; } |
| 9 #region { -webkit-flow-from: flow; width: 250px; height: 50px; } | 9 #region { -webkit-flow-from: flow; width: 250px; height: 50px; } |
| 10 #region2 { -webkit-flow-from: flow; width: 250px; height: 50px; } | 10 #region2 { -webkit-flow-from: flow; width: 250px; height: 50px; } |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 var region5 = document.createElement("div"); | 142 var region5 = document.createElement("div"); |
| 143 region5.id = "region5"; | 143 region5.id = "region5"; |
| 144 document.body.appendChild(region5); | 144 document.body.appendChild(region5); |
| 145 | 145 |
| 146 var regionListP22 = namedFlow2.getRegionsByContent(p2); | 146 var regionListP22 = namedFlow2.getRegionsByContent(p2); |
| 147 shouldEvaluateTo("regionListP22.length", 1); | 147 shouldEvaluateTo("regionListP22.length", 1); |
| 148 shouldBeEqualToString("regionListP22.item(0).id", "region5"); | 148 shouldBeEqualToString("regionListP22.item(0).id", "region5"); |
| 149 | 149 |
| 150 hideRegions(); | 150 hideRegions(); |
| 151 </script> | 151 </script> |
| 152 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 153 </body> | 152 </body> |
| 154 </html> | 153 </html> |
| 155 | 154 |
| OLD | NEW |