Changeset 20916 for S60/trunk/WebCore
- Timestamp:
- 04/17/07 07:00:56 (21 months ago)
- Location:
- S60/trunk/WebCore
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
khtml/ecma/kjs_css.cpp (modified) (23 diffs)
Legend:
- Unmodified
- Added
- Removed
-
S60/trunk/WebCore/ChangeLog
r20870 r20916 1 2007-04-17 bujtas <zbujtas@gmail.com> 2 3 Reviewed by Yongjun. 4 DESC: else if (p == "cssValueType"); <- 5 http://bugs.webkit.org/show_bug.cgi?id=13372 6 7 8 * khtml/ecma/kjs_css.cpp: 9 (cssPropertyName): 10 (DOMCSSStyleDeclaration::tryPut): 11 (DOMCSSValue::tryGet): 12 (DOMRGBColor::tryGet): 13 (DOMRect::tryGet): 14 (DOMCounter::tryGet): 15 1 16 anapatil <anand.1.patil@nokia.com> 2 17 -
S60/trunk/WebCore/khtml/ecma/kjs_css.cpp
r14549 r20916 38 38 int i = prop.length(); 39 39 while (--i) { 40 char c = prop[i].latin1();41 if (c >= 'A' && c <= 'Z')40 char c = prop[i].latin1(); 41 if (c >= 'A' && c <= 'Z') 42 42 prop.insert(i, '-'); 43 43 } … … 67 67 /* 68 68 @begin DOMCSSStyleDeclarationProtoTable 7 69 getPropertyValue DOMCSSStyleDeclaration::GetPropertyValueDontDelete|Function 170 getPropertyCSSValue DOMCSSStyleDeclaration::GetPropertyCSSValueDontDelete|Function 171 removeProperty DOMCSSStyleDeclaration::RemovePropertyDontDelete|Function 172 getPropertyPriority DOMCSSStyleDeclaration::GetPropertyPriorityDontDelete|Function 173 setProperty DOMCSSStyleDeclaration::SetPropertyDontDelete|Function 374 item DOMCSSStyleDeclaration::ItemDontDelete|Function 169 getPropertyValue DOMCSSStyleDeclaration::GetPropertyValue DontDelete|Function 1 70 getPropertyCSSValue DOMCSSStyleDeclaration::GetPropertyCSSValue DontDelete|Function 1 71 removeProperty DOMCSSStyleDeclaration::RemoveProperty DontDelete|Function 1 72 getPropertyPriority DOMCSSStyleDeclaration::GetPropertyPriority DontDelete|Function 1 73 setProperty DOMCSSStyleDeclaration::SetProperty DontDelete|Function 3 74 item DOMCSSStyleDeclaration::Item DontDelete|Function 1 75 75 @end 76 76 @begin DOMCSSStyleDeclarationTable 3 77 cssText DOMCSSStyleDeclaration::CssTextDontDelete78 length DOMCSSStyleDeclaration::LengthDontDelete|ReadOnly79 parentRule DOMCSSStyleDeclaration::ParentRuleDontDelete|ReadOnly77 cssText DOMCSSStyleDeclaration::CssText DontDelete 78 length DOMCSSStyleDeclaration::Length DontDelete|ReadOnly 79 parentRule DOMCSSStyleDeclaration::ParentRule DontDelete|ReadOnly 80 80 @end 81 81 */ … … 180 180 QString propvalue = value.toString(exec).qstring(); 181 181 if (pixelOrPos) 182 propvalue += "px";182 propvalue += "px"; 183 183 #ifdef KJS_VERBOSE 184 184 kdDebug(6070) << "DOMCSSStyleDeclaration: prop=" << prop << " propvalue=" << propvalue << endl; … … 186 186 styleDecl.removeProperty(prop); 187 187 if(!propvalue.isEmpty()) 188 styleDecl.setProperty(prop,DOM::DOMString(propvalue),""); // ### is "" ok for priority?188 styleDecl.setProperty(prop,DOM::DOMString(propvalue),""); // ### is "" ok for priority? 189 189 } else { 190 190 DOMObject::tryPut(exec, propertyName, value, attr); … … 235 235 /* 236 236 @begin DOMStyleSheetTable 7 237 type DOMStyleSheet::TypeDontDelete|ReadOnly238 disabled DOMStyleSheet::DisabledDontDelete239 ownerNode DOMStyleSheet::OwnerNodeDontDelete|ReadOnly240 parentStyleSheet DOMStyleSheet::ParentStyleSheet DontDelete|ReadOnly241 href DOMStyleSheet::HrefDontDelete|ReadOnly242 title DOMStyleSheet::TitleDontDelete|ReadOnly243 media DOMStyleSheet::MediaDontDelete|ReadOnly237 type DOMStyleSheet::Type DontDelete|ReadOnly 238 disabled DOMStyleSheet::Disabled DontDelete 239 ownerNode DOMStyleSheet::OwnerNode DontDelete|ReadOnly 240 parentStyleSheet DOMStyleSheet::ParentStyleSheet DontDelete|ReadOnly 241 href DOMStyleSheet::Href DontDelete|ReadOnly 242 title DOMStyleSheet::Title DontDelete|ReadOnly 243 media DOMStyleSheet::Media DontDelete|ReadOnly 244 244 @end 245 245 */ … … 312 312 /* 313 313 @begin DOMStyleSheetListTable 2 314 length DOMStyleSheetList::LengthDontDelete|ReadOnly315 item DOMStyleSheetList::ItemDontDelete|Function 1314 length DOMStyleSheetList::Length DontDelete|ReadOnly 315 item DOMStyleSheetList::Item DontDelete|Function 1 316 316 @end 317 317 */ … … 408 408 /* 409 409 @begin DOMMediaListTable 2 410 mediaText DOMMediaList::MediaTextDontDelete|ReadOnly411 length DOMMediaList::LengthDontDelete|ReadOnly410 mediaText DOMMediaList::MediaText DontDelete|ReadOnly 411 length DOMMediaList::Length DontDelete|ReadOnly 412 412 @end 413 413 @begin DOMMediaListProtoTable 3 414 item DOMMediaList::ItemDontDelete|Function 1415 deleteMedium DOMMediaList::DeleteMediumDontDelete|Function 1416 appendMedium DOMMediaList::AppendMediumDontDelete|Function 1414 item DOMMediaList::Item DontDelete|Function 1 415 deleteMedium DOMMediaList::DeleteMedium DontDelete|Function 1 416 appendMedium DOMMediaList::AppendMedium DontDelete|Function 1 417 417 @end 418 418 */ … … 488 488 /* 489 489 @begin DOMCSSStyleSheetTable 5 490 ownerRule DOMCSSStyleSheet::OwnerRuleDontDelete|ReadOnly491 cssRules DOMCSSStyleSheet::CssRulesDontDelete|ReadOnly490 ownerRule DOMCSSStyleSheet::OwnerRule DontDelete|ReadOnly 491 cssRules DOMCSSStyleSheet::CssRules DontDelete|ReadOnly 492 492 # MSIE extension 493 rules DOMCSSStyleSheet::RulesDontDelete|ReadOnly493 rules DOMCSSStyleSheet::Rules DontDelete|ReadOnly 494 494 @end 495 495 @begin DOMCSSStyleSheetProtoTable 6 496 insertRule DOMCSSStyleSheet::InsertRuleDontDelete|Function 2497 deleteRule DOMCSSStyleSheet::DeleteRuleDontDelete|Function 1496 insertRule DOMCSSStyleSheet::InsertRule DontDelete|Function 2 497 deleteRule DOMCSSStyleSheet::DeleteRule DontDelete|Function 1 498 498 # MSIE extension 499 addRule DOMCSSStyleSheet::AddRuleDontDelete|Function 2499 addRule DOMCSSStyleSheet::AddRule DontDelete|Function 2 500 500 @end 501 501 */ … … 555 555 /* 556 556 @begin DOMCSSRuleListTable 3 557 length DOMCSSRuleList::LengthDontDelete|ReadOnly558 item DOMCSSRuleList::ItemDontDelete|Function 1557 length DOMCSSRuleList::Length DontDelete|ReadOnly 558 item DOMCSSRuleList::Item DontDelete|Function 1 559 559 @end 560 560 */ … … 642 642 /* 643 643 @begin DOMCSSRuleTable 4 644 type DOMCSSRule::TypeDontDelete|ReadOnly645 cssText DOMCSSRule::CssTextDontDelete|ReadOnly646 parentStyleSheet DOMCSSRule::ParentStyleSheetDontDelete|ReadOnly647 parentRule DOMCSSRule::ParentRuleDontDelete|ReadOnly644 type DOMCSSRule::Type DontDelete|ReadOnly 645 cssText DOMCSSRule::CssText DontDelete|ReadOnly 646 parentStyleSheet DOMCSSRule::ParentStyleSheet DontDelete|ReadOnly 647 parentRule DOMCSSRule::ParentRule DontDelete|ReadOnly 648 648 @end 649 649 @begin DOMCSSStyleRuleTable 2 650 selectorText DOMCSSRule::Style_SelectorTextDontDelete651 style DOMCSSRule::Style_StyleDontDelete|ReadOnly650 selectorText DOMCSSRule::Style_SelectorText DontDelete 651 style DOMCSSRule::Style_Style DontDelete|ReadOnly 652 652 @end 653 653 @begin DOMCSSMediaRuleTable 4 654 media DOMCSSRule::Media_MediaDontDelete|ReadOnly655 cssRules DOMCSSRule::Media_CssRulesDontDelete|ReadOnly656 insertRule DOMCSSRule::Media_InsertRuleDontDelete|Function 2657 deleteRule DOMCSSRule::Media_DeleteRuleDontDelete|Function 1654 media DOMCSSRule::Media_Media DontDelete|ReadOnly 655 cssRules DOMCSSRule::Media_CssRules DontDelete|ReadOnly 656 insertRule DOMCSSRule::Media_InsertRule DontDelete|Function 2 657 deleteRule DOMCSSRule::Media_DeleteRule DontDelete|Function 1 658 658 @end 659 659 @begin DOMCSSFontFaceRuleTable 1 660 style DOMCSSRule::FontFace_StyleDontDelete|ReadOnly660 style DOMCSSRule::FontFace_Style DontDelete|ReadOnly 661 661 @end 662 662 @begin DOMCSSPageRuleTable 2 663 selectorText DOMCSSRule::Page_SelectorTextDontDelete664 style DOMCSSRule::Page_StyleDontDelete|ReadOnly663 selectorText DOMCSSRule::Page_SelectorText DontDelete 664 style DOMCSSRule::Page_Style DontDelete|ReadOnly 665 665 @end 666 666 @begin DOMCSSImportRuleTable 3 667 href DOMCSSRule::Import_HrefDontDelete|ReadOnly668 media DOMCSSRule::Import_MediaDontDelete|ReadOnly669 styleSheet DOMCSSRule::Import_StyleSheetDontDelete|ReadOnly667 href DOMCSSRule::Import_Href DontDelete|ReadOnly 668 media DOMCSSRule::Import_Media DontDelete|ReadOnly 669 styleSheet DOMCSSRule::Import_StyleSheet DontDelete|ReadOnly 670 670 @end 671 671 @begin DOMCSSCharsetRuleTable 1 672 encoding DOMCSSRule::Charset_EncodingDontDelete672 encoding DOMCSSRule::Charset_Encoding DontDelete 673 673 @end 674 674 */ … … 827 827 /* 828 828 @begin CSSRuleConstructorTable 7 829 UNKNOWN_RULE CSSRuleConstructor::UNKNOWN_RULEDontDelete|ReadOnly830 STYLE_RULE CSSRuleConstructor::STYLE_RULEDontDelete|ReadOnly831 CHARSET_RULE CSSRuleConstructor::CHARSET_RULEDontDelete|ReadOnly832 IMPORT_RULE CSSRuleConstructor::IMPORT_RULEDontDelete|ReadOnly833 MEDIA_RULE CSSRuleConstructor::MEDIA_RULEDontDelete|ReadOnly834 FONT_FACE_RULE CSSRuleConstructor::FONT_FACE_RULE DontDelete|ReadOnly835 PAGE_RULE CSSRuleConstructor::PAGE_RULEDontDelete|ReadOnly829 UNKNOWN_RULE CSSRuleConstructor::UNKNOWN_RULE DontDelete|ReadOnly 830 STYLE_RULE CSSRuleConstructor::STYLE_RULE DontDelete|ReadOnly 831 CHARSET_RULE CSSRuleConstructor::CHARSET_RULE DontDelete|ReadOnly 832 IMPORT_RULE CSSRuleConstructor::IMPORT_RULE DontDelete|ReadOnly 833 MEDIA_RULE CSSRuleConstructor::MEDIA_RULE DontDelete|ReadOnly 834 FONT_FACE_RULE CSSRuleConstructor::FONT_FACE_RULE DontDelete|ReadOnly 835 PAGE_RULE CSSRuleConstructor::PAGE_RULE DontDelete|ReadOnly 836 836 @end 837 837 */ … … 878 878 /* 879 879 @begin DOMCSSValueTable 2 880 cssText DOMCSSValue::CssTextDontDelete|ReadOnly881 cssValueType DOMCSSValue::CssValueTypeDontDelete|ReadOnly880 cssText DOMCSSValue::CssText DontDelete|ReadOnly 881 cssValueType DOMCSSValue::CssValueType DontDelete|ReadOnly 882 882 @end 883 883 */ … … 891 891 if (p == "cssText") 892 892 return getStringOrNull(cssValue.cssText()); 893 else if (p == "cssValueType") ;893 else if (p == "cssValueType") 894 894 return Number(cssValue.cssValueType()); 895 895 return DOMObject::tryGet(exec,p); … … 929 929 /* 930 930 @begin CSSValueConstructorTable 5 931 CSS_INHERIT CSSValueConstructor::CSS_INHERITDontDelete|ReadOnly932 CSS_PRIMITIVE_VALUE CSSValueConstructor::CSS_PRIMITIVE_VALUEDontDelete|ReadOnly933 CSS_VALUE_LIST CSSValueConstructor::CSS_VALUE_LISTDontDelete|ReadOnly934 CSS_CUSTOM CSSValueConstructor::CSS_CUSTOMDontDelete|ReadOnly931 CSS_INHERIT CSSValueConstructor::CSS_INHERIT DontDelete|ReadOnly 932 CSS_PRIMITIVE_VALUE CSSValueConstructor::CSS_PRIMITIVE_VALUE DontDelete|ReadOnly 933 CSS_VALUE_LIST CSSValueConstructor::CSS_VALUE_LIST DontDelete|ReadOnly 934 CSS_CUSTOM CSSValueConstructor::CSS_CUSTOM DontDelete|ReadOnly 935 935 @end 936 936 */ … … 965 965 /* 966 966 @begin DOMCSSPrimitiveValueTable 1 967 primitiveType DOMCSSPrimitiveValue::PrimitiveTypeDontDelete|ReadOnly967 primitiveType DOMCSSPrimitiveValue::PrimitiveType DontDelete|ReadOnly 968 968 @end 969 969 @begin DOMCSSPrimitiveValueProtoTable 3 970 setFloatValue DOMCSSPrimitiveValue::SetFloatValueDontDelete|Function 2971 getFloatValue DOMCSSPrimitiveValue::GetFloatValueDontDelete|Function 1972 setStringValue DOMCSSPrimitiveValue::SetStringValueDontDelete|Function 2973 getStringValue DOMCSSPrimitiveValue::GetStringValueDontDelete|Function 0974 getCounterValue DOMCSSPrimitiveValue::GetCounterValueDontDelete|Function 0975 getRectValue DOMCSSPrimitiveValue::GetRectValueDontDelete|Function 0976 getRGBColorValue DOMCSSPrimitiveValue::GetRGBColorValueDontDelete|Function 0970 setFloatValue DOMCSSPrimitiveValue::SetFloatValue DontDelete|Function 2 971 getFloatValue DOMCSSPrimitiveValue::GetFloatValue DontDelete|Function 1 972 setStringValue DOMCSSPrimitiveValue::SetStringValue DontDelete|Function 2 973 getStringValue DOMCSSPrimitiveValue::GetStringValue DontDelete|Function 0 974 getCounterValue DOMCSSPrimitiveValue::GetCounterValue DontDelete|Function 0 975 getRectValue DOMCSSPrimitiveValue::GetRectValue DontDelete|Function 0 976 getRGBColorValue DOMCSSPrimitiveValue::GetRGBColorValue DontDelete|Function 0 977 977 @end 978 978 */ … … 1030 1030 /* 1031 1031 @begin CSSPrimitiveValueConstructorTable 27 1032 CSS_UNKNOWN DOM::CSSPrimitiveValue::CSS_UNKNOWNDontDelete|ReadOnly1033 CSS_NUMBER DOM::CSSPrimitiveValue::CSS_NUMBERDontDelete|ReadOnly1034 CSS_PERCENTAGE DOM::CSSPrimitiveValue::CSS_PERCENTAGEDontDelete|ReadOnly1035 CSS_EMS DOM::CSSPrimitiveValue::CSS_EMSDontDelete|ReadOnly1036 CSS_EXS DOM::CSSPrimitiveValue::CSS_EXSDontDelete|ReadOnly1037 CSS_PX DOM::CSSPrimitiveValue::CSS_PXDontDelete|ReadOnly1038 CSS_CM DOM::CSSPrimitiveValue::CSS_CMDontDelete|ReadOnly1039 CSS_MM DOM::CSSPrimitiveValue::CSS_MMDontDelete|ReadOnly1040 CSS_IN DOM::CSSPrimitiveValue::CSS_INDontDelete|ReadOnly1041 CSS_PT DOM::CSSPrimitiveValue::CSS_PTDontDelete|ReadOnly1042 CSS_PC DOM::CSSPrimitiveValue::CSS_PCDontDelete|ReadOnly1043 CSS_DEG DOM::CSSPrimitiveValue::CSS_DEGDontDelete|ReadOnly1044 CSS_RAD DOM::CSSPrimitiveValue::CSS_RADDontDelete|ReadOnly1045 CSS_GRAD DOM::CSSPrimitiveValue::CSS_GRADDontDelete|ReadOnly1046 CSS_MS DOM::CSSPrimitiveValue::CSS_MSDontDelete|ReadOnly1047 CSS_S DOM::CSSPrimitiveValue::CSS_SDontDelete|ReadOnly1048 CSS_HZ DOM::CSSPrimitiveValue::CSS_HZDontDelete|ReadOnly1049 CSS_KHZ DOM::CSSPrimitiveValue::CSS_KHZDontDelete|ReadOnly1050 CSS_DIMENSION DOM::CSSPrimitiveValue::CSS_DIMENSIONDontDelete|ReadOnly1051 CSS_STRING DOM::CSSPrimitiveValue::CSS_STRINGDontDelete|ReadOnly1052 CSS_URI DOM::CSSPrimitiveValue::CSS_URIDontDelete|ReadOnly1053 CSS_IDENT DOM::CSSPrimitiveValue::CSS_IDENTDontDelete|ReadOnly1054 CSS_ATTR DOM::CSSPrimitiveValue::CSS_ATTRDontDelete|ReadOnly1055 CSS_COUNTER DOM::CSSPrimitiveValue::CSS_COUNTERDontDelete|ReadOnly1056 CSS_RECT DOM::CSSPrimitiveValue::CSS_RECTDontDelete|ReadOnly1057 CSS_RGBCOLOR DOM::CSSPrimitiveValue::CSS_RGBCOLORDontDelete|ReadOnly1032 CSS_UNKNOWN DOM::CSSPrimitiveValue::CSS_UNKNOWN DontDelete|ReadOnly 1033 CSS_NUMBER DOM::CSSPrimitiveValue::CSS_NUMBER DontDelete|ReadOnly 1034 CSS_PERCENTAGE DOM::CSSPrimitiveValue::CSS_PERCENTAGE DontDelete|ReadOnly 1035 CSS_EMS DOM::CSSPrimitiveValue::CSS_EMS DontDelete|ReadOnly 1036 CSS_EXS DOM::CSSPrimitiveValue::CSS_EXS DontDelete|ReadOnly 1037 CSS_PX DOM::CSSPrimitiveValue::CSS_PX DontDelete|ReadOnly 1038 CSS_CM DOM::CSSPrimitiveValue::CSS_CM DontDelete|ReadOnly 1039 CSS_MM DOM::CSSPrimitiveValue::CSS_MM DontDelete|ReadOnly 1040 CSS_IN DOM::CSSPrimitiveValue::CSS_IN DontDelete|ReadOnly 1041 CSS_PT DOM::CSSPrimitiveValue::CSS_PT DontDelete|ReadOnly 1042 CSS_PC DOM::CSSPrimitiveValue::CSS_PC DontDelete|ReadOnly 1043 CSS_DEG DOM::CSSPrimitiveValue::CSS_DEG DontDelete|ReadOnly 1044 CSS_RAD DOM::CSSPrimitiveValue::CSS_RAD DontDelete|ReadOnly 1045 CSS_GRAD DOM::CSSPrimitiveValue::CSS_GRAD DontDelete|ReadOnly 1046 CSS_MS DOM::CSSPrimitiveValue::CSS_MS DontDelete|ReadOnly 1047 CSS_S DOM::CSSPrimitiveValue::CSS_S DontDelete|ReadOnly 1048 CSS_HZ DOM::CSSPrimitiveValue::CSS_HZ DontDelete|ReadOnly 1049 CSS_KHZ DOM::CSSPrimitiveValue::CSS_KHZ DontDelete|ReadOnly 1050 CSS_DIMENSION DOM::CSSPrimitiveValue::CSS_DIMENSION DontDelete|ReadOnly 1051 CSS_STRING DOM::CSSPrimitiveValue::CSS_STRING DontDelete|ReadOnly 1052 CSS_URI DOM::CSSPrimitiveValue::CSS_URI DontDelete|ReadOnly 1053 CSS_IDENT DOM::CSSPrimitiveValue::CSS_IDENT DontDelete|ReadOnly 1054 CSS_ATTR DOM::CSSPrimitiveValue::CSS_ATTR DontDelete|ReadOnly 1055 CSS_COUNTER DOM::CSSPrimitiveValue::CSS_COUNTER DontDelete|ReadOnly 1056 CSS_RECT DOM::CSSPrimitiveValue::CSS_RECT DontDelete|ReadOnly 1057 CSS_RGBCOLOR DOM::CSSPrimitiveValue::CSS_RGBCOLOR DontDelete|ReadOnly 1058 1058 @end 1059 1059 */ … … 1081 1081 /* 1082 1082 @begin DOMCSSValueListTable 3 1083 length DOMCSSValueList::LengthDontDelete|ReadOnly1084 item DOMCSSValueList::ItemDontDelete|Function 11083 length DOMCSSValueList::Length DontDelete|ReadOnly 1084 item DOMCSSValueList::Item DontDelete|Function 1 1085 1085 @end 1086 1086 */ … … 1132 1132 /* 1133 1133 @begin DOMRGBColorTable 3 1134 red DOMRGBColor::RedDontDelete|ReadOnly1135 green DOMRGBColor::GreenDontDelete|ReadOnly1136 blue DOMRGBColor::BlueDontDelete|ReadOnly1134 red DOMRGBColor::Red DontDelete|ReadOnly 1135 green DOMRGBColor::Green DontDelete|ReadOnly 1136 blue DOMRGBColor::Blue DontDelete|ReadOnly 1137 1137 @end 1138 1138 */ … … 1145 1145 { 1146 1146 return DOMObjectLookupGetValue<DOMRGBColor,DOMObject>(exec, p, 1147 &DOMRGBColorTable,1148 this);1147 &DOMRGBColorTable, 1148 this); 1149 1149 } 1150 1150 … … 1174 1174 /* 1175 1175 @begin DOMRectTable 4 1176 top DOMRect::TopDontDelete|ReadOnly1177 right DOMRect::RightDontDelete|ReadOnly1176 top DOMRect::Top DontDelete|ReadOnly 1177 right DOMRect::Right DontDelete|ReadOnly 1178 1178 bottom DOMRect::Bottom DontDelete|ReadOnly 1179 left DOMRect::LeftDontDelete|ReadOnly1179 left DOMRect::Left DontDelete|ReadOnly 1180 1180 @end 1181 1181 */ … … 1188 1188 { 1189 1189 return DOMObjectLookupGetValue<DOMRect,DOMObject>(exec, p, 1190 &DOMRectTable, this);1190 &DOMRectTable, this); 1191 1191 } 1192 1192 … … 1217 1217 /* 1218 1218 @begin DOMCounterTable 3 1219 identifier DOMCounter::identifierDontDelete|ReadOnly1220 listStyle DOMCounter::listStyleDontDelete|ReadOnly1221 separator DOMCounter::separatorDontDelete|ReadOnly1219 identifier DOMCounter::identifier DontDelete|ReadOnly 1220 listStyle DOMCounter::listStyle DontDelete|ReadOnly 1221 separator DOMCounter::separator DontDelete|ReadOnly 1222 1222 @end 1223 1223 */ … … 1230 1230 { 1231 1231 return DOMObjectLookupGetValue<DOMCounter,DOMObject>(exec, p, 1232 &DOMCounterTable, this);1232 &DOMCounterTable, this); 1233 1233 } 1234 1234