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 .flow { -webkit-flow-into: flow-name; } | 8 .flow { -webkit-flow-into: flow-name; } |
9 .region { -webkit-flow-from: flow-name; } | 9 .region { -webkit-flow-from: flow-name; } |
10 #region { width: 250px; height: 50px; } | 10 #region { width: 250px; height: 50px; } |
(...skipping 28 matching lines...) Expand all Loading... |
39 | 39 |
40 // Remove the flow and the region element, move the NamedFlow object in the NULL
state | 40 // Remove the flow and the region element, move the NamedFlow object in the NULL
state |
41 region.className = ""; | 41 region.className = ""; |
42 article.className = ""; | 42 article.className = ""; |
43 region.style.display = "none"; | 43 region.style.display = "none"; |
44 article.style.display = "none"; | 44 article.style.display = "none"; |
45 | 45 |
46 // The name should be 'flow-name' when the named flow is in the NULL state | 46 // The name should be 'flow-name' when the named flow is in the NULL state |
47 shouldBe("namedFlow.name", "'flow-name'"); | 47 shouldBe("namedFlow.name", "'flow-name'"); |
48 </script> | 48 </script> |
49 <script src="../js/resources/js-test-post.js"></script> | |
50 </body> | 49 </body> |
51 </html> | 50 </html> |
OLD | NEW |