Changeset 207420 in webkit


Ignore:
Timestamp:
Oct 17, 2016 12:06:25 PM (8 years ago)
Author:
Simon Fraser
Message:

Implement DOMPoint/DOMPointReadOnly
https://bugs.webkit.org/show_bug.cgi?id=133916

Reviewed by Darin Adler.
Source/WebCore:

Patch mostly by Dirk Schultz <krit@webkit.org>.

Implement DOMPoint/DOMPointReadOnly following https://drafts.fxtf.org/geometry/
(although we may need to match https://www.w3.org/TR/geometry-1/ to be compatible
with Chrome).

Test: geometry/DOMPoint-001.html

  • CMakeLists.txt:
  • DerivedSources.make:
  • WebCore.xcodeproj/project.pbxproj:
  • dom/DOMPoint.h: Added.
  • dom/DOMPoint.idl: Added.
  • dom/DOMPointInit.h: Added.
  • dom/DOMPointInit.idl: Added.
  • dom/DOMPointReadOnly.h: Added.

(WebCore::DOMPointReadOnly::create):
(WebCore::DOMPointReadOnly::fromPoint):
(WebCore::DOMPointReadOnly::x):
(WebCore::DOMPointReadOnly::y):
(WebCore::DOMPointReadOnly::z):
(WebCore::DOMPointReadOnly::w):
(WebCore::DOMPointReadOnly::DOMPointReadOnly):

  • dom/DOMPointReadOnly.idl: Added.

LayoutTests:

New Web Platform-style test, and rebaselines.

  • geometry/DOMPoint-001-expected.txt: Added.
  • geometry/DOMPoint-001.html: Added.
  • js/dom/global-constructors-attributes-dedicated-worker-expected.txt:
  • js/dom/global-constructors-attributes-expected.txt:
  • platform/efl/js/dom/global-constructors-attributes-expected.txt:
  • platform/gtk/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac-wk1/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac/js/dom/global-constructors-attributes-expected.txt:
  • platform/win/js/dom/global-constructors-attributes-expected.txt:
Location:
trunk
Files:
9 added
13 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r207410 r207420  
     12016-10-17  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Implement DOMPoint/DOMPointReadOnly
     4        https://bugs.webkit.org/show_bug.cgi?id=133916
     5
     6        Reviewed by Darin Adler.
     7       
     8        New Web Platform-style test, and rebaselines.
     9
     10        * geometry/DOMPoint-001-expected.txt: Added.
     11        * geometry/DOMPoint-001.html: Added.
     12        * js/dom/global-constructors-attributes-dedicated-worker-expected.txt:
     13        * js/dom/global-constructors-attributes-expected.txt:
     14        * platform/efl/js/dom/global-constructors-attributes-expected.txt:
     15        * platform/gtk/js/dom/global-constructors-attributes-expected.txt:
     16        * platform/mac-wk1/js/dom/global-constructors-attributes-expected.txt:
     17        * platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt:
     18        * platform/mac/js/dom/global-constructors-attributes-expected.txt:
     19        * platform/win/js/dom/global-constructors-attributes-expected.txt:
     20
    1212016-10-17  Ryan Haddad  <ryanhaddad@apple.com>
    222
  • trunk/LayoutTests/js/dom/global-constructors-attributes-dedicated-worker-expected.txt

    r206627 r207420  
    5050PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMException').enumerable is false
    5151PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMException').configurable is true
     52PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMPoint').value is DOMPoint
     53PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('get') is false
     54PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('set') is false
     55PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMPoint').enumerable is false
     56PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMPoint').configurable is true
     57PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').value is DOMPointReadOnly
     58PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('get') is false
     59PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('set') is false
     60PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
     61PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
    5262PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DataView').value is DataView
    5363PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DataView').hasOwnProperty('get') is false
  • trunk/LayoutTests/js/dom/global-constructors-attributes-expected.txt

    r206963 r207420  
    289289PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').enumerable is false
    290290PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').configurable is true
     291PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').value is DOMPoint
     292PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('get') is false
     293PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('set') is false
     294PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').enumerable is false
     295PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').configurable is true
     296PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').value is DOMPointReadOnly
     297PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('get') is false
     298PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('set') is false
     299PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
     300PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
    291301PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    292302PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/LayoutTests/platform/efl/js/dom/global-constructors-attributes-expected.txt

    r206983 r207420  
    289289PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').enumerable is false
    290290PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').configurable is true
     291PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').value is DOMPoint
     292PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('get') is false
     293PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('set') is false
     294PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').enumerable is false
     295PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').configurable is true
     296PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').value is DOMPointReadOnly
     297PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('get') is false
     298PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('set') is false
     299PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
     300PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
    291301PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    292302PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/LayoutTests/platform/gtk/js/dom/global-constructors-attributes-expected.txt

    r206843 r207420  
    324324PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').enumerable is false
    325325PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').configurable is true
     326PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').value is DOMPoint
     327PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('get') is false
     328PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('set') is false
     329PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').enumerable is false
     330PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').configurable is true
     331PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').value is DOMPointReadOnly
     332PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('get') is false
     333PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('set') is false
     334PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
     335PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
    326336PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    327337PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/LayoutTests/platform/mac-wk1/js/dom/global-constructors-attributes-expected.txt

    r206983 r207420  
    334334PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').enumerable is false
    335335PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').configurable is true
     336PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').value is DOMPoint
     337PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('get') is false
     338PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('set') is false
     339PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').enumerable is false
     340PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').configurable is true
     341PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').value is DOMPointReadOnly
     342PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('get') is false
     343PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('set') is false
     344PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
     345PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
    336346PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    337347PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/LayoutTests/platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt

    r206983 r207420  
    334334PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').enumerable is false
    335335PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').configurable is true
     336PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').value is DOMPoint
     337PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('get') is false
     338PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('set') is false
     339PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').enumerable is false
     340PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').configurable is true
     341PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').value is DOMPointReadOnly
     342PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('get') is false
     343PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('set') is false
     344PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
     345PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
    336346PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    337347PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt

    r206983 r207420  
    334334PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').enumerable is false
    335335PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').configurable is true
     336PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').value is DOMPoint
     337PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('get') is false
     338PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('set') is false
     339PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').enumerable is false
     340PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').configurable is true
     341PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').value is DOMPointReadOnly
     342PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('get') is false
     343PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('set') is false
     344PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
     345PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
    336346PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    337347PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/LayoutTests/platform/win/js/dom/global-constructors-attributes-expected.txt

    r206983 r207420  
    229229PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').enumerable is false
    230230PASS Object.getOwnPropertyDescriptor(global, 'DOMParser').configurable is true
     231PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').value is DOMPoint
     232PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('get') is false
     233PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').hasOwnProperty('set') is false
     234PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').enumerable is false
     235PASS Object.getOwnPropertyDescriptor(global, 'DOMPoint').configurable is true
     236PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').value is DOMPointReadOnly
     237PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('get') is false
     238PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').hasOwnProperty('set') is false
     239PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
     240PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
    231241PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    232242PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/Source/WebCore/CMakeLists.txt

    r207378 r207420  
    387387    dom/DOMImplementation.idl
    388388    dom/DOMNamedFlowCollection.idl
     389    dom/DOMPoint.idl
     390    dom/DOMPointInit.idl
     391    dom/DOMPointReadOnly.idl
    389392    dom/DOMStringList.idl
    390393    dom/DOMStringMap.idl
  • trunk/Source/WebCore/ChangeLog

    r207418 r207420  
     12016-10-17  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Implement DOMPoint/DOMPointReadOnly
     4        https://bugs.webkit.org/show_bug.cgi?id=133916
     5
     6        Reviewed by Darin Adler.
     7
     8        Patch mostly by Dirk Schultz <krit@webkit.org>.
     9
     10        Implement DOMPoint/DOMPointReadOnly following https://drafts.fxtf.org/geometry/
     11        (although we may need to match https://www.w3.org/TR/geometry-1/ to be compatible
     12        with Chrome).
     13       
     14        Test: geometry/DOMPoint-001.html
     15
     16        * CMakeLists.txt:
     17        * DerivedSources.make:
     18        * WebCore.xcodeproj/project.pbxproj:
     19        * dom/DOMPoint.h: Added.
     20        * dom/DOMPoint.idl: Added.
     21        * dom/DOMPointInit.h: Added.
     22        * dom/DOMPointInit.idl: Added.
     23        * dom/DOMPointReadOnly.h: Added.
     24        (WebCore::DOMPointReadOnly::create):
     25        (WebCore::DOMPointReadOnly::fromPoint):
     26        (WebCore::DOMPointReadOnly::x):
     27        (WebCore::DOMPointReadOnly::y):
     28        (WebCore::DOMPointReadOnly::z):
     29        (WebCore::DOMPointReadOnly::w):
     30        (WebCore::DOMPointReadOnly::DOMPointReadOnly):
     31        * dom/DOMPointReadOnly.idl: Added.
     32
    1332016-10-17  Antoine Quint  <graouts@apple.com>
    234
  • trunk/Source/WebCore/DerivedSources.make

    r207280 r207420  
    295295    $(WebCore)/dom/DOMImplementation.idl \
    296296    $(WebCore)/dom/DOMNamedFlowCollection.idl \
     297    $(WebCore)/dom/DOMPoint.idl \
     298    $(WebCore)/dom/DOMPointInit.idl \
     299    $(WebCore)/dom/DOMPointReadOnly.idl \
    297300    $(WebCore)/dom/DOMStringList.idl \
    298301    $(WebCore)/dom/DOMStringMap.idl \
  • trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj

    r207418 r207420  
    467467                0F43C85D189E10CF00019AE2 /* PerformanceTiming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F43C85C189E10CF00019AE2 /* PerformanceTiming.cpp */; };
    468468                0F43C85F189E15A600019AE2 /* JSPerformanceTiming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F43C85E189E15A600019AE2 /* JSPerformanceTiming.cpp */; };
     469                0F49669D1DB408C100A274BB /* DOMPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4966991DB408C100A274BB /* DOMPoint.h */; };
     470                0F49669F1DB408C100A274BB /* DOMPointReadOnly.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F49669B1DB408C100A274BB /* DOMPointReadOnly.h */; };
     471                0F4966A31DB4091000A274BB /* DOMPointInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4966A21DB4091000A274BB /* DOMPointInit.h */; };
     472                0F4966AA1DB40C4300A274BB /* JSDOMPoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F4966A41DB40C4300A274BB /* JSDOMPoint.cpp */; };
     473                0F4966AB1DB40C4300A274BB /* JSDOMPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4966A51DB40C4300A274BB /* JSDOMPoint.h */; };
     474                0F4966AC1DB40C4300A274BB /* JSDOMPointInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F4966A61DB40C4300A274BB /* JSDOMPointInit.cpp */; };
     475                0F4966AD1DB40C4300A274BB /* JSDOMPointInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4966A71DB40C4300A274BB /* JSDOMPointInit.h */; };
     476                0F4966AE1DB40C4300A274BB /* JSDOMPointReadOnly.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F4966A81DB40C4300A274BB /* JSDOMPointReadOnly.cpp */; };
     477                0F4966AF1DB40C4300A274BB /* JSDOMPointReadOnly.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4966A91DB40C4300A274BB /* JSDOMPointReadOnly.h */; };
    469478                0F4E57171313276200CF85AF /* RenderSVGAllInOne.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F4E57161313276200CF85AF /* RenderSVGAllInOne.cpp */; };
    470479                0F54DCE51881051D003EEDBB /* TextAutoSizing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F54DCE31881051D003EEDBB /* TextAutoSizing.cpp */; };
     
    73017310                0F43C85C189E10CF00019AE2 /* PerformanceTiming.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PerformanceTiming.cpp; sourceTree = "<group>"; };
    73027311                0F43C85E189E15A600019AE2 /* JSPerformanceTiming.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSPerformanceTiming.cpp; sourceTree = "<group>"; };
     7312                0F4966991DB408C100A274BB /* DOMPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMPoint.h; sourceTree = "<group>"; };
     7313                0F49669A1DB408C100A274BB /* DOMPoint.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DOMPoint.idl; sourceTree = "<group>"; };
     7314                0F49669B1DB408C100A274BB /* DOMPointReadOnly.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMPointReadOnly.h; sourceTree = "<group>"; };
     7315                0F49669C1DB408C100A274BB /* DOMPointReadOnly.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DOMPointReadOnly.idl; sourceTree = "<group>"; };
     7316                0F4966A11DB4090100A274BB /* DOMPointInit.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DOMPointInit.idl; sourceTree = "<group>"; };
     7317                0F4966A21DB4091000A274BB /* DOMPointInit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMPointInit.h; sourceTree = "<group>"; };
     7318                0F4966A41DB40C4300A274BB /* JSDOMPoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSDOMPoint.cpp; path = JSDOMPoint.cpp; sourceTree = "<group>"; };
     7319                0F4966A51DB40C4300A274BB /* JSDOMPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSDOMPoint.h; path = JSDOMPoint.h; sourceTree = "<group>"; };
     7320                0F4966A61DB40C4300A274BB /* JSDOMPointInit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSDOMPointInit.cpp; path = JSDOMPointInit.cpp; sourceTree = "<group>"; };
     7321                0F4966A71DB40C4300A274BB /* JSDOMPointInit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSDOMPointInit.h; path = JSDOMPointInit.h; sourceTree = "<group>"; };
     7322                0F4966A81DB40C4300A274BB /* JSDOMPointReadOnly.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSDOMPointReadOnly.cpp; path = JSDOMPointReadOnly.cpp; sourceTree = "<group>"; };
     7323                0F4966A91DB40C4300A274BB /* JSDOMPointReadOnly.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSDOMPointReadOnly.h; path = JSDOMPointReadOnly.h; sourceTree = "<group>"; };
    73037324                0F4E57161313276200CF85AF /* RenderSVGAllInOne.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGAllInOne.cpp; sourceTree = "<group>"; };
    73047325                0F54DCCC1880C6AB003EEDBB /* ios-encodings.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = "ios-encodings.txt"; sourceTree = "<group>"; };
     
    1992119942                                52CCA9E015E3F62C0053C77F /* JSDOMNamedFlowCollection.cpp */,
    1992219943                                52CCA9E115E3F62C0053C77F /* JSDOMNamedFlowCollection.h */,
     19944                                0F4966A41DB40C4300A274BB /* JSDOMPoint.cpp */,
     19945                                0F4966A51DB40C4300A274BB /* JSDOMPoint.h */,
     19946                                0F4966A61DB40C4300A274BB /* JSDOMPointInit.cpp */,
     19947                                0F4966A71DB40C4300A274BB /* JSDOMPointInit.h */,
     19948                                0F4966A81DB40C4300A274BB /* JSDOMPointReadOnly.cpp */,
     19949                                0F4966A91DB40C4300A274BB /* JSDOMPointReadOnly.h */,
    1992319950                                C5137CF011A58378004ADB99 /* JSDOMStringList.cpp */,
    1992419951                                C5137CF111A58378004ADB99 /* JSDOMStringList.h */,
     
    2338123408                                52B6C9BE15E3F4DF00690B05 /* DOMNamedFlowCollection.h */,
    2338223409                                52B6C9BF15E3F4DF00690B05 /* DOMNamedFlowCollection.idl */,
     23410                                0F4966991DB408C100A274BB /* DOMPoint.h */,
     23411                                0F49669A1DB408C100A274BB /* DOMPoint.idl */,
     23412                                0F4966A21DB4091000A274BB /* DOMPointInit.h */,
     23413                                0F4966A11DB4090100A274BB /* DOMPointInit.idl */,
     23414                                0F49669B1DB408C100A274BB /* DOMPointReadOnly.h */,
     23415                                0F49669C1DB408C100A274BB /* DOMPointReadOnly.idl */,
    2338323416                                C55610F011A704EB00B82D27 /* DOMStringList.cpp */,
    2338423417                                C544274911A57E7A0063A749 /* DOMStringList.h */,
     
    2473324766                                A9C6E4EC0D745E2B006442E9 /* DOMPlugin.h in Headers */,
    2473424767                                A9C6E4F00D745E38006442E9 /* DOMPluginArray.h in Headers */,
     24768                                0F49669D1DB408C100A274BB /* DOMPoint.h in Headers */,
     24769                                0F4966A31DB4091000A274BB /* DOMPointInit.h in Headers */,
     24770                                0F49669F1DB408C100A274BB /* DOMPointReadOnly.h in Headers */,
    2473524771                                5185FCB71BB4C7670012898F /* DOMRequestState.h in Headers */,
    2473624772                                BC5A86850C33676000EEA649 /* DOMSelection.h in Headers */,
     
    2539825434                                A9D247FF0D757E6900FDF959 /* JSDOMPlugin.h in Headers */,
    2539925435                                A9D248010D757E6900FDF959 /* JSDOMPluginArray.h in Headers */,
     25436                                0F4966AB1DB40C4300A274BB /* JSDOMPoint.h in Headers */,
     25437                                0F4966AD1DB40C4300A274BB /* JSDOMPointInit.h in Headers */,
     25438                                0F4966AF1DB40C4300A274BB /* JSDOMPointReadOnly.h in Headers */,
    2540025439                                E172AF901811BC3700FBADB9 /* JSDOMPromise.h in Headers */,
    2540125440                                BC5A86B60C3367E800EEA649 /* JSDOMSelection.h in Headers */,
     
    2907429113                                A9C6E64C0D7465E7006442E9 /* JSDOMPluginArrayCustom.cpp in Sources */,
    2907529114                                A9C6E64D0D7465E7006442E9 /* JSDOMPluginCustom.cpp in Sources */,
     29115                                0F4966AA1DB40C4300A274BB /* JSDOMPoint.cpp in Sources */,
     29116                                0F4966AC1DB40C4300A274BB /* JSDOMPointInit.cpp in Sources */,
     29117                                0F4966AE1DB40C4300A274BB /* JSDOMPointReadOnly.cpp in Sources */,
    2907629118                                E172AF8F1811BC3700FBADB9 /* JSDOMPromise.cpp in Sources */,
    2907729119                                BC5A86B50C3367E800EEA649 /* JSDOMSelection.cpp in Sources */,
Note: See TracChangeset for help on using the changeset viewer.