OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <title>Budget API: Verifies that the right Budget API interfaces get exposed .</title> | |
5 <script src="../resources/testharness.js"></script> | |
6 <script src="../resources/testharnessreport.js"></script> | |
7 <script src="../serviceworker/resources/test-helpers.js"></script> | |
8 </head> | |
9 <body> | |
10 <script> | |
11 test(function() { | |
12 assert_own_property(Navigator.prototype, 'getCost'); | |
13 assert_own_property(Navigator.prototype, 'getBudget'); | |
14 | |
15 }, 'NavigatorBudget should be exposed and have the expected interface in a Document.'); | |
16 </script> | |
17 </body> | |
18 </html> | |
OLD | NEW |