mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset 83d14fd3d739 (bug 1025483) for using the wrong bug number
--HG-- extra : rebase_source : 24fc50975af3063010cd038558b2edb20658c31f
This commit is contained in:
parent
5d03bd7344
commit
230b7df7aa
@ -1,141 +0,0 @@
|
|||||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
||||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file contains the list of field names that are used in @autocomplete
|
|
||||||
* attribute for <input>, <select> and <textarea> controls. It is designed
|
|
||||||
* to be used as inline input through the magic of C preprocessing.
|
|
||||||
*
|
|
||||||
* The first argument to AUTOCOMPLETE_* macro is the identifier for the token
|
|
||||||
* The second argument is the string value of the token
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef AUTOCOMPLETE_FIELD_NAME
|
|
||||||
#define AUTOCOMPLETE_FIELD_NAME(name_, value_)
|
|
||||||
#define DEFINED_AUTOCOMPLETE_FIELD_NAME
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef AUTOCOMPLETE_CONTACT_FIELD_NAME
|
|
||||||
#define AUTOCOMPLETE_CONTACT_FIELD_NAME(name_, value_)
|
|
||||||
#define DEFINED_AUTOCOMPLETE_CONTACT_FIELD_NAME
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef AUTOCOMPLETE_FIELD_HINT
|
|
||||||
#define AUTOCOMPLETE_FIELD_HINT(name_, value_)
|
|
||||||
#define DEFINED_AUTOCOMPLETE_FIELD_HINT
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef AUTOCOMPLETE_FIELD_CONTACT_HINT
|
|
||||||
#define AUTOCOMPLETE_FIELD_CONTACT_HINT(name_, value_)
|
|
||||||
#define DEFINED_AUTOCOMPLETE_FIELD_CONTACT_HINT
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef AUTOCOMPLETE_CATEGORY
|
|
||||||
#define AUTOCOMPLETE_CATEGORY(name_, value_)
|
|
||||||
#define DEFINED_AUTOCOMPLETE_CATEGORY
|
|
||||||
#endif
|
|
||||||
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(OFF, "off")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(ON, "on")
|
|
||||||
|
|
||||||
// Name types
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(NAME, "name")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(HONORIFIX_PREFIX, "honorifix-prefix")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(GIVEN_NAME, "given-name")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(ADDITIONAL_NAME, "additional-name")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(FAMILY_NAME, "family-name")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(HONORIFIX_SUFFIX, "honorifix-suffix")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(NICKNAME, "nickname")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(ORGANIZATION_TITLE, "organization-title")
|
|
||||||
|
|
||||||
// Login types
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(USERNAME, "username")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(NEW_PASSWORD, "new-password")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(CURRENT_PASSWORD, "current-password")
|
|
||||||
|
|
||||||
// Address types
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(ORGANIZATION, "organization")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(STREET_ADDRESS, "street-address")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(ADDRESS_LINE1, "address-line1")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(ADDRESS_LINE2, "address-line2")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(ADDRESS_LINE3, "address-line3")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(ADDRESS_LEVEL4, "address-level4")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(ADDRESS_LEVEL3, "address-level3")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(ADDRESS_LEVEL2, "address-level2")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(ADDRESS_LEVEL1, "address-level1")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(COUNTRY, "country")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(COUNTRY_NAME, "country-name")
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(POSTAL_CODE, "postal-code")
|
|
||||||
|
|
||||||
// Credit Card types
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(CC_NAME, "cc-name")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(CC_GIVEN_NAME, "cc-given-name")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(CC_ADDITIONAL_NAME, "cc-additional-name")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(CC_FAMILY_NAME, "cc-family-name")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(CC_NUMBER, "cc-number")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(CC_EXP, "cc-exp")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(CC_EXP_MONTH, "cc-exp-month")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(CC_EXP_YEAR, "cc-exp-year")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(CC_CSC, "cc-csc")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(CC_TYPE, "cc-type")
|
|
||||||
|
|
||||||
// Additional field types
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(LANGUAGE, "language")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(BDAY, "bday")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(BDAY_DAY, "bday-day")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(BDAY_MONTH, "bday-month")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(BDAY_YEAR, "bday-year")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(SEX, "sex")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(URL, "url")
|
|
||||||
// AUTOCOMPLETE_FIELD_NAME(PHOTO, "photo")
|
|
||||||
|
|
||||||
// Contact category types
|
|
||||||
AUTOCOMPLETE_CONTACT_FIELD_NAME(TEL, "tel")
|
|
||||||
AUTOCOMPLETE_CONTACT_FIELD_NAME(TEL_COUNTRY_CODE, "tel-country-code")
|
|
||||||
AUTOCOMPLETE_CONTACT_FIELD_NAME(TEL_NATIONAL, "tel-national")
|
|
||||||
AUTOCOMPLETE_CONTACT_FIELD_NAME(TEL_AREA_CODE, "tel-area-code")
|
|
||||||
AUTOCOMPLETE_CONTACT_FIELD_NAME(TEL_LOCAL, "tel-local")
|
|
||||||
AUTOCOMPLETE_CONTACT_FIELD_NAME(TEL_LOCAL_PREFIX, "tel-local-prefix")
|
|
||||||
AUTOCOMPLETE_CONTACT_FIELD_NAME(TEL_LOCAL_SUFFIX, "tel-local-suffix")
|
|
||||||
AUTOCOMPLETE_CONTACT_FIELD_NAME(TEL_EXTENSION, "tel-extension")
|
|
||||||
AUTOCOMPLETE_CONTACT_FIELD_NAME(EMAIL, "email")
|
|
||||||
// AUTOCOMPLETE_CONTACT_FIELD_NAME(IMPP, "impp")
|
|
||||||
|
|
||||||
AUTOCOMPLETE_FIELD_HINT(SHIPPING, "shipping")
|
|
||||||
AUTOCOMPLETE_FIELD_HINT(BILLING, "billing")
|
|
||||||
|
|
||||||
AUTOCOMPLETE_FIELD_CONTACT_HINT(HOME, "home")
|
|
||||||
AUTOCOMPLETE_FIELD_CONTACT_HINT(WORK, "work")
|
|
||||||
AUTOCOMPLETE_FIELD_CONTACT_HINT(MOBILE, "mobile")
|
|
||||||
AUTOCOMPLETE_FIELD_CONTACT_HINT(FAX, "fax")
|
|
||||||
// AUTOCOMPLETE_FIELD_CONTACT_HINT(PAGER, "pager")
|
|
||||||
|
|
||||||
AUTOCOMPLETE_CATEGORY(NORMAL, "normal")
|
|
||||||
AUTOCOMPLETE_CATEGORY(CONTACT, "contact")
|
|
||||||
|
|
||||||
#ifdef DEFINED_AUTOCOMPLETE_FIELD_NAME
|
|
||||||
#undef AUTOCOMPLETE_FIELD_NAME
|
|
||||||
#undef DEFINED_AUTOCOMPLETE_FIELD_NAME
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef DEFINED_AUTOCOMPLETE_CONTACT_FIELD_NAME
|
|
||||||
#undef AUTOCOMPLETE_CONTACT_FIELD_NAME
|
|
||||||
#undef DEFINED_AUTOCOMPLETE_CONTACT_FIELD_NAME
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef DEFINED_AUTOCOMPLETE_FIELD_HINT
|
|
||||||
#undef AUTOCOMPLETE_FIELD_HINT
|
|
||||||
#undef DEFINED_AUTOCOMPLETE_FIELD_HINT
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef DEFINED_AUTOCOMPLETE_FIELD_CONTACT_HINT
|
|
||||||
#undef AUTOCOMPLETE_FIELD_CONTACT_HINT
|
|
||||||
#undef DEFINED_AUTOCOMPLETE_FIELD_CONTACT_HINT
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef DEFINED_AUTOCOMPLETE_CATEGORY
|
|
||||||
#undef AUTOCOMPLETE_CATEGORY
|
|
||||||
#undef DEFINED_AUTOCOMPLETE_CATEGORY
|
|
||||||
#endif
|
|
@ -5,7 +5,6 @@
|
|||||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
EXPORTS += [
|
EXPORTS += [
|
||||||
'AutocompleteFieldList.h',
|
|
||||||
'mozAutoDocUpdate.h',
|
'mozAutoDocUpdate.h',
|
||||||
'nsAtomListUtils.h',
|
'nsAtomListUtils.h',
|
||||||
'nsAttrAndChildArray.h',
|
'nsAttrAndChildArray.h',
|
||||||
|
@ -253,67 +253,155 @@ bool nsContentUtils::sDOMWindowDumpEnabled;
|
|||||||
// Subset of http://www.whatwg.org/specs/web-apps/current-work/#autofill-field-name
|
// Subset of http://www.whatwg.org/specs/web-apps/current-work/#autofill-field-name
|
||||||
enum AutocompleteFieldName
|
enum AutocompleteFieldName
|
||||||
{
|
{
|
||||||
#define AUTOCOMPLETE_FIELD_NAME(name_, value_) \
|
eAutocompleteFieldName_OFF,
|
||||||
eAutocompleteFieldName_##name_,
|
eAutocompleteFieldName_ON,
|
||||||
#define AUTOCOMPLETE_CONTACT_FIELD_NAME(name_, value_) \
|
|
||||||
AUTOCOMPLETE_FIELD_NAME(name_, value_)
|
// Name types
|
||||||
#include "AutocompleteFieldList.h"
|
eAutocompleteFieldName_NAME,
|
||||||
#undef AUTOCOMPLETE_FIELD_NAME
|
//eAutocompleteFieldName_HONORIFIC_PREFIX,
|
||||||
#undef AUTOCOMPLETE_CONTACT_FIELD_NAME
|
eAutocompleteFieldName_GIVEN_NAME,
|
||||||
|
eAutocompleteFieldName_ADDITIONAL_NAME,
|
||||||
|
eAutocompleteFieldName_FAMILY_NAME,
|
||||||
|
//eAutocompleteFieldName_HONORIFIC_SUFFIX,
|
||||||
|
//eAutocompleteFieldName_NICKNAME,
|
||||||
|
//eAutocompleteFieldName_ORGANIZATION_TITLE,
|
||||||
|
|
||||||
|
// Login types
|
||||||
|
eAutocompleteFieldName_USERNAME,
|
||||||
|
eAutocompleteFieldName_NEW_PASSWORD,
|
||||||
|
eAutocompleteFieldName_CURRENT_PASSWORD,
|
||||||
|
|
||||||
|
// Address types
|
||||||
|
eAutocompleteFieldName_ORGANIZATION,
|
||||||
|
eAutocompleteFieldName_STREET_ADDRESS,
|
||||||
|
eAutocompleteFieldName_ADDRESS_LINE1,
|
||||||
|
eAutocompleteFieldName_ADDRESS_LINE2,
|
||||||
|
eAutocompleteFieldName_ADDRESS_LINE3,
|
||||||
|
eAutocompleteFieldName_ADDRESS_LEVEL4,
|
||||||
|
eAutocompleteFieldName_ADDRESS_LEVEL3,
|
||||||
|
eAutocompleteFieldName_ADDRESS_LEVEL2,
|
||||||
|
eAutocompleteFieldName_ADDRESS_LEVEL1,
|
||||||
|
eAutocompleteFieldName_COUNTRY,
|
||||||
|
eAutocompleteFieldName_COUNTRY_NAME,
|
||||||
|
eAutocompleteFieldName_POSTAL_CODE,
|
||||||
|
|
||||||
|
// Credit card types
|
||||||
|
/*
|
||||||
|
eAutocompleteFieldName_CC_NAME,
|
||||||
|
eAutocompleteFieldName_CC_GIVEN_NAME,
|
||||||
|
eAutocompleteFieldName_CC_ADDITIONAL_NAME,
|
||||||
|
eAutocompleteFieldName_CC_FAMILY_NAME,
|
||||||
|
eAutocompleteFieldName_CC_NUMBER,
|
||||||
|
eAutocompleteFieldName_CC_EXP,
|
||||||
|
eAutocompleteFieldName_CC_EXP_MONTH,
|
||||||
|
eAutocompleteFieldName_CC_EXP_YEAR,
|
||||||
|
eAutocompleteFieldName_CC_CSC,
|
||||||
|
eAutocompleteFieldName_CC_TYPE
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Additional field types
|
||||||
|
/*
|
||||||
|
eAutocompleteFieldName_LANGUAGE,
|
||||||
|
eAutocompleteFieldName_BDAY,
|
||||||
|
eAutocompleteFieldName_BDAY_DAY,
|
||||||
|
eAutocompleteFieldName_BDAY_MONTH,
|
||||||
|
eAutocompleteFieldName_BDAY_YEAR,
|
||||||
|
eAutocompleteFieldName_SEX,
|
||||||
|
eAutocompleteFieldName_URL,
|
||||||
|
eAutocompleteFieldName_PHOTO,
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Contact category types
|
||||||
|
eAutocompleteFieldName_TEL,
|
||||||
|
eAutocompleteFieldName_TEL_COUNTRY_CODE,
|
||||||
|
eAutocompleteFieldName_TEL_NATIONAL,
|
||||||
|
eAutocompleteFieldName_TEL_AREA_CODE,
|
||||||
|
eAutocompleteFieldName_TEL_LOCAL,
|
||||||
|
eAutocompleteFieldName_TEL_LOCAL_PREFIX,
|
||||||
|
eAutocompleteFieldName_TEL_LOCAL_SUFFIX,
|
||||||
|
eAutocompleteFieldName_TEL_EXTENSION,
|
||||||
|
eAutocompleteFieldName_EMAIL,
|
||||||
|
//eAutocompleteFieldName_IMPP,
|
||||||
|
|
||||||
|
eAutocompleteFieldName_last, // Dummy to check table sizes
|
||||||
};
|
};
|
||||||
|
|
||||||
enum AutocompleteFieldHint
|
enum AutocompleteFieldHint
|
||||||
{
|
{
|
||||||
#define AUTOCOMPLETE_FIELD_HINT(name_, value_) \
|
eAutocompleteFieldHint_SHIPPING,
|
||||||
eAutocompleteFieldHint_##name_,
|
eAutocompleteFieldHint_BILLING,
|
||||||
#include "AutocompleteFieldList.h"
|
eAutocompleteFieldHint_last, // Dummy to check table sizes
|
||||||
#undef AUTOCOMPLETE_FIELD_HINT
|
|
||||||
};
|
};
|
||||||
|
|
||||||
enum AutocompleteFieldContactHint
|
enum AutocompleteFieldContactHint
|
||||||
{
|
{
|
||||||
#define AUTOCOMPLETE_FIELD_CONTACT_HINT(name_, value_) \
|
eAutocompleteFieldContactHint_HOME,
|
||||||
eAutocompleteFieldContactHint_##name_,
|
eAutocompleteFieldContactHint_WORK,
|
||||||
#include "AutocompleteFieldList.h"
|
eAutocompleteFieldContactHint_MOBILE,
|
||||||
#undef AUTOCOMPLETE_FIELD_CONTACT_HINT
|
eAutocompleteFieldContactHint_FAX,
|
||||||
|
//eAutocompleteFieldContactHint_PAGER,
|
||||||
|
eAutocompleteFieldContactHint_last, // Dummy to check table sizes
|
||||||
};
|
};
|
||||||
|
|
||||||
enum AutocompleteCategory
|
enum AutocompleteCategory
|
||||||
{
|
{
|
||||||
#define AUTOCOMPLETE_CATEGORY(name_, value_) eAutocompleteCategory_##name_,
|
eAutocompleteCategory_NORMAL,
|
||||||
#include "AutocompleteFieldList.h"
|
eAutocompleteCategory_CONTACT,
|
||||||
#undef AUTOCOMPLETE_CATEGORY
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static const nsAttrValue::EnumTable kAutocompleteFieldNameTable[] = {
|
static const nsAttrValue::EnumTable kAutocompleteFieldNameTable[] = {
|
||||||
#define AUTOCOMPLETE_FIELD_NAME(name_, value_) \
|
{ "off", eAutocompleteFieldName_OFF },
|
||||||
{ value_, eAutocompleteFieldName_##name_ },
|
{ "on", eAutocompleteFieldName_ON },
|
||||||
#include "AutocompleteFieldList.h"
|
|
||||||
#undef AUTOCOMPLETE_FIELD_NAME
|
{ "name", eAutocompleteFieldName_NAME },
|
||||||
|
{ "given-name", eAutocompleteFieldName_GIVEN_NAME },
|
||||||
|
{ "additional-name", eAutocompleteFieldName_ADDITIONAL_NAME },
|
||||||
|
{ "family-name", eAutocompleteFieldName_FAMILY_NAME },
|
||||||
|
|
||||||
|
{ "username", eAutocompleteFieldName_USERNAME },
|
||||||
|
{ "new-password", eAutocompleteFieldName_NEW_PASSWORD },
|
||||||
|
{ "current-password", eAutocompleteFieldName_CURRENT_PASSWORD },
|
||||||
|
|
||||||
|
{ "organization", eAutocompleteFieldName_ORGANIZATION },
|
||||||
|
{ "street-address", eAutocompleteFieldName_STREET_ADDRESS },
|
||||||
|
{ "address-line1", eAutocompleteFieldName_ADDRESS_LINE1 },
|
||||||
|
{ "address-line2", eAutocompleteFieldName_ADDRESS_LINE2 },
|
||||||
|
{ "address-line3", eAutocompleteFieldName_ADDRESS_LINE3 },
|
||||||
|
{ "address-level4", eAutocompleteFieldName_ADDRESS_LEVEL4 },
|
||||||
|
{ "address-level3", eAutocompleteFieldName_ADDRESS_LEVEL3 },
|
||||||
|
{ "address-level2", eAutocompleteFieldName_ADDRESS_LEVEL2 },
|
||||||
|
{ "address-level1", eAutocompleteFieldName_ADDRESS_LEVEL1 },
|
||||||
|
{ "country", eAutocompleteFieldName_COUNTRY },
|
||||||
|
{ "country-name", eAutocompleteFieldName_COUNTRY_NAME },
|
||||||
|
{ "postal-code", eAutocompleteFieldName_POSTAL_CODE },
|
||||||
{ 0 }
|
{ 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
static const nsAttrValue::EnumTable kAutocompleteContactFieldNameTable[] = {
|
static const nsAttrValue::EnumTable kAutocompleteContactFieldNameTable[] = {
|
||||||
#define AUTOCOMPLETE_CONTACT_FIELD_NAME(name_, value_) \
|
{ "tel", eAutocompleteFieldName_TEL },
|
||||||
{ value_, eAutocompleteFieldName_##name_ },
|
{ "tel-country-code", eAutocompleteFieldName_TEL_COUNTRY_CODE },
|
||||||
#include "AutocompleteFieldList.h"
|
{ "tel-national", eAutocompleteFieldName_TEL_NATIONAL },
|
||||||
#undef AUTOCOMPLETE_CONTACT_FIELD_NAME
|
{ "tel-area-code", eAutocompleteFieldName_TEL_AREA_CODE },
|
||||||
|
{ "tel-local", eAutocompleteFieldName_TEL_LOCAL },
|
||||||
|
{ "tel-local-prefix", eAutocompleteFieldName_TEL_LOCAL_PREFIX },
|
||||||
|
{ "tel-local-suffix", eAutocompleteFieldName_TEL_LOCAL_SUFFIX },
|
||||||
|
{ "tel-extension", eAutocompleteFieldName_TEL_EXTENSION },
|
||||||
|
|
||||||
|
{ "email", eAutocompleteFieldName_EMAIL },
|
||||||
{ 0 }
|
{ 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
static const nsAttrValue::EnumTable kAutocompleteFieldHintTable[] = {
|
static const nsAttrValue::EnumTable kAutocompleteFieldHintTable[] = {
|
||||||
#define AUTOCOMPLETE_FIELD_HINT(name_, value_) \
|
{ "shipping", eAutocompleteFieldHint_SHIPPING },
|
||||||
{ value_, eAutocompleteFieldHint_##name_ },
|
{ "billing", eAutocompleteFieldHint_BILLING },
|
||||||
#include "AutocompleteFieldList.h"
|
|
||||||
#undef AUTOCOMPLETE_FIELD_HINT
|
|
||||||
{ 0 }
|
{ 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
static const nsAttrValue::EnumTable kAutocompleteContactFieldHintTable[] = {
|
static const nsAttrValue::EnumTable kAutocompleteContactFieldHintTable[] = {
|
||||||
#define AUTOCOMPLETE_FIELD_CONTACT_HINT(name_, value_) \
|
{ "home", eAutocompleteFieldContactHint_HOME },
|
||||||
{ value_, eAutocompleteFieldContactHint_##name_ },
|
{ "work", eAutocompleteFieldContactHint_WORK },
|
||||||
#include "AutocompleteFieldList.h"
|
{ "mobile", eAutocompleteFieldContactHint_MOBILE },
|
||||||
#undef AUTOCOMPLETE_FIELD_CONTACT_HINT
|
{ "fax", eAutocompleteFieldContactHint_FAX },
|
||||||
{ 0 }
|
{ 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -436,6 +524,12 @@ nsContentUtils::Init()
|
|||||||
return NS_OK;
|
return NS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check that all the entries in the autocomplete enums are handled in EnumTables
|
||||||
|
MOZ_ASSERT(eAutocompleteFieldName_last == ArrayLength(kAutocompleteFieldNameTable)
|
||||||
|
+ ArrayLength(kAutocompleteContactFieldNameTable) - 2);
|
||||||
|
MOZ_ASSERT(eAutocompleteFieldHint_last == ArrayLength(kAutocompleteFieldHintTable) - 1);
|
||||||
|
MOZ_ASSERT(eAutocompleteFieldContactHint_last == ArrayLength(kAutocompleteContactFieldHintTable) - 1);
|
||||||
|
|
||||||
sNameSpaceManager = nsNameSpaceManager::GetInstance();
|
sNameSpaceManager = nsNameSpaceManager::GetInstance();
|
||||||
NS_ENSURE_TRUE(sNameSpaceManager, NS_ERROR_OUT_OF_MEMORY);
|
NS_ENSURE_TRUE(sNameSpaceManager, NS_ERROR_OUT_OF_MEMORY);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user