tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / platform / mac / accessibility / estimated-progress.html
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../../../fast/js/resources/js-test-pre.js"></script>
5 </head>
6 <body id="body">
7
8 <img src="resources/cake.png">
9
10 <p id="description"></p>
11 <div id="console"></div>
12
13 <script>
14
15     description("This test makes sure the loading progress of a webpage can be retrieved.");
16
17     if (window.accessibilityController) {
18
19           var obj = accessibilityController.rootElement.childAtIndex(0);
20           shouldBe("obj.role", "'AXRole: AXWebArea'");
21           shouldBe("obj.isAttributeSupported('AXLoadingProgress')", "true");
22     }
23
24 </script>
25
26 <script src="../../../fast/js/resources/js-test-post.js"></script>
27 </body>
28 </html>