| 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="../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 #article { | 8 #article { |
| 9 -webkit-flow-into: article; | 9 -webkit-flow-into: article; |
| 10 border: 10px solid black; | 10 border: 10px solid black; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 function startTest() { | 77 function startTest() { |
| 78 var flowThread = getFlowByName("article"); | 78 var flowThread = getFlowByName("article"); |
| 79 flowThread.addEventListener("webkitregionoversetchange", regionOvers
etChanged); | 79 flowThread.addEventListener("webkitregionoversetchange", regionOvers
etChanged); |
| 80 | 80 |
| 81 debug("Flowing content into regions..."); | 81 debug("Flowing content into regions..."); |
| 82 flowContent("article"); | 82 flowContent("article"); |
| 83 } | 83 } |
| 84 | 84 |
| 85 window.addEventListener("load", startTest); | 85 window.addEventListener("load", startTest); |
| 86 </script> | 86 </script> |
| 87 <script src="../js/resources/js-test-post.js"></script> | |
| 88 </body> | 87 </body> |
| 89 </html> | 88 </html> |
| OLD | NEW |