Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactPhoneNumber_constructor</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
//==== TEST: ContactPhoneNumber_constructor
//==== LABEL check various arguments for ContactPhoneNumber(number, types, isDefault) constructor
//==== SPEC Tizen Web API:Social:Contact:ContactPhoneNumber:constructor C
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== TEST_CRITERIA CONSTRA CONSTRM
test(function () {
var contactPhoneNumber;
assert_equals(contactPhoneNumber.types[0], "HOME", "types attribute.");
assert_equals(contactPhoneNumber.isDefault, false, "isDefault attribute.");
}, "ContactPhoneNumber_constructor");
+
</script>
</body>
</html>
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactPhoneNumber_constructor_minargs</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
//==== TEST: ContactPhoneNumber_constructor_minargs
//==== LABEL check various arguments for ContactPhoneNumber(number) constructor
//==== SPEC Tizen Web API:Social:Contact:ContactPhoneNumber:constructor C
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== TEST_CRITERIA CONSTRA CONSTRM
test(function () {
var contactPhoneNumber;
assert_equals(contactPhoneNumber.types[0], "VOICE", "types attribute.");
assert_equals(contactPhoneNumber.isDefault, false, "isDefault attribute.");
}, "ContactPhoneNumber_constructor_minargs");
+
</script>
</body>
</html>
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactPhoneNumber_exist</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
//==== TEST: ContactPhoneNumber_exist
//==== LABEL check if ContactPhoneNumber exist
//==== SPEC Tizen Web API:Social:Contact:ContactPhoneNumber:constructor C
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== TEST_CRITERIA CONSTRF
test(function () {
check_constructor("ContactPhoneNumber");
}, "ContactPhoneNumber_exist");
+
</script>
</body>
-</html>
\ No newline at end of file
+</html>
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactPhoneNumber_extend</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
//==== LABEL test whether the ContactPhoneNumber object is extendable
//==== PRIORITY P3
//==== SPEC Tizen Web API:Social:Contact:ContactPhoneNumber:ContactPhoneNumber U
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== TEST_CRITERIA OBX
test(function () {
var contactPhoneNumber;
check_extensibility(contactPhoneNumber);
}, "ContactPhoneNumber_extend");
+
</script>
</body>
</html>
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactPhoneNumber_isDefault_attribute</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
//==== TEST: ContactPhoneNumber_isDefault_attribute
//==== LABEL Check ContactPhoneNumber for isDefault attribute
//==== SPEC Tizen Web API:Social:Contact:ContactPhoneNumber:isDefault A
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== TEST_CRITERIA AE AT ASG ADV AN
test(function () {
var contactPhoneNumber, newValue = true;
contactPhoneNumber.isDefault = null;
assert_not_equals(contactPhoneNumber.isDefault, null, "operation no accept null");
}, "ContactPhoneNumber_isDefault_attribute");
+
</script>
</body>
</html>
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactPhoneNumber_number_attribute</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
//==== TEST: ContactPhoneNumber_number_attribute
//==== LABEL Check ContactPhoneNumber for number attribute
//==== SPEC Tizen Web API:Social:Contact:ContactPhoneNumber:number A
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== TEST_CRITERIA AE AT ASG AN
test(function () {
var contactPhoneNumber, newValue = "015-555-5556";
contactPhoneNumber.number = null;
assert_not_equals(contactPhoneNumber.number, null, "operation no accept null");
}, "ContactPhoneNumber_number_attribute");
+
</script>
</body>
</html>
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactPhoneNumber_types_attribute</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
//==== TEST: ContactPhoneNumber_types_attribute
//==== LABEL Check ContactPhoneNumber for types attribute
//==== SPEC Tizen Web API:Social:Contact:ContactPhoneNumber:types A
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== TEST_CRITERIA AE AT ASG AN
test(function () {
var contactPhoneNumber, newValue = "WORK";
contactPhoneNumber.types = null;
assert_not_equals(contactPhoneNumber.types, null, "operation no accept null");
}, "ContactPhoneNumber_types_attribute");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactRef_addressBookId_attribute</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
//==== TEST: ContactRef_addressBookId_attribute
//==== LABEL Check ContactRef for addressBookId attribute
//==== SPEC Tizen Web API:Social:Contact:ContactRef:addressBookId A
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactRef
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== TEST_CRITERIA AE AT ASG AN
test(function () {
var defaultAddressBook, contact, contactRef;
assert_not_equals(contactRef.addressBookId, null, "operation no accept null");
defaultAddressBook.remove(contact.id);
}, "ContactRef_addressBookId_attribute");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactRef_constructor</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
//==== TEST: ContactRef_constructor
//==== LABEL check various arguments for ContactRef_constructor(addressBookId, contactId) constructor
//==== SPEC Tizen Web API:Social:Contact:ContactRef:constructor C
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactRef
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== TEST_CRITERIA CONSTRA CONSTRM
test(function () {
var defaultAddressBook, contact, contactRef;
defaultAddressBook.remove(contact.id);
}, "ContactRef_constructor");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactRef_contactId_attribute</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
//==== TEST: ContactRef_contactId_attribute
//==== LABEL Check ContactRef for contactId attribute
//==== SPEC Tizen Web API:Social:Contact:ContactRef:contactId A
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactRef
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== TEST_CRITERIA AE AT ASG AN
test(function () {
var defaultAddressBook, contact1, contact2, contactRef;
defaultAddressBook.remove(contact1.id);
defaultAddressBook.remove(contact2.id);
}, "ContactRef_contactId_attribute");
+
</script>
</body>
</html>
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactRef_exist</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
//==== TEST: ContactRef_exist
//==== LABEL check if ContactRef exist
//==== SPEC Tizen Web API:Social:Contact:ContactRef:constructor C
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactRef
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== TEST_CRITERIA CONSTRF
test(function () {
check_constructor("ContactRef");
}, "ContactRef_exist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactRef_extend</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
check_extensibility(new tizen.ContactRef(defaultAddressBook.id, contact.id));
defaultAddressBook.remove(contact.id);
}, "ContactRef_extend");
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Xu, Yananx <yananx.xu@intel.com>
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Xu, Yananx <yananx.xu@intel.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
<html>
<head>
-<title>Tizen Contact API - Contact - convertToString </title>
+<title>ContactTextFormat_enum_VCARD_30</title>
<script type="text/javascript" src="../resources/testharness.js"></script>
<script type="text/javascript" src="../resources/testharnessreport.js"></script>
<script type="text/javascript" src="./support/tizen_contact_data_generators.js"></script>
assert_not_equals(contactStr, null, "contactStr should not be null");
defaultAddressBook.remove(contact.id);
}, "ContactTextFormat_enum_VCARD_30");
+
</script>
</body>
</html>
Authors:
Revision history:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
<html>
<head>
-<title>Tizen Contact API - Contact - convertToString </title>
+<title>ContactTextFormat_enum_invalid</title>
<script type="text/javascript" src="../resources/testharness.js"></script>
<script type="text/javascript" src="../resources/testharnessreport.js"></script>
<script type="text/javascript" src="./support/tizen_contact_data_generators.js"></script>
}, "TypeMismatchError exception.");
defaultAddressBook.remove(contact.id);
}, "ContactTextFormat_enum_invalid");
+
</script>
</body>
</html>
-
Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>Contact/UTC_contact</title>
+<title>ContactWebSite_constructor</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/contact_common.js"></script>
//==== LABEL check various arguments for ContactWebSite() constructor
//==== PRIORITY P2
//==== SPEC Tizen Web API:Social:Contact:ContactWebSite:constructor C
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactWebSite
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== TEST_CRITERIA CONSTRA CONSTRM
test(function () {
var contactWebSite = new tizen.ContactWebSite("http://example.com", "BLOG");
assert_equals(contactWebSite.url, "http://example.com", "url attribute.");
assert_equals(contactWebSite.type, "BLOG", "type attribute.");
}, "ContactWebSite_constructor");
+
</script>
</body>
</html>
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>ContactWebSite_exist</title>
<meta charset="utf-8"/>
test(function () {
check_constructor("ContactWebSite");
}, "ContactWebSite_exist");
+
</script>
</body>
</html>
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
<html>
<head>
-<title> AddressBook_extend</title>
+<title>ContactWebSite_extend</title>
<script src="../resources/unitcommon.js"></script>
</head>
//==== TEST: ContactWebSite_extend
//==== LABEL test whether the ContactWebSite object is extendable
//==== SPEC Tizen Web API:Social:Contact:ContactWebSite:ContactWebSite U
-//==== SPEC_URL http://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::AddressBook
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html
//==== PRIORITY P3
//==== TEST_CRITERIA OBX
test(function () {
contactWebSite = new tizen.ContactWebSite("http://example.com", "BLOG");
check_extensibility(contactWebSite);
}, "ContactWebSite_extend");
+
</script>
</body>
</html>
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>ContactWebSite_type_attribute</title>
<meta charset="utf-8"/>
contactWebSite.type = null;
assert_not_equals(contactWebSite.type, null, "operation no accept null");
}, "ContactWebSite_type_attribute");
+
</script>
</body>
</html>
Authors:
- Tomasz Paciorek <t.paciorek@samsung.com>
+ Tomasz Paciorek <t.paciorek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>ContactWebSite_url_attribute</title>
<meta charset="utf-8"/>
contactWebSite.url = null;
assert_not_equals(contactWebSite.url, null, "operation no accept null");
}, "ContactWebSite_url_attribute");
+
</script>
</body>
</html>
<specs>
<spec>
<spec_assertion interface="ContactPhoneNumber" element_type="constructor" element_name="constructor" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="ContactWebSite" element_type="constructor" element_name="constructor" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactWebSite</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="ContactRef" element_type="constructor" element_name="constructor" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactRef</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="ContactRef" element_type="constructor" element_name="constructor" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactRef</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="ContactRef" element_type="attribute" element_name="addressBookId" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactRef</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="ContactRef" element_type="attribute" element_name="contactId" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactRef</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="ContactPhoneNumber" element_type="constructor" element_name="constructor" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="ContactPhoneNumber" element_type="constructor" element_name="constructor" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="ContactPhoneNumber" element_type="attribute" element_name="isDefault" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="ContactPhoneNumber" element_type="attribute" element_name="number" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="ContactPhoneNumber" element_type="attribute" element_name="types" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="ContactPhoneNumber" usage="true" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::ContactPhoneNumber</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="ContactWebSite" usage="true" specification="Contact" section="Social" category="Tizen Device API Specifications"/>
- <spec_url>http://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html#::Contact::AddressBook</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/contact.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>