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 #region { -webkit-flow-from: flow; width: 250px; height: 150px; } | 7 #region { -webkit-flow-from: flow; width: 250px; height: 150px; } |
8 </style> | 8 </style> |
9 </head> | 9 </head> |
10 <body> | 10 <body> |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 shouldEvaluateTo("namedFlowContent13.length", "0"); | 124 shouldEvaluateTo("namedFlowContent13.length", "0"); |
125 | 125 |
126 var namedFlowContent14 = flow2.getContent(); | 126 var namedFlowContent14 = flow2.getContent(); |
127 shouldEvaluateTo("namedFlowContent14.length", "0"); | 127 shouldEvaluateTo("namedFlowContent14.length", "0"); |
128 document.body.appendChild(article); | 128 document.body.appendChild(article); |
129 var namedFlowContent15 = flow2.getContent(); | 129 var namedFlowContent15 = flow2.getContent(); |
130 shouldEvaluateTo("namedFlowContent15.length", "1"); | 130 shouldEvaluateTo("namedFlowContent15.length", "1"); |
131 | 131 |
132 document.getElementById("region").style.visibility = "hidden"; | 132 document.getElementById("region").style.visibility = "hidden"; |
133 </script> | 133 </script> |
134 <script src="../../fast/js/resources/js-test-post.js"></script> | |
135 </body> | 134 </body> |
136 </html> | 135 </html> |
OLD | NEW |