- From: Dominique Hazael-Massieux via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 23 May 2011 12:47:27 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/contacts/tests/test-cases In directory hutz:/tmp/cvs-serv20911/test-cases Added Files: navigator_implements_contacts.html Log Message: first pass at creating test cases for Contacts, per ACTION-298 --- NEW FILE: navigator_implements_contacts.html --- <!doctype html> <html> <head> <title>Contacts API - navigator implements contacts.find</title> <script src="../impl.js"></script> <script src="http://w3c-test.org/html/tests/resources/testharness.js"></script> <script src="http://w3c-test.org/html/tests/resources/testharnessreport.js"></script> </head> <body> <div id="log"></div> <script> test(function () { assert_own_property(window.navigator, "contacts", "window.navigator has a contacts property"); }); test(function () { assert_true(!!window.navigator.contacts.find, "window.navigator.contacts has a find method"); }); </script> </body> </html>
Received on Monday, 23 May 2011 12:47:29 UTC