Changeset 204054 in webkit


Ignore:
Timestamp:
Aug 2, 2016 5:31:22 PM (8 years ago)
Author:
andersca@apple.com
Message:

Freeze the Objective-C DOM Event and CSS bindings
https://bugs.webkit.org/show_bug.cgi?id=160476

Reviewed by Tim Horton.

  • DerivedSources.make:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/objc/DOMCSSCharsetRule.h: Added.
  • bindings/objc/DOMCSSCharsetRule.mm: Added.
  • bindings/objc/DOMCSSCharsetRuleInternal.h: Added.
  • bindings/objc/DOMCSSFontFaceRule.h: Added.
  • bindings/objc/DOMCSSFontFaceRule.mm: Added.
  • bindings/objc/DOMCSSFontFaceRuleInternal.h: Added.
  • bindings/objc/DOMCSSImportRule.h: Added.
  • bindings/objc/DOMCSSImportRule.mm: Added.
  • bindings/objc/DOMCSSImportRuleInternal.h: Added.
  • bindings/objc/DOMCSSMediaRule.h: Added.
  • bindings/objc/DOMCSSMediaRule.mm: Added.
  • bindings/objc/DOMCSSMediaRuleInternal.h: Added.
  • bindings/objc/DOMCSSPageRule.h: Added.
  • bindings/objc/DOMCSSPageRule.mm: Added.
  • bindings/objc/DOMCSSPageRuleInternal.h: Added.
  • bindings/objc/DOMCSSPrimitiveValue.h: Added.
  • bindings/objc/DOMCSSPrimitiveValue.mm: Added.
  • bindings/objc/DOMCSSPrimitiveValueInternal.h: Added.
  • bindings/objc/DOMCSSRule.h: Added.
  • bindings/objc/DOMCSSRule.mm: Added.
  • bindings/objc/DOMCSSRuleInternal.h: Added.
  • bindings/objc/DOMCSSRuleList.h: Added.
  • bindings/objc/DOMCSSRuleList.mm: Added.
  • bindings/objc/DOMCSSRuleListInternal.h: Added.
  • bindings/objc/DOMCSSStyleDeclaration.h: Added.
  • bindings/objc/DOMCSSStyleDeclaration.mm: Added.
  • bindings/objc/DOMCSSStyleDeclarationInternal.h: Added.
  • bindings/objc/DOMCSSStyleRule.h: Added.
  • bindings/objc/DOMCSSStyleRule.mm: Added.
  • bindings/objc/DOMCSSStyleRuleInternal.h: Added.
  • bindings/objc/DOMCSSStyleSheet.h: Added.
  • bindings/objc/DOMCSSStyleSheet.mm: Added.
  • bindings/objc/DOMCSSStyleSheetInternal.h: Added.
  • bindings/objc/DOMCSSUnknownRule.h: Added.
  • bindings/objc/DOMCSSUnknownRule.mm: Added.
  • bindings/objc/DOMCSSUnknownRuleInternal.h: Added.
  • bindings/objc/DOMCSSValue.h: Added.
  • bindings/objc/DOMCSSValue.mm: Added.
  • bindings/objc/DOMCSSValueInternal.h: Added.
  • bindings/objc/DOMCSSValueList.h: Added.
  • bindings/objc/DOMCSSValueList.mm: Added.
  • bindings/objc/DOMCSSValueListInternal.h: Added.
  • bindings/objc/DOMCounter.h: Added.
  • bindings/objc/DOMCounter.mm: Added.
  • bindings/objc/DOMCounterInternal.h: Added.
  • bindings/objc/DOMEvent.h: Added.
  • bindings/objc/DOMEvent.mm: Added.
  • bindings/objc/DOMEventInternal.h: Added.
  • bindings/objc/DOMEventListener.h: Added.
  • bindings/objc/DOMEventTarget.h: Added.
  • bindings/objc/DOMKeyboardEvent.h: Added.
  • bindings/objc/DOMKeyboardEvent.mm: Added.
  • bindings/objc/DOMKeyboardEventInternal.h: Added.
  • bindings/objc/DOMMouseEvent.h: Added.
  • bindings/objc/DOMMouseEvent.mm: Added.
  • bindings/objc/DOMMouseEventInternal.h: Added.
  • bindings/objc/DOMMutationEvent.h: Added.
  • bindings/objc/DOMMutationEvent.mm: Added.
  • bindings/objc/DOMMutationEventInternal.h: Added.
  • bindings/objc/DOMOverflowEvent.h: Added.
  • bindings/objc/DOMOverflowEvent.mm: Added.
  • bindings/objc/DOMOverflowEventInternal.h: Added.
  • bindings/objc/DOMProgressEvent.h: Added.
  • bindings/objc/DOMProgressEvent.mm: Added.
  • bindings/objc/DOMProgressEventInternal.h: Added.
  • bindings/objc/DOMRGBColor.h: Added.
  • bindings/objc/DOMRGBColor.mm: Added.
  • bindings/objc/DOMRGBColorInternal.h: Added.
  • bindings/objc/DOMRect.h: Added.
  • bindings/objc/DOMRect.mm: Added.
  • bindings/objc/DOMRectInternal.h: Added.
  • bindings/objc/DOMTextEvent.h: Added.
  • bindings/objc/DOMTextEvent.mm: Added.

(-[DOMTextEvent data]):
(-[DOMTextEvent initTextEvent:canBubbleArg:cancelableArg:viewArg:dataArg:]):

  • bindings/objc/DOMTextEventInternal.h: Added.
  • bindings/objc/DOMUIEvent.h: Added.
  • bindings/objc/DOMUIEvent.mm: Added.
  • bindings/objc/DOMUIEventInternal.h: Added.
  • bindings/objc/DOMWheelEvent.h: Added.
  • bindings/objc/DOMWheelEvent.mm: Added.
  • bindings/objc/DOMWheelEventInternal.h: Added.
Location:
trunk/Source/WebCore
Files:
80 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r204053 r204054  
     12016-08-02  Anders Carlsson  <andersca@apple.com>
     2
     3        Freeze the Objective-C DOM Event and CSS bindings
     4        https://bugs.webkit.org/show_bug.cgi?id=160476
     5
     6        Reviewed by Tim Horton.
     7
     8        * DerivedSources.make:
     9        * WebCore.xcodeproj/project.pbxproj:
     10        * bindings/objc/DOMCSSCharsetRule.h: Added.
     11        * bindings/objc/DOMCSSCharsetRule.mm: Added.
     12        * bindings/objc/DOMCSSCharsetRuleInternal.h: Added.
     13        * bindings/objc/DOMCSSFontFaceRule.h: Added.
     14        * bindings/objc/DOMCSSFontFaceRule.mm: Added.
     15        * bindings/objc/DOMCSSFontFaceRuleInternal.h: Added.
     16        * bindings/objc/DOMCSSImportRule.h: Added.
     17        * bindings/objc/DOMCSSImportRule.mm: Added.
     18        * bindings/objc/DOMCSSImportRuleInternal.h: Added.
     19        * bindings/objc/DOMCSSMediaRule.h: Added.
     20        * bindings/objc/DOMCSSMediaRule.mm: Added.
     21        * bindings/objc/DOMCSSMediaRuleInternal.h: Added.
     22        * bindings/objc/DOMCSSPageRule.h: Added.
     23        * bindings/objc/DOMCSSPageRule.mm: Added.
     24        * bindings/objc/DOMCSSPageRuleInternal.h: Added.
     25        * bindings/objc/DOMCSSPrimitiveValue.h: Added.
     26        * bindings/objc/DOMCSSPrimitiveValue.mm: Added.
     27        * bindings/objc/DOMCSSPrimitiveValueInternal.h: Added.
     28        * bindings/objc/DOMCSSRule.h: Added.
     29        * bindings/objc/DOMCSSRule.mm: Added.
     30        * bindings/objc/DOMCSSRuleInternal.h: Added.
     31        * bindings/objc/DOMCSSRuleList.h: Added.
     32        * bindings/objc/DOMCSSRuleList.mm: Added.
     33        * bindings/objc/DOMCSSRuleListInternal.h: Added.
     34        * bindings/objc/DOMCSSStyleDeclaration.h: Added.
     35        * bindings/objc/DOMCSSStyleDeclaration.mm: Added.
     36        * bindings/objc/DOMCSSStyleDeclarationInternal.h: Added.
     37        * bindings/objc/DOMCSSStyleRule.h: Added.
     38        * bindings/objc/DOMCSSStyleRule.mm: Added.
     39        * bindings/objc/DOMCSSStyleRuleInternal.h: Added.
     40        * bindings/objc/DOMCSSStyleSheet.h: Added.
     41        * bindings/objc/DOMCSSStyleSheet.mm: Added.
     42        * bindings/objc/DOMCSSStyleSheetInternal.h: Added.
     43        * bindings/objc/DOMCSSUnknownRule.h: Added.
     44        * bindings/objc/DOMCSSUnknownRule.mm: Added.
     45        * bindings/objc/DOMCSSUnknownRuleInternal.h: Added.
     46        * bindings/objc/DOMCSSValue.h: Added.
     47        * bindings/objc/DOMCSSValue.mm: Added.
     48        * bindings/objc/DOMCSSValueInternal.h: Added.
     49        * bindings/objc/DOMCSSValueList.h: Added.
     50        * bindings/objc/DOMCSSValueList.mm: Added.
     51        * bindings/objc/DOMCSSValueListInternal.h: Added.
     52        * bindings/objc/DOMCounter.h: Added.
     53        * bindings/objc/DOMCounter.mm: Added.
     54        * bindings/objc/DOMCounterInternal.h: Added.
     55        * bindings/objc/DOMEvent.h: Added.
     56        * bindings/objc/DOMEvent.mm: Added.
     57        * bindings/objc/DOMEventInternal.h: Added.
     58        * bindings/objc/DOMEventListener.h: Added.
     59        * bindings/objc/DOMEventTarget.h: Added.
     60        * bindings/objc/DOMKeyboardEvent.h: Added.
     61        * bindings/objc/DOMKeyboardEvent.mm: Added.
     62        * bindings/objc/DOMKeyboardEventInternal.h: Added.
     63        * bindings/objc/DOMMouseEvent.h: Added.
     64        * bindings/objc/DOMMouseEvent.mm: Added.
     65        * bindings/objc/DOMMouseEventInternal.h: Added.
     66        * bindings/objc/DOMMutationEvent.h: Added.
     67        * bindings/objc/DOMMutationEvent.mm: Added.
     68        * bindings/objc/DOMMutationEventInternal.h: Added.
     69        * bindings/objc/DOMOverflowEvent.h: Added.
     70        * bindings/objc/DOMOverflowEvent.mm: Added.
     71        * bindings/objc/DOMOverflowEventInternal.h: Added.
     72        * bindings/objc/DOMProgressEvent.h: Added.
     73        * bindings/objc/DOMProgressEvent.mm: Added.
     74        * bindings/objc/DOMProgressEventInternal.h: Added.
     75        * bindings/objc/DOMRGBColor.h: Added.
     76        * bindings/objc/DOMRGBColor.mm: Added.
     77        * bindings/objc/DOMRGBColorInternal.h: Added.
     78        * bindings/objc/DOMRect.h: Added.
     79        * bindings/objc/DOMRect.mm: Added.
     80        * bindings/objc/DOMRectInternal.h: Added.
     81        * bindings/objc/DOMTextEvent.h: Added.
     82        * bindings/objc/DOMTextEvent.mm: Added.
     83        (-[DOMTextEvent data]):
     84        (-[DOMTextEvent initTextEvent:canBubbleArg:cancelableArg:viewArg:dataArg:]):
     85        * bindings/objc/DOMTextEventInternal.h: Added.
     86        * bindings/objc/DOMUIEvent.h: Added.
     87        * bindings/objc/DOMUIEvent.mm: Added.
     88        * bindings/objc/DOMUIEventInternal.h: Added.
     89        * bindings/objc/DOMWheelEvent.h: Added.
     90        * bindings/objc/DOMWheelEvent.mm: Added.
     91        * bindings/objc/DOMWheelEventInternal.h: Added.
     92
    1932016-08-02  Enrica Casucci  <enrica@apple.com>
    294
  • trunk/Source/WebCore/DerivedSources.make

    r204049 r204054  
    237237    $(WebCore)/crypto/CryptoKeyPair.idl \
    238238    $(WebCore)/crypto/WebKitSubtleCrypto.idl \
    239     $(WebCore)/css/CSSCharsetRule.idl \
    240     $(WebCore)/css/CSSFontFaceLoadEvent.idl \
    241     $(WebCore)/css/CSSFontFaceRule.idl \
    242     $(WebCore)/css/CSSImportRule.idl \
    243     $(WebCore)/css/CSSMediaRule.idl \
    244     $(WebCore)/css/CSSPageRule.idl \
    245     $(WebCore)/css/CSSPrimitiveValue.idl \
    246     $(WebCore)/css/CSSRule.idl \
    247     $(WebCore)/css/CSSRuleList.idl \
    248     $(WebCore)/css/CSSStyleDeclaration.idl \
    249     $(WebCore)/css/CSSStyleRule.idl \
    250     $(WebCore)/css/CSSStyleSheet.idl \
    251     $(WebCore)/css/CSSUnknownRule.idl \
    252     $(WebCore)/css/CSSValue.idl \
    253     $(WebCore)/css/CSSValueList.idl \
    254     $(WebCore)/css/Counter.idl \
    255     $(WebCore)/css/DOMCSSNamespace.idl \
    256     $(WebCore)/css/FontFace.idl \
    257     $(WebCore)/css/FontFaceSet.idl \
    258     $(WebCore)/css/MediaQueryList.idl \
    259     $(WebCore)/css/MediaQueryListListener.idl \
    260     $(WebCore)/css/RGBColor.idl \
    261     $(WebCore)/css/Rect.idl \
    262     $(WebCore)/css/StyleMedia.idl \
    263239    $(WebCore)/dom/Attr.idl \
    264240    $(WebCore)/dom/BeforeUnloadEvent.idl \
     
    288264    $(WebCore)/dom/EntityReference.idl \
    289265    $(WebCore)/dom/ErrorEvent.idl \
    290     $(WebCore)/dom/Event.idl \
    291     $(WebCore)/dom/EventListener.idl \
    292     $(WebCore)/dom/EventTarget.idl \
    293266    $(WebCore)/dom/FocusEvent.idl \
    294267    $(WebCore)/dom/GlobalEventHandlers.idl \
    295268    $(WebCore)/dom/HashChangeEvent.idl \
    296     $(WebCore)/dom/KeyboardEvent.idl \
    297269    $(WebCore)/dom/MessageChannel.idl \
    298     $(WebCore)/dom/MouseEvent.idl \
    299     $(WebCore)/dom/MutationEvent.idl \
    300270    $(WebCore)/dom/MutationObserver.idl \
    301271    $(WebCore)/dom/MutationRecord.idl \
     
    305275    $(WebCore)/dom/NonElementParentNode.idl \
    306276    $(WebCore)/dom/NonDocumentTypeChildNode.idl \
    307     $(WebCore)/dom/OverflowEvent.idl \
    308277    $(WebCore)/dom/ParentNode.idl \
    309278    $(WebCore)/dom/PopStateEvent.idl \
    310279    $(WebCore)/dom/ProcessingInstruction.idl \
    311     $(WebCore)/dom/ProgressEvent.idl \
    312     $(WebCore)/dom/ProgressEvent.idl \
    313280    $(WebCore)/dom/RequestAnimationFrameCallback.idl \
    314281    $(WebCore)/dom/SecurityPolicyViolationEvent.idl \
     
    317284    $(WebCore)/dom/StringCallback.idl \
    318285    $(WebCore)/dom/Text.idl \
    319     $(WebCore)/dom/TextEvent.idl \
    320286    $(WebCore)/dom/TreeWalker.idl \
    321     $(WebCore)/dom/UIEvent.idl \
    322     $(WebCore)/dom/WheelEvent.idl \
    323287    $(WebCore)/dom/XMLDocument.idl \
    324288    $(WebCore)/fileapi/FileException.idl \
     
    456420
    457421JS_ONLY_BINDING_IDLS = \
     422        $(WebCore)/css/CSSCharsetRule.idl \
     423        $(WebCore)/css/CSSFontFaceLoadEvent.idl \
     424        $(WebCore)/css/CSSFontFaceRule.idl \
     425        $(WebCore)/css/CSSImportRule.idl \
    458426        $(WebCore)/css/CSSKeyframeRule.idl \
    459427        $(WebCore)/css/CSSKeyframesRule.idl \
     428        $(WebCore)/css/CSSMediaRule.idl \
     429        $(WebCore)/css/CSSPageRule.idl \
     430        $(WebCore)/css/CSSPrimitiveValue.idl \
     431        $(WebCore)/css/CSSRule.idl \
     432        $(WebCore)/css/CSSRuleList.idl \
     433        $(WebCore)/css/CSSStyleDeclaration.idl \
     434        $(WebCore)/css/CSSStyleRule.idl \
     435        $(WebCore)/css/CSSStyleSheet.idl \
    460436        $(WebCore)/css/CSSSupportsRule.idl \
     437        $(WebCore)/css/CSSUnknownRule.idl \
     438        $(WebCore)/css/CSSValue.idl \
     439        $(WebCore)/css/CSSValueList.idl \
     440        $(WebCore)/css/Counter.idl \
     441        $(WebCore)/css/DOMCSSNamespace.idl \
     442        $(WebCore)/css/FontFace.idl \
     443        $(WebCore)/css/FontFaceSet.idl \
    461444        $(WebCore)/css/MediaList.idl \
     445        $(WebCore)/css/MediaQueryList.idl \
     446        $(WebCore)/css/MediaQueryListListener.idl \
     447        $(WebCore)/css/RGBColor.idl \
     448        $(WebCore)/css/Rect.idl \
     449        $(WebCore)/css/StyleMedia.idl \
    462450        $(WebCore)/css/StyleSheet.idl \
    463451        $(WebCore)/css/StyleSheetList.idl \
     452    $(WebCore)/css/WebKitCSSFilterValue.idl \
    464453    $(WebCore)/css/WebKitCSSMatrix.idl \
    465     $(WebCore)/css/WebKitCSSFilterValue.idl \
    466454    $(WebCore)/css/WebKitCSSRegionRule.idl \
    467455    $(WebCore)/css/WebKitCSSTransformValue.idl \
     
    481469        $(WebCore)/dom/WebKitNamedFlow.idl \
    482470        $(WebCore)/dom/WebKitTransitionEvent.idl \
     471    $(WebCore)/dom/Event.idl \
     472    $(WebCore)/dom/EventListener.idl \
     473    $(WebCore)/dom/EventTarget.idl \
     474    $(WebCore)/dom/KeyboardEvent.idl \
     475    $(WebCore)/dom/MouseEvent.idl \
     476    $(WebCore)/dom/MutationEvent.idl \
     477    $(WebCore)/dom/OverflowEvent.idl \
     478    $(WebCore)/dom/ProgressEvent.idl \
     479    $(WebCore)/dom/ProgressEvent.idl \
     480    $(WebCore)/dom/TextEvent.idl \
     481    $(WebCore)/dom/UIEvent.idl \
     482    $(WebCore)/dom/WheelEvent.idl \
    483483        $(WebCore)/fileapi/Blob.idl \
    484484        $(WebCore)/fileapi/File.idl \
  • trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj

    r204049 r204054  
    10611061                1AF8E13312565A4400230FF7 /* ProxyServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AF8E13212565A4400230FF7 /* ProxyServer.cpp */; };
    10621062                1AF8E1C3125673E000230FF7 /* ProxyServerCFNet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AF8E1C1125673E000230FF7 /* ProxyServerCFNet.cpp */; };
     1063                1AFC6D2A1D51609800A42FA1 /* DOMTextEventInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4429AB070CB84F81007647C5 /* DOMTextEventInternal.h */; };
    10631064                1AFE11990CBFFCC4003017FA /* JSSQLResultSetRowList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AFE11970CBFFCC4003017FA /* JSSQLResultSetRowList.cpp */; };
    10641065                1AFE119A0CBFFCC4003017FA /* JSSQLResultSetRowList.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AFE11980CBFFCC4003017FA /* JSSQLResultSetRowList.h */; };
     
    31133114                85031B500A44EFC700F992E0 /* WheelEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85031B3A0A44EFC700F992E0 /* WheelEvent.cpp */; };
    31143115                85031B510A44EFC700F992E0 /* WheelEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85031B3B0A44EFC700F992E0 /* WheelEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
    3115                 85032DD70AA8C9BE007D3B7D /* DOMCSSCharsetRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DC30AA8C9BE007D3B7D /* DOMCSSCharsetRule.h */; };
     3116                85032DD70AA8C9BE007D3B7D /* DOMCSSCharsetRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DC30AA8C9BE007D3B7D /* DOMCSSCharsetRule.h */; settings = {ATTRIBUTES = (Private, ); }; };
    31163117                85032DD80AA8C9BE007D3B7D /* DOMCSSCharsetRule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85032DC40AA8C9BE007D3B7D /* DOMCSSCharsetRule.mm */; };
    3117                 85032DD90AA8C9BE007D3B7D /* DOMCSSFontFaceRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DC50AA8C9BE007D3B7D /* DOMCSSFontFaceRule.h */; };
     3118                85032DD90AA8C9BE007D3B7D /* DOMCSSFontFaceRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DC50AA8C9BE007D3B7D /* DOMCSSFontFaceRule.h */; settings = {ATTRIBUTES = (Private, ); }; };
    31183119                85032DDA0AA8C9BE007D3B7D /* DOMCSSFontFaceRule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85032DC60AA8C9BE007D3B7D /* DOMCSSFontFaceRule.mm */; };
    3119                 85032DDB0AA8C9BE007D3B7D /* DOMCSSImportRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DC70AA8C9BE007D3B7D /* DOMCSSImportRule.h */; };
     3120                85032DDB0AA8C9BE007D3B7D /* DOMCSSImportRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DC70AA8C9BE007D3B7D /* DOMCSSImportRule.h */; settings = {ATTRIBUTES = (Private, ); }; };
    31203121                85032DDC0AA8C9BE007D3B7D /* DOMCSSImportRule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85032DC80AA8C9BE007D3B7D /* DOMCSSImportRule.mm */; };
    3121                 85032DDD0AA8C9BE007D3B7D /* DOMCSSMediaRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DC90AA8C9BE007D3B7D /* DOMCSSMediaRule.h */; };
     3122                85032DDD0AA8C9BE007D3B7D /* DOMCSSMediaRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DC90AA8C9BE007D3B7D /* DOMCSSMediaRule.h */; settings = {ATTRIBUTES = (Private, ); }; };
    31223123                85032DDE0AA8C9BE007D3B7D /* DOMCSSMediaRule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85032DCA0AA8C9BE007D3B7D /* DOMCSSMediaRule.mm */; };
    3123                 85032DDF0AA8C9BE007D3B7D /* DOMCSSPageRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DCB0AA8C9BE007D3B7D /* DOMCSSPageRule.h */; };
     3124                85032DDF0AA8C9BE007D3B7D /* DOMCSSPageRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DCB0AA8C9BE007D3B7D /* DOMCSSPageRule.h */; settings = {ATTRIBUTES = (Private, ); }; };
    31243125                85032DE00AA8C9BE007D3B7D /* DOMCSSPageRule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85032DCC0AA8C9BE007D3B7D /* DOMCSSPageRule.mm */; };
    3125                 85032DE10AA8C9BE007D3B7D /* DOMCSSRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DCD0AA8C9BE007D3B7D /* DOMCSSRule.h */; };
     3126                85032DE10AA8C9BE007D3B7D /* DOMCSSRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DCD0AA8C9BE007D3B7D /* DOMCSSRule.h */; settings = {ATTRIBUTES = (Private, ); }; };
    31263127                85032DE20AA8C9BE007D3B7D /* DOMCSSRule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85032DCE0AA8C9BE007D3B7D /* DOMCSSRule.mm */; };
    3127                 85032DE30AA8C9BE007D3B7D /* DOMCSSRuleList.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DCF0AA8C9BE007D3B7D /* DOMCSSRuleList.h */; };
     3128                85032DE30AA8C9BE007D3B7D /* DOMCSSRuleList.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DCF0AA8C9BE007D3B7D /* DOMCSSRuleList.h */; settings = {ATTRIBUTES = (Private, ); }; };
    31283129                85032DE40AA8C9BE007D3B7D /* DOMCSSRuleList.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85032DD00AA8C9BE007D3B7D /* DOMCSSRuleList.mm */; };
    3129                 85032DE50AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DD10AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.h */; };
     3130                85032DE50AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DD10AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.h */; settings = {ATTRIBUTES = (Private, ); }; };
    31303131                85032DE60AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85032DD20AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.mm */; };
    3131                 85032DE70AA8C9BE007D3B7D /* DOMCSSStyleRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DD30AA8C9BE007D3B7D /* DOMCSSStyleRule.h */; };
     3132                85032DE70AA8C9BE007D3B7D /* DOMCSSStyleRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DD30AA8C9BE007D3B7D /* DOMCSSStyleRule.h */; settings = {ATTRIBUTES = (Private, ); }; };
    31323133                85032DE80AA8C9BE007D3B7D /* DOMCSSStyleRule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85032DD40AA8C9BE007D3B7D /* DOMCSSStyleRule.mm */; };
    3133                 85032DE90AA8C9BE007D3B7D /* DOMCSSUnknownRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DD50AA8C9BE007D3B7D /* DOMCSSUnknownRule.h */; };
     3134                85032DE90AA8C9BE007D3B7D /* DOMCSSUnknownRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 85032DD50AA8C9BE007D3B7D /* DOMCSSUnknownRule.h */; settings = {ATTRIBUTES = (Private, ); }; };
    31343135                85032DEA0AA8C9BE007D3B7D /* DOMCSSUnknownRule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85032DD60AA8C9BE007D3B7D /* DOMCSSUnknownRule.mm */; };
    31353136                850656FE0AAB4763002D15C0 /* DOMMediaList.h in Headers */ = {isa = PBXBuildFile; fileRef = 850656F80AAB4763002D15C0 /* DOMMediaList.h */; };
     
    31793180                853BF4DC0ABB6B55008647BB /* DOMNode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 853BF4DA0ABB6B55008647BB /* DOMNode.mm */; };
    31803181                853BF4EC0ABB6EB9008647BB /* DOMNode.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 853BF4D90ABB6B55008647BB /* DOMNode.h */; };
    3181                 854075200AD6C5FB00620C57 /* DOMEventTarget.h in Headers */ = {isa = PBXBuildFile; fileRef = 8540751F0AD6C5FB00620C57 /* DOMEventTarget.h */; };
     3182                854075200AD6C5FB00620C57 /* DOMEventTarget.h in Headers */ = {isa = PBXBuildFile; fileRef = 8540751F0AD6C5FB00620C57 /* DOMEventTarget.h */; settings = {ATTRIBUTES = (Private, ); }; };
    31823183                854075260AD6C66700620C57 /* DOMNodeFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 854075250AD6C66700620C57 /* DOMNodeFilter.h */; };
    31833184                8540753E0AD6C6DC00620C57 /* DOMEventTarget.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 8540751F0AD6C5FB00620C57 /* DOMEventTarget.h */; };
     
    32093210                85526CD30AB0B7DA000302EA /* DOMTreeWalker.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85526CD10AB0B7D9000302EA /* DOMTreeWalker.mm */; };
    32103211                85526D050AB0B979000302EA /* DOMTreeWalker.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85526CD00AB0B7D9000302EA /* DOMTreeWalker.h */; };
    3211                 855D358A0AD707310019AAC7 /* DOMRGBColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 855D35890AD707310019AAC7 /* DOMRGBColor.h */; };
     3212                855D358A0AD707310019AAC7 /* DOMRGBColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 855D35890AD707310019AAC7 /* DOMRGBColor.h */; settings = {ATTRIBUTES = (Private, ); }; };
    32123213                855D358D0AD707CC0019AAC7 /* DOMRGBColor.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 855D35890AD707310019AAC7 /* DOMRGBColor.h */; };
    32133214                856C8AE40A912649005C687B /* DOMObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 856C8AE20A912649005C687B /* DOMObject.h */; settings = {ATTRIBUTES = (Private, ); }; };
    32143215                856C8AE50A912649005C687B /* DOMObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 856C8AE30A912649005C687B /* DOMObject.mm */; };
    3215                 857E0B250AB043460036E447 /* DOMMouseEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 857E0B230AB043460036E447 /* DOMMouseEvent.h */; };
     3216                857E0B250AB043460036E447 /* DOMMouseEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 857E0B230AB043460036E447 /* DOMMouseEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
    32163217                857E0B260AB043460036E447 /* DOMMouseEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 857E0B240AB043460036E447 /* DOMMouseEvent.mm */; };
    32173218                857E0B310AB044780036E447 /* DOMMouseEvent.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 857E0B230AB043460036E447 /* DOMMouseEvent.h */; };
    32183219                858015CE0ABCA75D0080588D /* DOMXPathException.h in Headers */ = {isa = PBXBuildFile; fileRef = 858015CD0ABCA75D0080588D /* DOMXPathException.h */; settings = {ATTRIBUTES = (Private, ); }; };
    3219                 858C381C0AA8E29600B187A4 /* DOMCSSValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 858C381A0AA8E29600B187A4 /* DOMCSSValue.h */; };
     3220                858C381C0AA8E29600B187A4 /* DOMCSSValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 858C381A0AA8E29600B187A4 /* DOMCSSValue.h */; settings = {ATTRIBUTES = (Private, ); }; };
    32203221                858C381D0AA8E29600B187A4 /* DOMCSSValue.mm in Sources */ = {isa = PBXBuildFile; fileRef = 858C381B0AA8E29600B187A4 /* DOMCSSValue.mm */; };
    3221                 858C382C0AA8E40500B187A4 /* DOMCSSPrimitiveValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 858C382A0AA8E40500B187A4 /* DOMCSSPrimitiveValue.h */; };
     3222                858C382C0AA8E40500B187A4 /* DOMCSSPrimitiveValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 858C382A0AA8E40500B187A4 /* DOMCSSPrimitiveValue.h */; settings = {ATTRIBUTES = (Private, ); }; };
    32223223                858C382D0AA8E40500B187A4 /* DOMCSSPrimitiveValue.mm in Sources */ = {isa = PBXBuildFile; fileRef = 858C382B0AA8E40500B187A4 /* DOMCSSPrimitiveValue.mm */; };
    3223                 858C383C0AA8ED8200B187A4 /* DOMCSSValueList.h in Headers */ = {isa = PBXBuildFile; fileRef = 858C383A0AA8ED8200B187A4 /* DOMCSSValueList.h */; };
     3224                858C383C0AA8ED8200B187A4 /* DOMCSSValueList.h in Headers */ = {isa = PBXBuildFile; fileRef = 858C383A0AA8ED8200B187A4 /* DOMCSSValueList.h */; settings = {ATTRIBUTES = (Private, ); }; };
    32243225                858C383D0AA8ED8200B187A4 /* DOMCSSValueList.mm in Sources */ = {isa = PBXBuildFile; fileRef = 858C383B0AA8ED8200B187A4 /* DOMCSSValueList.mm */; };
    3225                 858C38A50AA8F20400B187A4 /* DOMCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 858C38A10AA8F20400B187A4 /* DOMCounter.h */; };
     3226                858C38A50AA8F20400B187A4 /* DOMCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 858C38A10AA8F20400B187A4 /* DOMCounter.h */; settings = {ATTRIBUTES = (Private, ); }; };
    32263227                858C38A60AA8F20400B187A4 /* DOMCounter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 858C38A20AA8F20400B187A4 /* DOMCounter.mm */; };
    3227                 858C38A70AA8F20400B187A4 /* DOMRect.h in Headers */ = {isa = PBXBuildFile; fileRef = 858C38A30AA8F20400B187A4 /* DOMRect.h */; };
     3228                858C38A70AA8F20400B187A4 /* DOMRect.h in Headers */ = {isa = PBXBuildFile; fileRef = 858C38A30AA8F20400B187A4 /* DOMRect.h */; settings = {ATTRIBUTES = (Private, ); }; };
    32283229                858C38A80AA8F20400B187A4 /* DOMRect.mm in Sources */ = {isa = PBXBuildFile; fileRef = 858C38A40AA8F20400B187A4 /* DOMRect.mm */; };
    3229                 858C39280AA8FF9D00B187A4 /* DOMCSSStyleSheet.h in Headers */ = {isa = PBXBuildFile; fileRef = 858C39260AA8FF9D00B187A4 /* DOMCSSStyleSheet.h */; };
     3230                858C39280AA8FF9D00B187A4 /* DOMCSSStyleSheet.h in Headers */ = {isa = PBXBuildFile; fileRef = 858C39260AA8FF9D00B187A4 /* DOMCSSStyleSheet.h */; settings = {ATTRIBUTES = (Private, ); }; };
    32303231                858C39290AA8FF9D00B187A4 /* DOMCSSStyleSheet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 858C39270AA8FF9D00B187A4 /* DOMCSSStyleSheet.mm */; };
    32313232                858C39B80AA905EF00B187A4 /* DOMCSSValue.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 858C381A0AA8E29600B187A4 /* DOMCSSValue.h */; };
     
    32743275                85ACABB00A9CAF8000671E90 /* DOMDocument.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ACABAE0A9CAF8000671E90 /* DOMDocument.h */; settings = {ATTRIBUTES = (); }; };
    32753276                85ACABB10A9CAF8000671E90 /* DOMDocument.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85ACABAF0A9CAF8000671E90 /* DOMDocument.mm */; };
    3276                 85AFA8220AAF528A00E84305 /* DOMEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85AFA8200AAF528A00E84305 /* DOMEvent.h */; };
     3277                85AFA8220AAF528A00E84305 /* DOMEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85AFA8200AAF528A00E84305 /* DOMEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
    32773278                85AFA8230AAF528A00E84305 /* DOMEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85AFA8210AAF528A00E84305 /* DOMEvent.mm */; };
    32783279                85B498ED0ADB32FB00925CBB /* DOMCSSRuleInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85B498EC0ADB32FB00925CBB /* DOMCSSRuleInternal.h */; };
     
    33073308                85C78A680ABDE1B40044FC16 /* DOMException.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C78A670ABDE1B40044FC16 /* DOMException.h */; settings = {ATTRIBUTES = (Private, ); }; };
    33083309                85C7F3E60AAF5D5E004014DD /* DOMEvent.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85AFA8200AAF528A00E84305 /* DOMEvent.h */; };
    3309                 85C7F4910AAF79DC004014DD /* DOMUIEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C7F48F0AAF79DC004014DD /* DOMUIEvent.h */; };
     3310                85C7F4910AAF79DC004014DD /* DOMUIEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C7F48F0AAF79DC004014DD /* DOMUIEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
    33103311                85C7F4920AAF79DC004014DD /* DOMUIEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85C7F4900AAF79DC004014DD /* DOMUIEvent.mm */; };
    33113312                85C7F4D00AAF83F6004014DD /* DOMUIEvent.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85C7F48F0AAF79DC004014DD /* DOMUIEvent.h */; };
    3312                 85C7F5BF0AAFB7CC004014DD /* DOMMutationEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C7F5BC0AAFB7CC004014DD /* DOMMutationEvent.h */; };
     3313                85C7F5BF0AAFB7CC004014DD /* DOMMutationEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C7F5BC0AAFB7CC004014DD /* DOMMutationEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
    33133314                85C7F5C00AAFB7CD004014DD /* DOMMutationEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85C7F5BD0AAFB7CC004014DD /* DOMMutationEvent.mm */; };
    3314                 85C7F5D00AAFB8D9004014DD /* DOMOverflowEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C7F5CE0AAFB8D9004014DD /* DOMOverflowEvent.h */; };
     3315                85C7F5D00AAFB8D9004014DD /* DOMOverflowEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C7F5CE0AAFB8D9004014DD /* DOMOverflowEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
    33153316                85C7F5D10AAFB8D9004014DD /* DOMOverflowEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85C7F5CF0AAFB8D9004014DD /* DOMOverflowEvent.mm */; };
    3316                 85C7F5E70AAFBAFB004014DD /* DOMWheelEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C7F5E50AAFBAFB004014DD /* DOMWheelEvent.h */; };
     3317                85C7F5E70AAFBAFB004014DD /* DOMWheelEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C7F5E50AAFBAFB004014DD /* DOMWheelEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
    33173318                85C7F5E80AAFBAFB004014DD /* DOMWheelEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85C7F5E60AAFBAFB004014DD /* DOMWheelEvent.mm */; };
    33183319                85CA96B80A9621A600690CCF /* DOMEntity.h in Headers */ = {isa = PBXBuildFile; fileRef = 85CA96B60A9621A600690CCF /* DOMEntity.h */; settings = {ATTRIBUTES = (); }; };
     
    33203321                85CA975C0A962E5400690CCF /* DOMDocumentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 85CA975A0A962E5400690CCF /* DOMDocumentType.h */; settings = {ATTRIBUTES = (); }; };
    33213322                85CA975D0A962E5400690CCF /* DOMDocumentType.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85CA975B0A962E5400690CCF /* DOMDocumentType.mm */; };
    3322                 85D2AD680AB1A40A00C313EA /* DOMEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 85D2AD670AB1A40A00C313EA /* DOMEventListener.h */; };
     3323                85D2AD680AB1A40A00C313EA /* DOMEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 85D2AD670AB1A40A00C313EA /* DOMEventListener.h */; settings = {ATTRIBUTES = (Private, ); }; };
    33233324                85D2AD6D0AB1A48200C313EA /* DOMEventListener.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85D2AD670AB1A40A00C313EA /* DOMEventListener.h */; };
    33243325                85D389B20A991A7F00282145 /* DOMAttr.h in Headers */ = {isa = PBXBuildFile; fileRef = 85D389B00A991A7F00282145 /* DOMAttr.h */; settings = {ATTRIBUTES = (); }; };
     
    34093410                85F74E090AA8DF8C000DC284 /* DOMCSSStyleRule.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85032DD30AA8C9BE007D3B7D /* DOMCSSStyleRule.h */; };
    34103411                85F74E0A0AA8DF8C000DC284 /* DOMCSSUnknownRule.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85032DD50AA8C9BE007D3B7D /* DOMCSSUnknownRule.h */; };
    3411                 85FF315A0AAFBFCB00374F38 /* DOMKeyboardEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FF31580AAFBFCB00374F38 /* DOMKeyboardEvent.h */; };
     3412                85FF315A0AAFBFCB00374F38 /* DOMKeyboardEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FF31580AAFBFCB00374F38 /* DOMKeyboardEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
    34123413                85FF315B0AAFBFCB00374F38 /* DOMKeyboardEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85FF31590AAFBFCB00374F38 /* DOMKeyboardEvent.mm */; };
    34133414                861C2EA413FB4FDD00062ABB /* DocumentLoadTiming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 861C2EA313FB4FDD00062ABB /* DocumentLoadTiming.cpp */; };
     
    56655666                BCC0E8761BFE70E9008F7F50 /* HTMLPictureElement.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC0E8741BFE70E9008F7F50 /* HTMLPictureElement.h */; };
    56665667                BCC438780E886CC700533DD5 /* JSHTMLInputElementCustom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCC438770E886CC700533DD5 /* JSHTMLInputElementCustom.cpp */; };
    5667                 BCC573350D695BBE006EF517 /* DOMProgressEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC573330D695BBE006EF517 /* DOMProgressEvent.h */; };
     5668                BCC573350D695BBE006EF517 /* DOMProgressEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC573330D695BBE006EF517 /* DOMProgressEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
    56685669                BCC573360D695BBE006EF517 /* DOMProgressEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCC573340D695BBE006EF517 /* DOMProgressEvent.mm */; };
    56695670                BCC573380D695BD7006EF517 /* DOMProgressEventInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC573370D695BD7006EF517 /* DOMProgressEventInternal.h */; };
     
    62786279                DD763BB20992C2C900740B8E /* libxml2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = DD763BB10992C2C900740B8E /* libxml2.dylib */; };
    62796280                DD7CDF250A23CF9800069928 /* CSSUnknownRule.h in Headers */ = {isa = PBXBuildFile; fileRef = A80E6CCE0A1989CA007FB8C5 /* CSSUnknownRule.h */; };
    6280                 DDE63ED50B7D45A800226998 /* DOMTextEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 933A14750B7D1BAF00A53FFD /* DOMTextEvent.h */; };
     6281                DDE63ED50B7D45A800226998 /* DOMTextEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 933A14750B7D1BAF00A53FFD /* DOMTextEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
    62816282                DE49B309165F2FE10010338D /* RenderMediaControlElements.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE49B307165F2FE10010338D /* RenderMediaControlElements.cpp */; };
    62826283                DEBCCDD216646E8200A452E1 /* RenderMediaControlElements.h in Headers */ = {isa = PBXBuildFile; fileRef = DE49B308165F2FE10010338D /* RenderMediaControlElements.h */; };
     
    91069107                4415292C0E1AE8A000C4A2D0 /* HTMLPlugInImageElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTMLPlugInImageElement.h; sourceTree = "<group>"; };
    91079108                4415292D0E1AE8A000C4A2D0 /* HTMLPlugInImageElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = HTMLPlugInImageElement.cpp; sourceTree = "<group>"; };
    9108                 4429AB070CB84F81007647C5 /* DOMTextEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMTextEventInternal.h; sourceTree = "<group>"; };
     9109                4429AB070CB84F81007647C5 /* DOMTextEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMTextEventInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    91099110                442ABCD517D9262F00D30715 /* SynchronousLoaderClientCFNet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SynchronousLoaderClientCFNet.cpp; sourceTree = "<group>"; };
    91109111                442AF7A7102CDDEA008FD4D3 /* QuickLook.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuickLook.h; sourceTree = "<group>"; };
     
    1057910580                85031B3A0A44EFC700F992E0 /* WheelEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = WheelEvent.cpp; sourceTree = "<group>"; };
    1058010581                85031B3B0A44EFC700F992E0 /* WheelEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = WheelEvent.h; sourceTree = "<group>"; };
    10581                 85032DC30AA8C9BE007D3B7D /* DOMCSSCharsetRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSCharsetRule.h; sourceTree = "<group>"; };
    10582                 85032DC40AA8C9BE007D3B7D /* DOMCSSCharsetRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSCharsetRule.mm; sourceTree = "<group>"; };
    10583                 85032DC50AA8C9BE007D3B7D /* DOMCSSFontFaceRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSFontFaceRule.h; sourceTree = "<group>"; };
    10584                 85032DC60AA8C9BE007D3B7D /* DOMCSSFontFaceRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSFontFaceRule.mm; sourceTree = "<group>"; };
    10585                 85032DC70AA8C9BE007D3B7D /* DOMCSSImportRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSImportRule.h; sourceTree = "<group>"; };
    10586                 85032DC80AA8C9BE007D3B7D /* DOMCSSImportRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSImportRule.mm; sourceTree = "<group>"; };
    10587                 85032DC90AA8C9BE007D3B7D /* DOMCSSMediaRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSMediaRule.h; sourceTree = "<group>"; };
    10588                 85032DCA0AA8C9BE007D3B7D /* DOMCSSMediaRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSMediaRule.mm; sourceTree = "<group>"; };
    10589                 85032DCB0AA8C9BE007D3B7D /* DOMCSSPageRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSPageRule.h; sourceTree = "<group>"; };
    10590                 85032DCC0AA8C9BE007D3B7D /* DOMCSSPageRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSPageRule.mm; sourceTree = "<group>"; };
    10591                 85032DCD0AA8C9BE007D3B7D /* DOMCSSRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSRule.h; sourceTree = "<group>"; };
    10592                 85032DCE0AA8C9BE007D3B7D /* DOMCSSRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSRule.mm; sourceTree = "<group>"; };
    10593                 85032DCF0AA8C9BE007D3B7D /* DOMCSSRuleList.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSRuleList.h; sourceTree = "<group>"; };
    10594                 85032DD00AA8C9BE007D3B7D /* DOMCSSRuleList.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSRuleList.mm; sourceTree = "<group>"; };
    10595                 85032DD10AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSStyleDeclaration.h; sourceTree = "<group>"; };
    10596                 85032DD20AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSStyleDeclaration.mm; sourceTree = "<group>"; };
    10597                 85032DD30AA8C9BE007D3B7D /* DOMCSSStyleRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSStyleRule.h; sourceTree = "<group>"; };
    10598                 85032DD40AA8C9BE007D3B7D /* DOMCSSStyleRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSStyleRule.mm; sourceTree = "<group>"; };
    10599                 85032DD50AA8C9BE007D3B7D /* DOMCSSUnknownRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSUnknownRule.h; sourceTree = "<group>"; };
     10582                85032DC30AA8C9BE007D3B7D /* DOMCSSCharsetRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSCharsetRule.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10583                85032DC40AA8C9BE007D3B7D /* DOMCSSCharsetRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMCSSCharsetRule.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10584                85032DC50AA8C9BE007D3B7D /* DOMCSSFontFaceRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSFontFaceRule.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10585                85032DC60AA8C9BE007D3B7D /* DOMCSSFontFaceRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMCSSFontFaceRule.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10586                85032DC70AA8C9BE007D3B7D /* DOMCSSImportRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSImportRule.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10587                85032DC80AA8C9BE007D3B7D /* DOMCSSImportRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMCSSImportRule.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10588                85032DC90AA8C9BE007D3B7D /* DOMCSSMediaRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSMediaRule.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10589                85032DCA0AA8C9BE007D3B7D /* DOMCSSMediaRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMCSSMediaRule.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10590                85032DCB0AA8C9BE007D3B7D /* DOMCSSPageRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSPageRule.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10591                85032DCC0AA8C9BE007D3B7D /* DOMCSSPageRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMCSSPageRule.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10592                85032DCD0AA8C9BE007D3B7D /* DOMCSSRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSRule.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10593                85032DCE0AA8C9BE007D3B7D /* DOMCSSRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMCSSRule.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10594                85032DCF0AA8C9BE007D3B7D /* DOMCSSRuleList.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSRuleList.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10595                85032DD00AA8C9BE007D3B7D /* DOMCSSRuleList.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMCSSRuleList.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10596                85032DD10AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSStyleDeclaration.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10597                85032DD20AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMCSSStyleDeclaration.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10598                85032DD30AA8C9BE007D3B7D /* DOMCSSStyleRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSStyleRule.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10599                85032DD40AA8C9BE007D3B7D /* DOMCSSStyleRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMCSSStyleRule.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10600                85032DD50AA8C9BE007D3B7D /* DOMCSSUnknownRule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSUnknownRule.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1060010601                85032DD60AA8C9BE007D3B7D /* DOMCSSUnknownRule.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSUnknownRule.mm; sourceTree = "<group>"; };
    1060110602                850656DC0AAB44D9002D15C0 /* StyleSheet.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = StyleSheet.idl; sourceTree = "<group>"; };
     
    1064710648                853BF4D90ABB6B55008647BB /* DOMNode.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMNode.h; sourceTree = "<group>"; };
    1064810649                853BF4DA0ABB6B55008647BB /* DOMNode.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMNode.mm; sourceTree = "<group>"; };
    10649                 8540751F0AD6C5FB00620C57 /* DOMEventTarget.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMEventTarget.h; sourceTree = "<group>"; };
     10650                8540751F0AD6C5FB00620C57 /* DOMEventTarget.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMEventTarget.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1065010651                854075250AD6C66700620C57 /* DOMNodeFilter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMNodeFilter.h; sourceTree = "<group>"; };
    1065110652                854075640AD6CBF900620C57 /* DOMHTMLAppletElement.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMHTMLAppletElement.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     
    1069110692                8574D1F70ADE6122004CBA11 /* JSSVGRect.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JSSVGRect.cpp; sourceTree = "<group>"; };
    1069210693                8574D1F80ADE6122004CBA11 /* JSSVGRect.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; path = JSSVGRect.h; sourceTree = "<group>"; };
    10693                 857E0B230AB043460036E447 /* DOMMouseEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMMouseEvent.h; sourceTree = "<group>"; };
    10694                 857E0B240AB043460036E447 /* DOMMouseEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMMouseEvent.mm; sourceTree = "<group>"; };
     10694                857E0B230AB043460036E447 /* DOMMouseEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMMouseEvent.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10695                857E0B240AB043460036E447 /* DOMMouseEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMMouseEvent.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1069510696                858015CD0ABCA75D0080588D /* DOMXPathException.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMXPathException.h; sourceTree = "<group>"; };
    10696                 858C381A0AA8E29600B187A4 /* DOMCSSValue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSValue.h; sourceTree = "<group>"; };
     10697                858C381A0AA8E29600B187A4 /* DOMCSSValue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSValue.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1069710698                858C381B0AA8E29600B187A4 /* DOMCSSValue.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSValue.mm; sourceTree = "<group>"; };
    10698                 858C382A0AA8E40500B187A4 /* DOMCSSPrimitiveValue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSPrimitiveValue.h; sourceTree = "<group>"; };
    10699                 858C382B0AA8E40500B187A4 /* DOMCSSPrimitiveValue.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSPrimitiveValue.mm; sourceTree = "<group>"; };
    10700                 858C383A0AA8ED8200B187A4 /* DOMCSSValueList.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSValueList.h; sourceTree = "<group>"; };
     10699                858C382A0AA8E40500B187A4 /* DOMCSSPrimitiveValue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSPrimitiveValue.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10700                858C382B0AA8E40500B187A4 /* DOMCSSPrimitiveValue.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMCSSPrimitiveValue.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10701                858C383A0AA8ED8200B187A4 /* DOMCSSValueList.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSValueList.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1070110702                858C383B0AA8ED8200B187A4 /* DOMCSSValueList.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSValueList.mm; sourceTree = "<group>"; };
    10702                 858C38A10AA8F20400B187A4 /* DOMCounter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCounter.h; sourceTree = "<group>"; };
    10703                 858C38A20AA8F20400B187A4 /* DOMCounter.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCounter.mm; sourceTree = "<group>"; };
     10703                858C38A10AA8F20400B187A4 /* DOMCounter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCounter.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10704                858C38A20AA8F20400B187A4 /* DOMCounter.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMCounter.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1070410705                858C38A30AA8F20400B187A4 /* DOMRect.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMRect.h; sourceTree = "<group>"; };
    1070510706                858C38A40AA8F20400B187A4 /* DOMRect.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMRect.mm; sourceTree = "<group>"; };
    1070610707                858C38EF0AA8FDD100B187A4 /* RGBColor.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = RGBColor.idl; sourceTree = "<group>"; };
    1070710708                858C39100AA8FF0000B187A4 /* CSSStyleSheet.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = CSSStyleSheet.idl; sourceTree = "<group>"; };
    10708                 858C39260AA8FF9D00B187A4 /* DOMCSSStyleSheet.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSStyleSheet.h; sourceTree = "<group>"; };
    10709                 858C39270AA8FF9D00B187A4 /* DOMCSSStyleSheet.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMCSSStyleSheet.mm; sourceTree = "<group>"; };
    10710                 85909CD30ACC7A7E00DF01F1 /* DOMCSSCharsetRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSCharsetRuleInternal.h; sourceTree = "<group>"; };
    10711                 85909CD40ACC7A7E00DF01F1 /* DOMCSSFontFaceRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSFontFaceRuleInternal.h; sourceTree = "<group>"; };
    10712                 85909CD50ACC7A7E00DF01F1 /* DOMCSSImportRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSImportRuleInternal.h; sourceTree = "<group>"; };
    10713                 85909CD60ACC7A7E00DF01F1 /* DOMCSSMediaRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSMediaRuleInternal.h; sourceTree = "<group>"; };
    10714                 85909CD70ACC7A7E00DF01F1 /* DOMCSSPageRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSPageRuleInternal.h; sourceTree = "<group>"; };
    10715                 85909CD90ACC7A7E00DF01F1 /* DOMCSSStyleRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSStyleRuleInternal.h; sourceTree = "<group>"; };
     10709                858C39260AA8FF9D00B187A4 /* DOMCSSStyleSheet.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSStyleSheet.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10710                858C39270AA8FF9D00B187A4 /* DOMCSSStyleSheet.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMCSSStyleSheet.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10711                85909CD30ACC7A7E00DF01F1 /* DOMCSSCharsetRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSCharsetRuleInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10712                85909CD40ACC7A7E00DF01F1 /* DOMCSSFontFaceRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSFontFaceRuleInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10713                85909CD50ACC7A7E00DF01F1 /* DOMCSSImportRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSImportRuleInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10714                85909CD60ACC7A7E00DF01F1 /* DOMCSSMediaRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSMediaRuleInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10715                85909CD70ACC7A7E00DF01F1 /* DOMCSSPageRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSPageRuleInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10716                85909CD90ACC7A7E00DF01F1 /* DOMCSSStyleRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSStyleRuleInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1071610717                85909CDA0ACC7A7E00DF01F1 /* DOMCSSStyleSheetInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSStyleSheetInternal.h; sourceTree = "<group>"; };
    1071710718                85909CDB0ACC7A7E00DF01F1 /* DOMCSSUnknownRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSUnknownRuleInternal.h; sourceTree = "<group>"; };
    10718                 85909D260ACC7D5500DF01F1 /* DOMCSSPrimitiveValueInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSPrimitiveValueInternal.h; sourceTree = "<group>"; };
     10719                85909D260ACC7D5500DF01F1 /* DOMCSSPrimitiveValueInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSPrimitiveValueInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1071910720                85909D280ACC7D5500DF01F1 /* DOMCSSValueListInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSValueListInternal.h; sourceTree = "<group>"; };
    1072010721                859128790AB222EC00202265 /* HTMLEmbedElement.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = HTMLEmbedElement.idl; sourceTree = "<group>"; };
    10721                 85989DC50ACC8BBD00A0BC51 /* DOMKeyboardEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMKeyboardEventInternal.h; sourceTree = "<group>"; };
    10722                 85989DC60ACC8BBD00A0BC51 /* DOMMouseEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMMouseEventInternal.h; sourceTree = "<group>"; };
    10723                 85989DC70ACC8BBD00A0BC51 /* DOMMutationEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMMutationEventInternal.h; sourceTree = "<group>"; };
    10724                 85989DC80ACC8BBD00A0BC51 /* DOMOverflowEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMOverflowEventInternal.h; sourceTree = "<group>"; };
    10725                 85989DC90ACC8BBD00A0BC51 /* DOMUIEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMUIEventInternal.h; sourceTree = "<group>"; };
    10726                 85989DCA0ACC8BBD00A0BC51 /* DOMWheelEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMWheelEventInternal.h; sourceTree = "<group>"; };
     10722                85989DC50ACC8BBD00A0BC51 /* DOMKeyboardEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMKeyboardEventInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10723                85989DC60ACC8BBD00A0BC51 /* DOMMouseEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMMouseEventInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10724                85989DC70ACC8BBD00A0BC51 /* DOMMutationEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMMutationEventInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10725                85989DC80ACC8BBD00A0BC51 /* DOMOverflowEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMOverflowEventInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10726                85989DC90ACC8BBD00A0BC51 /* DOMUIEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMUIEventInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10727                85989DCA0ACC8BBD00A0BC51 /* DOMWheelEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMWheelEventInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1072710728                85992EB20AA5069500AC0785 /* DOMHTMLHeadElement.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMHTMLHeadElement.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1072810729                85992EB30AA5069500AC0785 /* DOMHTMLHeadElement.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMHTMLHeadElement.mm; sourceTree = "<group>"; };
     
    1075610757                85AFA7410AAF298400E84305 /* EventListener.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = EventListener.idl; sourceTree = "<group>"; };
    1075710758                85AFA7420AAF298400E84305 /* EventTarget.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = EventTarget.idl; sourceTree = "<group>"; };
    10758                 85AFA8200AAF528A00E84305 /* DOMEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMEvent.h; sourceTree = "<group>"; };
    10759                 85AFA8210AAF528A00E84305 /* DOMEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMEvent.mm; sourceTree = "<group>"; };
    10760                 85B498EC0ADB32FB00925CBB /* DOMCSSRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSRuleInternal.h; sourceTree = "<group>"; };
     10759                85AFA8200AAF528A00E84305 /* DOMEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMEvent.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10760                85AFA8210AAF528A00E84305 /* DOMEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMEvent.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10761                85B498EC0ADB32FB00925CBB /* DOMCSSRuleInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSRuleInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1076110762                85B498F20ADB336A00925CBB /* DOMCSSValueInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSValueInternal.h; sourceTree = "<group>"; };
    10762                 85B498F40ADB337A00925CBB /* DOMEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMEventInternal.h; sourceTree = "<group>"; };
     10763                85B498F40ADB337A00925CBB /* DOMEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMEventInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1076310764                85B498FA0ADB340200925CBB /* DOMNodeInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMNodeInternal.h; sourceTree = "<group>"; };
    1076410765                85B498FE0ADB348100925CBB /* DOMStyleSheetInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMStyleSheetInternal.h; sourceTree = "<group>"; };
     
    1079810799                85C56CAD0AA89FE000D95755 /* CSSUnknownRule.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = CSSUnknownRule.idl; sourceTree = "<group>"; };
    1079910800                85C78A670ABDE1B40044FC16 /* DOMException.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMException.h; sourceTree = "<group>"; };
    10800                 85C7F48F0AAF79DC004014DD /* DOMUIEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMUIEvent.h; sourceTree = "<group>"; };
    10801                 85C7F4900AAF79DC004014DD /* DOMUIEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMUIEvent.mm; sourceTree = "<group>"; };
    10802                 85C7F5BC0AAFB7CC004014DD /* DOMMutationEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMMutationEvent.h; sourceTree = "<group>"; };
    10803                 85C7F5BD0AAFB7CC004014DD /* DOMMutationEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMMutationEvent.mm; sourceTree = "<group>"; };
    10804                 85C7F5CE0AAFB8D9004014DD /* DOMOverflowEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMOverflowEvent.h; sourceTree = "<group>"; };
    10805                 85C7F5CF0AAFB8D9004014DD /* DOMOverflowEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMOverflowEvent.mm; sourceTree = "<group>"; };
    10806                 85C7F5E50AAFBAFB004014DD /* DOMWheelEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMWheelEvent.h; sourceTree = "<group>"; };
    10807                 85C7F5E60AAFBAFB004014DD /* DOMWheelEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMWheelEvent.mm; sourceTree = "<group>"; };
     10801                85C7F48F0AAF79DC004014DD /* DOMUIEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMUIEvent.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10802                85C7F4900AAF79DC004014DD /* DOMUIEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMUIEvent.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10803                85C7F5BC0AAFB7CC004014DD /* DOMMutationEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMMutationEvent.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10804                85C7F5BD0AAFB7CC004014DD /* DOMMutationEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMMutationEvent.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10805                85C7F5CE0AAFB8D9004014DD /* DOMOverflowEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMOverflowEvent.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10806                85C7F5CF0AAFB8D9004014DD /* DOMOverflowEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMOverflowEvent.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10807                85C7F5E50AAFBAFB004014DD /* DOMWheelEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMWheelEvent.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10808                85C7F5E60AAFBAFB004014DD /* DOMWheelEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMWheelEvent.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1080810809                85CA96B60A9621A600690CCF /* DOMEntity.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMEntity.h; sourceTree = "<group>"; };
    1080910810                85CA96B70A9621A600690CCF /* DOMEntity.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMEntity.mm; sourceTree = "<group>"; };
    1081010811                85CA975A0A962E5400690CCF /* DOMDocumentType.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMDocumentType.h; sourceTree = "<group>"; };
    1081110812                85CA975B0A962E5400690CCF /* DOMDocumentType.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMDocumentType.mm; sourceTree = "<group>"; };
    10812                 85D2AD670AB1A40A00C313EA /* DOMEventListener.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMEventListener.h; sourceTree = "<group>"; };
     10813                85D2AD670AB1A40A00C313EA /* DOMEventListener.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMEventListener.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1081310814                85D389B00A991A7F00282145 /* DOMAttr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMAttr.h; sourceTree = "<group>"; };
    1081410815                85D389B10A991A7F00282145 /* DOMAttr.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMAttr.mm; sourceTree = "<group>"; };
     
    1085310854                85E711400AC5D5340053270F /* DOMCharacterDataInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCharacterDataInternal.h; sourceTree = "<group>"; };
    1085410855                85E711410AC5D5340053270F /* DOMCommentInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCommentInternal.h; sourceTree = "<group>"; };
    10855                 85E711420AC5D5340053270F /* DOMCounterInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCounterInternal.h; sourceTree = "<group>"; };
    10856                 85E711430AC5D5340053270F /* DOMCSSRuleListInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSRuleListInternal.h; sourceTree = "<group>"; };
    10857                 85E711440AC5D5340053270F /* DOMCSSStyleDeclarationInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMCSSStyleDeclarationInternal.h; sourceTree = "<group>"; };
     10856                85E711420AC5D5340053270F /* DOMCounterInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCounterInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10857                85E711430AC5D5340053270F /* DOMCSSRuleListInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSRuleListInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10858                85E711440AC5D5340053270F /* DOMCSSStyleDeclarationInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMCSSStyleDeclarationInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1085810859                85E711450AC5D5340053270F /* DOMDocumentFragmentInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMDocumentFragmentInternal.h; sourceTree = "<group>"; };
    1085910860                85E711460AC5D5340053270F /* DOMDocumentInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMDocumentInternal.h; sourceTree = "<group>"; };
     
    1094910950                85F56A780A98CE3700ADB60A /* DOMProcessingInstruction.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMProcessingInstruction.h; sourceTree = "<group>"; };
    1095010951                85F56A790A98CE3700ADB60A /* DOMProcessingInstruction.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMProcessingInstruction.mm; sourceTree = "<group>"; };
    10951                 85FF31580AAFBFCB00374F38 /* DOMKeyboardEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMKeyboardEvent.h; sourceTree = "<group>"; };
    10952                 85FF31590AAFBFCB00374F38 /* DOMKeyboardEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMKeyboardEvent.mm; sourceTree = "<group>"; };
     10952                85FF31580AAFBFCB00374F38 /* DOMKeyboardEvent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMKeyboardEvent.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     10953                85FF31590AAFBFCB00374F38 /* DOMKeyboardEvent.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMKeyboardEvent.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1095310954                861C2EA313FB4FDD00062ABB /* DocumentLoadTiming.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DocumentLoadTiming.cpp; sourceTree = "<group>"; };
    1095410955                862F129D18C1572C005C54AF /* CountedUserActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CountedUserActivity.h; sourceTree = "<group>"; };
     
    1113711138                933A142C0B7D188600A53FFD /* TextEvent.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TextEvent.idl; sourceTree = "<group>"; };
    1113811139                933A142D0B7D188600A53FFD /* TextEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextEvent.h; sourceTree = "<group>"; };
    11139                 933A14750B7D1BAF00A53FFD /* DOMTextEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMTextEvent.h; sourceTree = "<group>"; };
    11140                 933A14A90B7D1D0900A53FFD /* DOMTextEvent.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMTextEvent.mm; sourceTree = "<group>"; };
     11140                933A14750B7D1BAF00A53FFD /* DOMTextEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMTextEvent.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     11141                933A14A90B7D1D0900A53FFD /* DOMTextEvent.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMTextEvent.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1114111142                933A14B60B7D1D5200A53FFD /* JSTextEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSTextEvent.cpp; sourceTree = "<group>"; };
    1114211143                933A14B70B7D1D5200A53FFD /* JSTextEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSTextEvent.h; sourceTree = "<group>"; };
     
    1354113542                BCC0E8741BFE70E9008F7F50 /* HTMLPictureElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTMLPictureElement.h; sourceTree = "<group>"; };
    1354213543                BCC438770E886CC700533DD5 /* JSHTMLInputElementCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSHTMLInputElementCustom.cpp; sourceTree = "<group>"; };
    13543                 BCC573330D695BBE006EF517 /* DOMProgressEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMProgressEvent.h; sourceTree = "<group>"; };
    13544                 BCC573340D695BBE006EF517 /* DOMProgressEvent.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMProgressEvent.mm; sourceTree = "<group>"; };
    13545                 BCC573370D695BD7006EF517 /* DOMProgressEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMProgressEventInternal.h; sourceTree = "<group>"; };
     13544                BCC573330D695BBE006EF517 /* DOMProgressEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMProgressEvent.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     13545                BCC573340D695BBE006EF517 /* DOMProgressEvent.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = DOMProgressEvent.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
     13546                BCC573370D695BD7006EF517 /* DOMProgressEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = DOMProgressEventInternal.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
    1354613547                BCC5BDFE0C0E93110011C2DB /* JSCSSStyleSheet.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JSCSSStyleSheet.cpp; sourceTree = "<group>"; };
    1354713548                BCC5BDFF0C0E93110011C2DB /* JSCSSStyleSheet.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = JSCSSStyleSheet.h; sourceTree = "<group>"; };
     
    1647616477                        sourceTree = "<group>";
    1647716478                };
     16479                1AFC6D281D515D6700A42FA1 /* CSS */ = {
     16480                        isa = PBXGroup;
     16481                        children = (
     16482                                858C38A10AA8F20400B187A4 /* DOMCounter.h */,
     16483                                858C38A20AA8F20400B187A4 /* DOMCounter.mm */,
     16484                                85E711420AC5D5340053270F /* DOMCounterInternal.h */,
     16485                                85032DC30AA8C9BE007D3B7D /* DOMCSSCharsetRule.h */,
     16486                                85032DC40AA8C9BE007D3B7D /* DOMCSSCharsetRule.mm */,
     16487                                85909CD30ACC7A7E00DF01F1 /* DOMCSSCharsetRuleInternal.h */,
     16488                                85032DC50AA8C9BE007D3B7D /* DOMCSSFontFaceRule.h */,
     16489                                85032DC60AA8C9BE007D3B7D /* DOMCSSFontFaceRule.mm */,
     16490                                85909CD40ACC7A7E00DF01F1 /* DOMCSSFontFaceRuleInternal.h */,
     16491                                85032DC70AA8C9BE007D3B7D /* DOMCSSImportRule.h */,
     16492                                85032DC80AA8C9BE007D3B7D /* DOMCSSImportRule.mm */,
     16493                                85909CD50ACC7A7E00DF01F1 /* DOMCSSImportRuleInternal.h */,
     16494                                85032DC90AA8C9BE007D3B7D /* DOMCSSMediaRule.h */,
     16495                                85032DCA0AA8C9BE007D3B7D /* DOMCSSMediaRule.mm */,
     16496                                85909CD60ACC7A7E00DF01F1 /* DOMCSSMediaRuleInternal.h */,
     16497                                85032DCB0AA8C9BE007D3B7D /* DOMCSSPageRule.h */,
     16498                                85032DCC0AA8C9BE007D3B7D /* DOMCSSPageRule.mm */,
     16499                                85909CD70ACC7A7E00DF01F1 /* DOMCSSPageRuleInternal.h */,
     16500                                858C382A0AA8E40500B187A4 /* DOMCSSPrimitiveValue.h */,
     16501                                858C382B0AA8E40500B187A4 /* DOMCSSPrimitiveValue.mm */,
     16502                                85909D260ACC7D5500DF01F1 /* DOMCSSPrimitiveValueInternal.h */,
     16503                                85032DCD0AA8C9BE007D3B7D /* DOMCSSRule.h */,
     16504                                85032DCE0AA8C9BE007D3B7D /* DOMCSSRule.mm */,
     16505                                85B498EC0ADB32FB00925CBB /* DOMCSSRuleInternal.h */,
     16506                                85032DCF0AA8C9BE007D3B7D /* DOMCSSRuleList.h */,
     16507                                85032DD00AA8C9BE007D3B7D /* DOMCSSRuleList.mm */,
     16508                                85E711430AC5D5340053270F /* DOMCSSRuleListInternal.h */,
     16509                                85032DD10AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.h */,
     16510                                85032DD20AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.mm */,
     16511                                85E711440AC5D5340053270F /* DOMCSSStyleDeclarationInternal.h */,
     16512                                85032DD30AA8C9BE007D3B7D /* DOMCSSStyleRule.h */,
     16513                                85032DD40AA8C9BE007D3B7D /* DOMCSSStyleRule.mm */,
     16514                                85909CD90ACC7A7E00DF01F1 /* DOMCSSStyleRuleInternal.h */,
     16515                                858C39260AA8FF9D00B187A4 /* DOMCSSStyleSheet.h */,
     16516                                858C39270AA8FF9D00B187A4 /* DOMCSSStyleSheet.mm */,
     16517                                85909CDA0ACC7A7E00DF01F1 /* DOMCSSStyleSheetInternal.h */,
     16518                                85032DD50AA8C9BE007D3B7D /* DOMCSSUnknownRule.h */,
     16519                                85032DD60AA8C9BE007D3B7D /* DOMCSSUnknownRule.mm */,
     16520                                85909CDB0ACC7A7E00DF01F1 /* DOMCSSUnknownRuleInternal.h */,
     16521                                858C381A0AA8E29600B187A4 /* DOMCSSValue.h */,
     16522                                858C381B0AA8E29600B187A4 /* DOMCSSValue.mm */,
     16523                                85B498F20ADB336A00925CBB /* DOMCSSValueInternal.h */,
     16524                                858C383A0AA8ED8200B187A4 /* DOMCSSValueList.h */,
     16525                                858C383B0AA8ED8200B187A4 /* DOMCSSValueList.mm */,
     16526                                85909D280ACC7D5500DF01F1 /* DOMCSSValueListInternal.h */,
     16527                                858C38A30AA8F20400B187A4 /* DOMRect.h */,
     16528                                858C38A40AA8F20400B187A4 /* DOMRect.mm */,
     16529                                85E711870AC5D5350053270F /* DOMRectInternal.h */,
     16530                                855D35890AD707310019AAC7 /* DOMRGBColor.h */,
     16531                                BCAEFCAD1016CE4A0040D34E /* DOMRGBColor.mm */,
     16532                                BCD0FC4E0DBD720B00B2F630 /* DOMRGBColorInternal.h */,
     16533                        );
     16534                        name = CSS;
     16535                        sourceTree = "<group>";
     16536                };
     16537                1AFC6D291D515FC900A42FA1 /* Events */ = {
     16538                        isa = PBXGroup;
     16539                        children = (
     16540                                85AFA8200AAF528A00E84305 /* DOMEvent.h */,
     16541                                85AFA8210AAF528A00E84305 /* DOMEvent.mm */,
     16542                                85B498F40ADB337A00925CBB /* DOMEventInternal.h */,
     16543                                85D2AD670AB1A40A00C313EA /* DOMEventListener.h */,
     16544                                8540751F0AD6C5FB00620C57 /* DOMEventTarget.h */,
     16545                                85FF31580AAFBFCB00374F38 /* DOMKeyboardEvent.h */,
     16546                                85FF31590AAFBFCB00374F38 /* DOMKeyboardEvent.mm */,
     16547                                85989DC50ACC8BBD00A0BC51 /* DOMKeyboardEventInternal.h */,
     16548                                857E0B230AB043460036E447 /* DOMMouseEvent.h */,
     16549                                857E0B240AB043460036E447 /* DOMMouseEvent.mm */,
     16550                                85989DC60ACC8BBD00A0BC51 /* DOMMouseEventInternal.h */,
     16551                                85C7F5BC0AAFB7CC004014DD /* DOMMutationEvent.h */,
     16552                                85C7F5BD0AAFB7CC004014DD /* DOMMutationEvent.mm */,
     16553                                85989DC70ACC8BBD00A0BC51 /* DOMMutationEventInternal.h */,
     16554                                85C7F5CE0AAFB8D9004014DD /* DOMOverflowEvent.h */,
     16555                                85C7F5CF0AAFB8D9004014DD /* DOMOverflowEvent.mm */,
     16556                                85989DC80ACC8BBD00A0BC51 /* DOMOverflowEventInternal.h */,
     16557                                BCC573330D695BBE006EF517 /* DOMProgressEvent.h */,
     16558                                BCC573340D695BBE006EF517 /* DOMProgressEvent.mm */,
     16559                                BCC573370D695BD7006EF517 /* DOMProgressEventInternal.h */,
     16560                                933A14750B7D1BAF00A53FFD /* DOMTextEvent.h */,
     16561                                933A14A90B7D1D0900A53FFD /* DOMTextEvent.mm */,
     16562                                4429AB070CB84F81007647C5 /* DOMTextEventInternal.h */,
     16563                                85C7F48F0AAF79DC004014DD /* DOMUIEvent.h */,
     16564                                85C7F4900AAF79DC004014DD /* DOMUIEvent.mm */,
     16565                                85989DC90ACC8BBD00A0BC51 /* DOMUIEventInternal.h */,
     16566                                85C7F5E50AAFBAFB004014DD /* DOMWheelEvent.h */,
     16567                                85C7F5E60AAFBAFB004014DD /* DOMWheelEvent.mm */,
     16568                                85989DCA0ACC8BBD00A0BC51 /* DOMWheelEventInternal.h */,
     16569                        );
     16570                        name = Events;
     16571                        sourceTree = "<group>";
     16572                };
    1647816573                1C5FAECA0DCFD8C900D58F78 /* Inspector */ = {
    1647916574                        isa = PBXGroup;
     
    1850418599                        sourceTree = "<group>";
    1850518600                };
    18506                 85967DCA0AA8BF0F005FEDEE /* CSS */ = {
    18507                         isa = PBXGroup;
    18508                         children = (
    18509                                 858C38A10AA8F20400B187A4 /* DOMCounter.h */,
    18510                                 858C38A20AA8F20400B187A4 /* DOMCounter.mm */,
    18511                                 85032DC30AA8C9BE007D3B7D /* DOMCSSCharsetRule.h */,
    18512                                 85032DC40AA8C9BE007D3B7D /* DOMCSSCharsetRule.mm */,
    18513                                 85032DC50AA8C9BE007D3B7D /* DOMCSSFontFaceRule.h */,
    18514                                 85032DC60AA8C9BE007D3B7D /* DOMCSSFontFaceRule.mm */,
    18515                                 85032DC70AA8C9BE007D3B7D /* DOMCSSImportRule.h */,
    18516                                 85032DC80AA8C9BE007D3B7D /* DOMCSSImportRule.mm */,
    18517                                 85032DC90AA8C9BE007D3B7D /* DOMCSSMediaRule.h */,
    18518                                 85032DCA0AA8C9BE007D3B7D /* DOMCSSMediaRule.mm */,
    18519                                 85032DCB0AA8C9BE007D3B7D /* DOMCSSPageRule.h */,
    18520                                 85032DCC0AA8C9BE007D3B7D /* DOMCSSPageRule.mm */,
    18521                                 858C382A0AA8E40500B187A4 /* DOMCSSPrimitiveValue.h */,
    18522                                 858C382B0AA8E40500B187A4 /* DOMCSSPrimitiveValue.mm */,
    18523                                 85032DCD0AA8C9BE007D3B7D /* DOMCSSRule.h */,
    18524                                 85032DCE0AA8C9BE007D3B7D /* DOMCSSRule.mm */,
    18525                                 85032DCF0AA8C9BE007D3B7D /* DOMCSSRuleList.h */,
    18526                                 85032DD00AA8C9BE007D3B7D /* DOMCSSRuleList.mm */,
    18527                                 85032DD10AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.h */,
    18528                                 85032DD20AA8C9BE007D3B7D /* DOMCSSStyleDeclaration.mm */,
    18529                                 85032DD30AA8C9BE007D3B7D /* DOMCSSStyleRule.h */,
    18530                                 85032DD40AA8C9BE007D3B7D /* DOMCSSStyleRule.mm */,
    18531                                 858C39260AA8FF9D00B187A4 /* DOMCSSStyleSheet.h */,
    18532                                 858C39270AA8FF9D00B187A4 /* DOMCSSStyleSheet.mm */,
    18533                                 85032DD50AA8C9BE007D3B7D /* DOMCSSUnknownRule.h */,
    18534                                 85032DD60AA8C9BE007D3B7D /* DOMCSSUnknownRule.mm */,
    18535                                 858C381A0AA8E29600B187A4 /* DOMCSSValue.h */,
    18536                                 858C381B0AA8E29600B187A4 /* DOMCSSValue.mm */,
    18537                                 858C383A0AA8ED8200B187A4 /* DOMCSSValueList.h */,
    18538                                 858C383B0AA8ED8200B187A4 /* DOMCSSValueList.mm */,
    18539                                 858C38A30AA8F20400B187A4 /* DOMRect.h */,
    18540                                 858C38A40AA8F20400B187A4 /* DOMRect.mm */,
    18541                                 855D35890AD707310019AAC7 /* DOMRGBColor.h */,
    18542                                 BCAEFCAD1016CE4A0040D34E /* DOMRGBColor.mm */,
    18543                         );
    18544                         name = CSS;
    18545                         sourceTree = "<group>";
    18546                 };
    18547                 85AFA7AB0AAF3BB000E84305 /* Events */ = {
    18548                         isa = PBXGroup;
    18549                         children = (
    18550                                 85AFA8200AAF528A00E84305 /* DOMEvent.h */,
    18551                                 85AFA8210AAF528A00E84305 /* DOMEvent.mm */,
    18552                                 85D2AD670AB1A40A00C313EA /* DOMEventListener.h */,
    18553                                 8540751F0AD6C5FB00620C57 /* DOMEventTarget.h */,
    18554                                 85FF31580AAFBFCB00374F38 /* DOMKeyboardEvent.h */,
    18555                                 85FF31590AAFBFCB00374F38 /* DOMKeyboardEvent.mm */,
    18556                                 857E0B230AB043460036E447 /* DOMMouseEvent.h */,
    18557                                 857E0B240AB043460036E447 /* DOMMouseEvent.mm */,
    18558                                 85C7F5BC0AAFB7CC004014DD /* DOMMutationEvent.h */,
    18559                                 85C7F5BD0AAFB7CC004014DD /* DOMMutationEvent.mm */,
    18560                                 85C7F5CE0AAFB8D9004014DD /* DOMOverflowEvent.h */,
    18561                                 85C7F5CF0AAFB8D9004014DD /* DOMOverflowEvent.mm */,
    18562                                 BCC573330D695BBE006EF517 /* DOMProgressEvent.h */,
    18563                                 BCC573340D695BBE006EF517 /* DOMProgressEvent.mm */,
    18564                                 933A14750B7D1BAF00A53FFD /* DOMTextEvent.h */,
    18565                                 933A14A90B7D1D0900A53FFD /* DOMTextEvent.mm */,
    18566                                 85C7F48F0AAF79DC004014DD /* DOMUIEvent.h */,
    18567                                 85C7F4900AAF79DC004014DD /* DOMUIEvent.mm */,
    18568                                 85C7F5E50AAFBAFB004014DD /* DOMWheelEvent.h */,
    18569                                 85C7F5E60AAFBAFB004014DD /* DOMWheelEvent.mm */,
    18570                         );
    18571                         name = Events;
    18572                         sourceTree = "<group>";
    18573                 };
    1857418601                85B232260A8BF3A100FDF47B /* Derived Sources */ = {
    1857518602                        isa = PBXGroup;
    1857618603                        children = (
    1857718604                                85967D9F0AA8BB59005FEDEE /* Core */,
    18578                                 85967DCA0AA8BF0F005FEDEE /* CSS */,
    18579                                 85AFA7AB0AAF3BB000E84305 /* Events */,
    1858018605                                85E7113D0AC5D4A10053270F /* Internal */,
    1858118606                        );
     
    1859118616                                85E711400AC5D5340053270F /* DOMCharacterDataInternal.h */,
    1859218617                                85E711410AC5D5340053270F /* DOMCommentInternal.h */,
    18593                                 85E711420AC5D5340053270F /* DOMCounterInternal.h */,
    18594                                 85909CD30ACC7A7E00DF01F1 /* DOMCSSCharsetRuleInternal.h */,
    18595                                 85909CD40ACC7A7E00DF01F1 /* DOMCSSFontFaceRuleInternal.h */,
    18596                                 85909CD50ACC7A7E00DF01F1 /* DOMCSSImportRuleInternal.h */,
    18597                                 85909CD60ACC7A7E00DF01F1 /* DOMCSSMediaRuleInternal.h */,
    18598                                 85909CD70ACC7A7E00DF01F1 /* DOMCSSPageRuleInternal.h */,
    18599                                 85909D260ACC7D5500DF01F1 /* DOMCSSPrimitiveValueInternal.h */,
    18600                                 85B498EC0ADB32FB00925CBB /* DOMCSSRuleInternal.h */,
    18601                                 85E711430AC5D5340053270F /* DOMCSSRuleListInternal.h */,
    18602                                 85E711440AC5D5340053270F /* DOMCSSStyleDeclarationInternal.h */,
    18603                                 85909CD90ACC7A7E00DF01F1 /* DOMCSSStyleRuleInternal.h */,
    18604                                 85909CDA0ACC7A7E00DF01F1 /* DOMCSSStyleSheetInternal.h */,
    18605                                 85909CDB0ACC7A7E00DF01F1 /* DOMCSSUnknownRuleInternal.h */,
    18606                                 85B498F20ADB336A00925CBB /* DOMCSSValueInternal.h */,
    18607                                 85909D280ACC7D5500DF01F1 /* DOMCSSValueListInternal.h */,
    1860818618                                85E711450AC5D5340053270F /* DOMDocumentFragmentInternal.h */,
    1860918619                                85E711460AC5D5340053270F /* DOMDocumentInternal.h */,
     
    1861318623                                85E7114A0AC5D5340053270F /* DOMEntityInternal.h */,
    1861418624                                85E7114B0AC5D5340053270F /* DOMEntityReferenceInternal.h */,
    18615                                 85B498F40ADB337A00925CBB /* DOMEventInternal.h */,
    18616                                 85989DC50ACC8BBD00A0BC51 /* DOMKeyboardEventInternal.h */,
    18617                                 85989DC60ACC8BBD00A0BC51 /* DOMMouseEventInternal.h */,
    18618                                 85989DC70ACC8BBD00A0BC51 /* DOMMutationEventInternal.h */,
    1861918625                                85E711830AC5D5350053270F /* DOMNamedNodeMapInternal.h */,
    1862018626                                85B498FA0ADB340200925CBB /* DOMNodeInternal.h */,
    1862118627                                85E711840AC5D5350053270F /* DOMNodeListInternal.h */,
    18622                                 85989DC80ACC8BBD00A0BC51 /* DOMOverflowEventInternal.h */,
    1862318628                                85E711860AC5D5350053270F /* DOMProcessingInstructionInternal.h */,
    18624                                 BCC573370D695BD7006EF517 /* DOMProgressEventInternal.h */,
    18625                                 85E711870AC5D5350053270F /* DOMRectInternal.h */,
    18626                                 BCD0FC4E0DBD720B00B2F630 /* DOMRGBColorInternal.h */,
    1862718629                                0FF50262102BA92B0066F39A /* DOMStyleMediaInternal.h */,
    18628                                 4429AB070CB84F81007647C5 /* DOMTextEventInternal.h */,
    1862918630                                85E7118A0AC5D5350053270F /* DOMTextInternal.h */,
    18630                                 85989DC90ACC8BBD00A0BC51 /* DOMUIEventInternal.h */,
    18631                                 85989DCA0ACC8BBD00A0BC51 /* DOMWheelEventInternal.h */,
    1863218631                        );
    1863318632                        name = Internal;
     
    2222222221                        isa = PBXGroup;
    2222322222                        children = (
     22223                                1AFC6D291D515FC900A42FA1 /* Events */,
     22224                                1AFC6D281D515D6700A42FA1 /* CSS */,
    2222422225                                1ACF3FC51D5013B00063AEFB /* Ranges */,
    2222522226                                1ACF3FC41D5013A90063AEFB /* Traversal */,
     
    2631726318                                A584FE3C1864E2D800843B10 /* JSCommandLineAPIHost.h in Headers */,
    2631826319                                93F9B6E10BA0FB7200854064 /* JSComment.h in Headers */,
     26320                                1AFC6D2A1D51609800A42FA1 /* DOMTextEventInternal.h in Headers */,
    2631926321                                79AC9219109945C80021266E /* JSCompositionEvent.h in Headers */,
    2632026322                                FDA15EBE12B03F0B003A583A /* JSConvolverNode.h in Headers */,
Note: See TracChangeset for help on using the changeset viewer.