| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 function startTest() { | 105 function startTest() { |
| 106 var flowThread = getFlowByName("article"); | 106 var flowThread = getFlowByName("article"); |
| 107 flowThread.addEventListener("webkitregionoversetchange", regionOvers
etChanged); | 107 flowThread.addEventListener("webkitregionoversetchange", regionOvers
etChanged); |
| 108 | 108 |
| 109 debug("Flowing content into regions..."); | 109 debug("Flowing content into regions..."); |
| 110 flowContent("article"); | 110 flowContent("article"); |
| 111 } | 111 } |
| 112 | 112 |
| 113 window.addEventListener("load", startTest); | 113 window.addEventListener("load", startTest); |
| 114 </script> | 114 </script> |
| 115 <script src="../js/resources/js-test-post.js"></script> | |
| 116 </body> | 115 </body> |
| 117 </html> | 116 </html> |
| OLD | NEW |