| 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 html { -webkit-writing-mode: horizontal-bt; } | 7 html { -webkit-writing-mode: horizontal-bt; } |
| 8 body { font-family: monospace; } | 8 body { font-family: monospace; } |
| 9 #article { -webkit-flow-into: flow; } | 9 #article { -webkit-flow-into: flow; } |
| 10 #region { -webkit-flow-from: flow; width: 250px; height: 50px; } | 10 #region { -webkit-flow-from: flow; width: 250px; height: 50px; } |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 var region5 = document.createElement("div"); | 140 var region5 = document.createElement("div"); |
| 141 region5.id = "region5"; | 141 region5.id = "region5"; |
| 142 document.body.appendChild(region5); | 142 document.body.appendChild(region5); |
| 143 | 143 |
| 144 var regionListP22 = namedFlow2.getRegionsByContent(p2); | 144 var regionListP22 = namedFlow2.getRegionsByContent(p2); |
| 145 shouldEvaluateTo("regionListP22.length", 1); | 145 shouldEvaluateTo("regionListP22.length", 1); |
| 146 shouldBeEqualToString("regionListP22.item(0).id", "region5"); | 146 shouldBeEqualToString("regionListP22.item(0).id", "region5"); |
| 147 | 147 |
| 148 hideRegions(); | 148 hideRegions(); |
| 149 </script> | 149 </script> |
| 150 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 151 </body> | 150 </body> |
| 152 </html> | 151 </html> |
| OLD | NEW |