Changeset 20916 for S60/trunk/WebCore

Show
Ignore:
Timestamp:
04/17/07 07:00:56 (21 months ago)
Author:
yongjzha
Message:

2007-04-17 bujtas <zbujtas@gmail.com>

Reviewed by Yongjun.
DESC: else if (p == "cssValueType"); <-
http://bugs.webkit.org/show_bug.cgi?id=13372

  • khtml/ecma/kjs_css.cpp: (cssPropertyName): (DOMCSSStyleDeclaration::tryPut): (DOMCSSValue::tryGet): (DOMRGBColor::tryGet): (DOMRect::tryGet): (DOMCounter::tryGet):
Location:
S60/trunk/WebCore
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • S60/trunk/WebCore/ChangeLog

    r20870 r20916  
     12007-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 
    116anapatil <anand.1.patil@nokia.com> 
    217 
  • S60/trunk/WebCore/khtml/ecma/kjs_css.cpp

    r14549 r20916  
    3838    int i = prop.length(); 
    3939    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') 
    4242            prop.insert(i, '-'); 
    4343    } 
     
    6767/* 
    6868@begin DOMCSSStyleDeclarationProtoTable 7 
    69   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 
     69  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 
    7575@end 
    7676@begin DOMCSSStyleDeclarationTable 3 
    77   cssText               DOMCSSStyleDeclaration::CssText         DontDelete 
    78   length                DOMCSSStyleDeclaration::Length          DontDelete|ReadOnly 
    79   parentRule            DOMCSSStyleDeclaration::ParentRule      DontDelete|ReadOnly 
     77  cssText       DOMCSSStyleDeclaration::CssText     DontDelete 
     78  length        DOMCSSStyleDeclaration::Length      DontDelete|ReadOnly 
     79  parentRule        DOMCSSStyleDeclaration::ParentRule  DontDelete|ReadOnly 
    8080@end 
    8181*/ 
     
    180180      QString propvalue = value.toString(exec).qstring(); 
    181181      if (pixelOrPos) 
    182         propvalue += "px"; 
     182    propvalue += "px"; 
    183183#ifdef KJS_VERBOSE 
    184184      kdDebug(6070) << "DOMCSSStyleDeclaration: prop=" << prop << " propvalue=" << propvalue << endl; 
     
    186186      styleDecl.removeProperty(prop); 
    187187      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? 
    189189    } else { 
    190190      DOMObject::tryPut(exec, propertyName, value, attr); 
     
    235235/* 
    236236@begin DOMStyleSheetTable 7 
    237   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 
     237  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 
    244244@end 
    245245*/ 
     
    312312/* 
    313313@begin DOMStyleSheetListTable 2 
    314   length        DOMStyleSheetList::Length       DontDelete|ReadOnly 
    315   item          DOMStyleSheetList::Item         DontDelete|Function 1 
     314  length    DOMStyleSheetList::Length   DontDelete|ReadOnly 
     315  item      DOMStyleSheetList::Item     DontDelete|Function 1 
    316316@end 
    317317*/ 
     
    408408/* 
    409409@begin DOMMediaListTable 2 
    410   mediaText     DOMMediaList::MediaText         DontDelete|ReadOnly 
    411   length        DOMMediaList::Length            DontDelete|ReadOnly 
     410  mediaText DOMMediaList::MediaText     DontDelete|ReadOnly 
     411  length    DOMMediaList::Length        DontDelete|ReadOnly 
    412412@end 
    413413@begin DOMMediaListProtoTable 3 
    414   item          DOMMediaList::Item              DontDelete|Function 1 
    415   deleteMedium  DOMMediaList::DeleteMedium      DontDelete|Function 1 
    416   appendMedium  DOMMediaList::AppendMedium      DontDelete|Function 1 
     414  item      DOMMediaList::Item      DontDelete|Function 1 
     415  deleteMedium  DOMMediaList::DeleteMedium  DontDelete|Function 1 
     416  appendMedium  DOMMediaList::AppendMedium  DontDelete|Function 1 
    417417@end 
    418418*/ 
     
    488488/* 
    489489@begin DOMCSSStyleSheetTable 5 
    490   ownerRule     DOMCSSStyleSheet::OwnerRule     DontDelete|ReadOnly 
    491   cssRules      DOMCSSStyleSheet::CssRules      DontDelete|ReadOnly 
     490  ownerRule DOMCSSStyleSheet::OwnerRule DontDelete|ReadOnly 
     491  cssRules  DOMCSSStyleSheet::CssRules  DontDelete|ReadOnly 
    492492# MSIE extension 
    493   rules         DOMCSSStyleSheet::Rules         DontDelete|ReadOnly 
     493  rules     DOMCSSStyleSheet::Rules     DontDelete|ReadOnly 
    494494@end 
    495495@begin DOMCSSStyleSheetProtoTable 6 
    496   insertRule    DOMCSSStyleSheet::InsertRule    DontDelete|Function 2 
    497   deleteRule    DOMCSSStyleSheet::DeleteRule    DontDelete|Function 1 
     496  insertRule    DOMCSSStyleSheet::InsertRule    DontDelete|Function 2 
     497  deleteRule    DOMCSSStyleSheet::DeleteRule    DontDelete|Function 1 
    498498# MSIE extension 
    499   addRule       DOMCSSStyleSheet::AddRule       DontDelete|Function 2 
     499  addRule   DOMCSSStyleSheet::AddRule   DontDelete|Function 2 
    500500@end 
    501501*/ 
     
    555555/* 
    556556@begin DOMCSSRuleListTable 3 
    557   length                DOMCSSRuleList::Length          DontDelete|ReadOnly 
    558   item                  DOMCSSRuleList::Item            DontDelete|Function 1 
     557  length        DOMCSSRuleList::Length      DontDelete|ReadOnly 
     558  item          DOMCSSRuleList::Item        DontDelete|Function 1 
    559559@end 
    560560*/ 
     
    642642/* 
    643643@begin DOMCSSRuleTable 4 
    644   type                  DOMCSSRule::Type        DontDelete|ReadOnly 
    645   cssText               DOMCSSRule::CssText     DontDelete|ReadOnly 
    646   parentStyleSheet      DOMCSSRule::ParentStyleSheet    DontDelete|ReadOnly 
    647   parentRule            DOMCSSRule::ParentRule  DontDelete|ReadOnly 
     644  type          DOMCSSRule::Type    DontDelete|ReadOnly 
     645  cssText       DOMCSSRule::CssText DontDelete|ReadOnly 
     646  parentStyleSheet  DOMCSSRule::ParentStyleSheet    DontDelete|ReadOnly 
     647  parentRule        DOMCSSRule::ParentRule  DontDelete|ReadOnly 
    648648@end 
    649649@begin DOMCSSStyleRuleTable 2 
    650   selectorText          DOMCSSRule::Style_SelectorText  DontDelete 
    651   style                 DOMCSSRule::Style_Style         DontDelete|ReadOnly 
     650  selectorText      DOMCSSRule::Style_SelectorText  DontDelete 
     651  style         DOMCSSRule::Style_Style     DontDelete|ReadOnly 
    652652@end 
    653653@begin DOMCSSMediaRuleTable 4 
    654   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 
     654  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 
    658658@end 
    659659@begin DOMCSSFontFaceRuleTable 1 
    660   style                 DOMCSSRule::FontFace_Style      DontDelete|ReadOnly 
     660  style         DOMCSSRule::FontFace_Style  DontDelete|ReadOnly 
    661661@end 
    662662@begin DOMCSSPageRuleTable 2 
    663   selectorText          DOMCSSRule::Page_SelectorText   DontDelete 
    664   style                 DOMCSSRule::Page_Style          DontDelete|ReadOnly 
     663  selectorText      DOMCSSRule::Page_SelectorText   DontDelete 
     664  style         DOMCSSRule::Page_Style      DontDelete|ReadOnly 
    665665@end 
    666666@begin DOMCSSImportRuleTable 3 
    667   href                  DOMCSSRule::Import_Href         DontDelete|ReadOnly 
    668   media                 DOMCSSRule::Import_Media        DontDelete|ReadOnly 
    669   styleSheet            DOMCSSRule::Import_StyleSheet   DontDelete|ReadOnly 
     667  href          DOMCSSRule::Import_Href     DontDelete|ReadOnly 
     668  media         DOMCSSRule::Import_Media    DontDelete|ReadOnly 
     669  styleSheet        DOMCSSRule::Import_StyleSheet   DontDelete|ReadOnly 
    670670@end 
    671671@begin DOMCSSCharsetRuleTable 1 
    672   encoding              DOMCSSRule::Charset_Encoding    DontDelete 
     672  encoding      DOMCSSRule::Charset_Encoding    DontDelete 
    673673@end 
    674674*/ 
     
    827827/* 
    828828@begin CSSRuleConstructorTable 7 
    829   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 
     829  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 
    836836@end 
    837837*/ 
     
    878878/* 
    879879@begin DOMCSSValueTable 2 
    880   cssText       DOMCSSValue::CssText            DontDelete|ReadOnly 
    881   cssValueType  DOMCSSValue::CssValueType       DontDelete|ReadOnly 
     880  cssText   DOMCSSValue::CssText        DontDelete|ReadOnly 
     881  cssValueType  DOMCSSValue::CssValueType   DontDelete|ReadOnly 
    882882@end 
    883883*/ 
     
    891891  if (p == "cssText") 
    892892    return getStringOrNull(cssValue.cssText()); 
    893   else if (p == "cssValueType"); 
     893  else if (p == "cssValueType")  
    894894    return Number(cssValue.cssValueType()); 
    895895  return DOMObject::tryGet(exec,p); 
     
    929929/* 
    930930@begin CSSValueConstructorTable 5 
    931   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 
     931  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 
    935935@end 
    936936*/ 
     
    965965/* 
    966966@begin DOMCSSPrimitiveValueTable 1 
    967   primitiveType         DOMCSSPrimitiveValue::PrimitiveType     DontDelete|ReadOnly 
     967  primitiveType     DOMCSSPrimitiveValue::PrimitiveType DontDelete|ReadOnly 
    968968@end 
    969969@begin DOMCSSPrimitiveValueProtoTable 3 
    970   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 
     970  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 
    977977@end 
    978978*/ 
     
    10301030/* 
    10311031@begin CSSPrimitiveValueConstructorTable 27 
    1032   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 
     1032  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 
    10581058@end 
    10591059*/ 
     
    10811081/* 
    10821082@begin DOMCSSValueListTable 3 
    1083   length                DOMCSSValueList::Length         DontDelete|ReadOnly 
    1084   item                  DOMCSSValueList::Item           DontDelete|Function 1 
     1083  length        DOMCSSValueList::Length     DontDelete|ReadOnly 
     1084  item          DOMCSSValueList::Item       DontDelete|Function 1 
    10851085@end 
    10861086*/ 
     
    11321132/* 
    11331133@begin DOMRGBColorTable 3 
    1134   red   DOMRGBColor::Red        DontDelete|ReadOnly 
    1135   green DOMRGBColor::Green      DontDelete|ReadOnly 
    1136   blue  DOMRGBColor::Blue       DontDelete|ReadOnly 
     1134  red   DOMRGBColor::Red    DontDelete|ReadOnly 
     1135  green DOMRGBColor::Green  DontDelete|ReadOnly 
     1136  blue  DOMRGBColor::Blue   DontDelete|ReadOnly 
    11371137@end 
    11381138*/ 
     
    11451145{ 
    11461146  return DOMObjectLookupGetValue<DOMRGBColor,DOMObject>(exec, p, 
    1147                                                        &DOMRGBColorTable, 
    1148                                                        this); 
     1147                               &DOMRGBColorTable, 
     1148                               this); 
    11491149} 
    11501150 
     
    11741174/* 
    11751175@begin DOMRectTable 4 
    1176   top   DOMRect::Top    DontDelete|ReadOnly 
    1177   right DOMRect::Right  DontDelete|ReadOnly 
     1176  top   DOMRect::Top    DontDelete|ReadOnly 
     1177  right DOMRect::Right  DontDelete|ReadOnly 
    11781178  bottom DOMRect::Bottom DontDelete|ReadOnly 
    1179   left  DOMRect::Left   DontDelete|ReadOnly 
     1179  left  DOMRect::Left   DontDelete|ReadOnly 
    11801180@end 
    11811181*/ 
     
    11881188{ 
    11891189  return DOMObjectLookupGetValue<DOMRect,DOMObject>(exec, p, 
    1190                                                     &DOMRectTable, this); 
     1190                            &DOMRectTable, this); 
    11911191} 
    11921192 
     
    12171217/* 
    12181218@begin DOMCounterTable 3 
    1219   identifier    DOMCounter::identifier  DontDelete|ReadOnly 
    1220   listStyle     DOMCounter::listStyle   DontDelete|ReadOnly 
    1221   separator     DOMCounter::separator   DontDelete|ReadOnly 
     1219  identifier    DOMCounter::identifier  DontDelete|ReadOnly 
     1220  listStyle DOMCounter::listStyle   DontDelete|ReadOnly 
     1221  separator DOMCounter::separator   DontDelete|ReadOnly 
    12221222@end 
    12231223*/ 
     
    12301230{ 
    12311231  return DOMObjectLookupGetValue<DOMCounter,DOMObject>(exec, p, 
    1232                                                        &DOMCounterTable, this); 
     1232                               &DOMCounterTable, this); 
    12331233} 
    12341234