| 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: 2px solid black; | 10 border: 2px solid black; |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 function startTest() { | 102 function startTest() { |
| 103 var flowThread = getFlowByName("article"); | 103 var flowThread = getFlowByName("article"); |
| 104 flowThread.addEventListener("webkitregionoversetchange", flowThreadUpdated); | 104 flowThread.addEventListener("webkitregionoversetchange", flowThreadUpdated); |
| 105 | 105 |
| 106 debug("Flow content"); | 106 debug("Flow content"); |
| 107 flowContent("article"); | 107 flowContent("article"); |
| 108 } | 108 } |
| 109 | 109 |
| 110 window.addEventListener("load", startTest); | 110 window.addEventListener("load", startTest); |
| 111 </script> | 111 </script> |
| 112 <script src="../js/resources/js-test-post.js"></script> | |
| 113 </body> | 112 </body> |
| 114 </html> | 113 </html> |
| OLD | NEW |