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="../../resources/js-test.js"></script> |
5 <script src="resources/helper.js"></script> | 5 <script src="resources/helper.js"></script> |
6 <style> | 6 <style> |
7 #article { | 7 #article { |
8 -webkit-flow-into: article; | 8 -webkit-flow-into: article; |
9 height: 50px; | 9 height: 50px; |
10 width: 50px; | 10 width: 50px; |
11 background-color: green; | 11 background-color: green; |
12 } | 12 } |
13 | 13 |
14 #region_1 { | 14 #region_1 { |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 shouldBe("namedFlow.firstEmptyRegionIndex", "0"); | 68 shouldBe("namedFlow.firstEmptyRegionIndex", "0"); |
69 shouldBeEqualToString("regionList.item(0).id", "region_2"); | 69 shouldBeEqualToString("regionList.item(0).id", "region_2"); |
70 shouldBeEqualToString("regionList.item(0).webkitRegionOverset", "emp
ty"); | 70 shouldBeEqualToString("regionList.item(0).webkitRegionOverset", "emp
ty"); |
71 | 71 |
72 document.getElementById("article").style.visibility = "hidden"; | 72 document.getElementById("article").style.visibility = "hidden"; |
73 document.getElementById("region_1").style.visibility = "hidden"; | 73 document.getElementById("region_1").style.visibility = "hidden"; |
74 document.getElementById("region_2").style.visibility = "hidden"; | 74 document.getElementById("region_2").style.visibility = "hidden"; |
75 </script> | 75 </script> |
76 </body> | 76 </body> |
77 </html> | 77 </html> |
OLD | NEW |