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 .notVisible { visibility: hidden; } | 7 .notVisible { visibility: hidden; } |
8 .flow { -webkit-flow-into: flow; } | 8 .flow { -webkit-flow-into: flow; } |
9 #article { width: 50px; height: 50px; background-color: green; } | 9 #article { width: 50px; height: 50px; background-color: green; } |
10 #region { -webkit-flow-from: flow; } | 10 #region { -webkit-flow-from: flow; } |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 if (eventDispatchCount > 1) | 54 if (eventDispatchCount > 1) |
55 debug("FAIL The regionlayoutupdate event fired twice instead
of once.") | 55 debug("FAIL The regionlayoutupdate event fired twice instead
of once.") |
56 else | 56 else |
57 debug("PASS The regionlayoutupdate fired only once."); | 57 debug("PASS The regionlayoutupdate fired only once."); |
58 finishJSTest(); | 58 finishJSTest(); |
59 } | 59 } |
60 | 60 |
61 window.addEventListener("load", startTest); | 61 window.addEventListener("load", startTest); |
62 </script> | 62 </script> |
63 <script src="../../../fast/js/resources/js-test-post.js"></script> | |
64 </body> | 63 </body> |
65 </html> | 64 </html> |
OLD | NEW |