Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / regions / cssom / webkit-named-flow-collection-empty-getters.html
1 <!doctype html>
2 <html>
3     <body>
4         <script src="../../../resources/js-test.js"></script>
5         <script>
6             description("Test for <a href='https://code.google.com/p/chromium/issues/detail?id=259339'>[259339] NamedFlowCollection getters should follow the same pattern as HTMLCollection</a>");
7
8             var namedFlowCollection = document.webkitGetNamedFlows();
9             shouldBeUndefined("namedFlowCollection[0]");
10             shouldBeUndefined("namedFlowCollection['flow']");
11             shouldBeNull("namedFlowCollection.item(0)");
12             shouldBeNull("namedFlowCollection.namedItem('flow')");
13         </script>
14     </body>
15 </html>