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="../../resources/js-test.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; } |
11 </style> | 11 </style> |
12 </head> | 12 </head> |
13 <body> | 13 <body> |
14 <p id="article" class="flow">The content flow</p> | 14 <p id="article" class="flow">The content flow</p> |
15 <script> | 15 <script> |
(...skipping 25 matching lines...) Expand all Loading... |
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 </body> | 49 </body> |
50 </html> | 50 </html> |
OLD | NEW |