Changeset 207438 in webkit


Ignore:
Timestamp:
Oct 17, 2016, 3:30:34 PM (8 years ago)
Author:
Simon Fraser
Message:

Implement DOMRect/DOMRectReadOnly
https://bugs.webkit.org/show_bug.cgi?id=163464

Reviewed by Darin Adler.

Source/WebCore:

Implement the DOMRectInit/DOMRectReadOnly/DOMRect interfaces specified in
https://dev.w3.org/fxtf/geometry/

DOMRects allow negative height/width and require double storage, so we can't just
use FloatRect for storage. They also require handling of NaN and Infinity.

To have the left/right/top/bottom accessors follow IEEE NaN rules, we need to use
custom min/max functions that return NaN if either argument is NaN, so add
nanPropagatingMin/nanPropagatingMax helpers to MathExtras.h.

Test: fast/dom/domrect.html

  • CMakeLists.txt:
  • DerivedSources.make:
  • WebCore.xcodeproj/project.pbxproj:
  • dom/DOMRect.h: Added.

(WebCore::DOMRect::create):
(WebCore::DOMRect::fromRect):
(WebCore::DOMRect::setX):
(WebCore::DOMRect::setY):
(WebCore::DOMRect::setWidth):
(WebCore::DOMRect::setHeight):
(WebCore::DOMRect::DOMRect):

  • dom/DOMRect.idl: Added.
  • dom/DOMRectInit.h: Added.
  • dom/DOMRectInit.idl: Added.
  • dom/DOMRectReadOnly.h: Added.

(WebCore::DOMRectReadOnly::create):
(WebCore::DOMRectReadOnly::fromRect):
(WebCore::DOMRectReadOnly::x):
(WebCore::DOMRectReadOnly::y):
(WebCore::DOMRectReadOnly::width):
(WebCore::DOMRectReadOnly::height):
(WebCore::DOMRectReadOnly::top):
(WebCore::DOMRectReadOnly::right):
(WebCore::DOMRectReadOnly::bottom):
(WebCore::DOMRectReadOnly::left):
(WebCore::DOMRectReadOnly::DOMRectReadOnly):

  • dom/DOMRectReadOnly.idl: Added.

Source/WTF:

Implement min()/max() in a way that follows Math.min/Math.max, which return
NaN if either argument is NaN.

  • wtf/MathExtras.h:

(WTF::nanPropagatingMin):
(WTF::nanPropagatingMax):

LayoutTests:

New test and new results for global constructor tests.

  • geometry/DOMRect-001-expected.txt: Added.
  • geometry/DOMRect-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:
8 added
15 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r207436 r207438  
     12016-10-17  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Implement DOMRect/DOMRectReadOnly
     4        https://bugs.webkit.org/show_bug.cgi?id=163464
     5
     6        Reviewed by Darin Adler.
     7       
     8        New test and new results for global constructor tests.
     9
     10        * geometry/DOMRect-001-expected.txt: Added.
     11        * geometry/DOMRect-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  Antoine Quint  <graouts@apple.com>
    222
  • trunk/LayoutTests/js/dom/global-constructors-attributes-dedicated-worker-expected.txt

    r207420 r207438  
    6060PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
    6161PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
     62PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMRect').value is DOMRect
     63PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('get') is false
     64PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('set') is false
     65PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMRect').enumerable is false
     66PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMRect').configurable is true
     67PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').value is DOMRectReadOnly
     68PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('get') is false
     69PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('set') is false
     70PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').enumerable is false
     71PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').configurable is true
    6272PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DataView').value is DataView
    6373PASS [Worker] Object.getOwnPropertyDescriptor(global, 'DataView').hasOwnProperty('get') is false
  • trunk/LayoutTests/js/dom/global-constructors-attributes-expected.txt

    r207420 r207438  
    299299PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
    300300PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
     301PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').value is DOMRect
     302PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('get') is false
     303PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('set') is false
     304PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').enumerable is false
     305PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').configurable is true
     306PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').value is DOMRectReadOnly
     307PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('get') is false
     308PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('set') is false
     309PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').enumerable is false
     310PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').configurable is true
    301311PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    302312PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/LayoutTests/platform/efl/js/dom/global-constructors-attributes-expected.txt

    r207420 r207438  
    299299PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
    300300PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
     301PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').value is DOMRect
     302PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('get') is false
     303PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('set') is false
     304PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').enumerable is false
     305PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').configurable is true
     306PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').value is DOMRectReadOnly
     307PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('get') is false
     308PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('set') is false
     309PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').enumerable is false
     310PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').configurable is true
    301311PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    302312PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/LayoutTests/platform/gtk/js/dom/global-constructors-attributes-expected.txt

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

    r207420 r207438  
    344344PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
    345345PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
     346PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').value is DOMRect
     347PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('get') is false
     348PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('set') is false
     349PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').enumerable is false
     350PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').configurable is true
     351PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').value is DOMRectReadOnly
     352PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('get') is false
     353PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('set') is false
     354PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').enumerable is false
     355PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').configurable is true
    346356PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    347357PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/LayoutTests/platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt

    r207420 r207438  
    344344PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
    345345PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
     346PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').value is DOMRect
     347PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('get') is false
     348PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('set') is false
     349PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').enumerable is false
     350PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').configurable is true
     351PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').value is DOMRectReadOnly
     352PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('get') is false
     353PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('set') is false
     354PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').enumerable is false
     355PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').configurable is true
    346356PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    347357PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt

    r207420 r207438  
    344344PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
    345345PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
     346PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').value is DOMRect
     347PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('get') is false
     348PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('set') is false
     349PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').enumerable is false
     350PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').configurable is true
     351PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').value is DOMRectReadOnly
     352PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('get') is false
     353PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('set') is false
     354PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').enumerable is false
     355PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').configurable is true
    346356PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    347357PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/LayoutTests/platform/win/js/dom/global-constructors-attributes-expected.txt

    r207420 r207438  
    239239PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').enumerable is false
    240240PASS Object.getOwnPropertyDescriptor(global, 'DOMPointReadOnly').configurable is true
     241PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').value is DOMRect
     242PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('get') is false
     243PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').hasOwnProperty('set') is false
     244PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').enumerable is false
     245PASS Object.getOwnPropertyDescriptor(global, 'DOMRect').configurable is true
     246PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').value is DOMRectReadOnly
     247PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('get') is false
     248PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').hasOwnProperty('set') is false
     249PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').enumerable is false
     250PASS Object.getOwnPropertyDescriptor(global, 'DOMRectReadOnly').configurable is true
    241251PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').value is DOMStringList
    242252PASS Object.getOwnPropertyDescriptor(global, 'DOMStringList').hasOwnProperty('get') is false
  • trunk/Source/WTF/ChangeLog

    r207381 r207438  
     12016-10-17  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Implement DOMRect/DOMRectReadOnly
     4        https://bugs.webkit.org/show_bug.cgi?id=163464
     5
     6        Reviewed by Darin Adler.
     7       
     8        Implement min()/max() in a way that follows Math.min/Math.max, which return
     9        NaN if either argument is NaN.
     10
     11        * wtf/MathExtras.h:
     12        (WTF::nanPropagatingMin):
     13        (WTF::nanPropagatingMax):
     14
    1152016-10-15  Sam Weinig  <sam@webkit.org>
    216
  • trunk/Source/WTF/wtf/MathExtras.h

    r204009 r207438  
    401401}
    402402
     403// Match behavior of Math.min, where NaN is returned if either argument is NaN.
     404template <typename T>
     405inline typename std::enable_if<std::is_floating_point<T>::value, T>::type nanPropagatingMin(T a, T b)
     406{
     407    return std::isnan(a) || std::isnan(b) ? std::numeric_limits<T>::quiet_NaN() : std::min(a, b);
     408}
     409
     410// Match behavior of Math.max, where NaN is returned if either argument is NaN.
     411template <typename T>
     412inline typename std::enable_if<std::is_floating_point<T>::value, T>::type nanPropagatingMax(T a, T b)
     413{
     414    return std::isnan(a) || std::isnan(b) ? std::numeric_limits<T>::quiet_NaN() : std::max(a, b);
     415}
     416
    403417inline bool isIntegral(float value)
    404418{
  • trunk/Source/WebCore/CMakeLists.txt

    r207420 r207438  
    390390    dom/DOMPointInit.idl
    391391    dom/DOMPointReadOnly.idl
     392    dom/DOMRect.idl
     393    dom/DOMRectInit.idl
     394    dom/DOMRectReadOnly.idl
    392395    dom/DOMStringList.idl
    393396    dom/DOMStringMap.idl
  • trunk/Source/WebCore/ChangeLog

    r207436 r207438  
     12016-10-17  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Implement DOMRect/DOMRectReadOnly
     4        https://bugs.webkit.org/show_bug.cgi?id=163464
     5
     6        Reviewed by Darin Adler.
     7       
     8        Implement the DOMRectInit/DOMRectReadOnly/DOMRect interfaces specified in
     9        https://dev.w3.org/fxtf/geometry/
     10       
     11        DOMRects allow negative height/width and require double storage, so we can't just
     12        use FloatRect for storage. They also require handling of NaN and Infinity.
     13       
     14        To have the left/right/top/bottom accessors follow IEEE NaN rules, we need to use
     15        custom min/max functions that return NaN if either argument is NaN, so add
     16        nanPropagatingMin/nanPropagatingMax helpers to MathExtras.h.
     17
     18        Test: fast/dom/domrect.html
     19
     20        * CMakeLists.txt:
     21        * DerivedSources.make:
     22        * WebCore.xcodeproj/project.pbxproj:
     23        * dom/DOMRect.h: Added.
     24        (WebCore::DOMRect::create):
     25        (WebCore::DOMRect::fromRect):
     26        (WebCore::DOMRect::setX):
     27        (WebCore::DOMRect::setY):
     28        (WebCore::DOMRect::setWidth):
     29        (WebCore::DOMRect::setHeight):
     30        (WebCore::DOMRect::DOMRect):
     31        * dom/DOMRect.idl: Added.
     32        * dom/DOMRectInit.h: Added.
     33        * dom/DOMRectInit.idl: Added.
     34        * dom/DOMRectReadOnly.h: Added.
     35        (WebCore::DOMRectReadOnly::create):
     36        (WebCore::DOMRectReadOnly::fromRect):
     37        (WebCore::DOMRectReadOnly::x):
     38        (WebCore::DOMRectReadOnly::y):
     39        (WebCore::DOMRectReadOnly::width):
     40        (WebCore::DOMRectReadOnly::height):
     41        (WebCore::DOMRectReadOnly::top):
     42        (WebCore::DOMRectReadOnly::right):
     43        (WebCore::DOMRectReadOnly::bottom):
     44        (WebCore::DOMRectReadOnly::left):
     45        (WebCore::DOMRectReadOnly::DOMRectReadOnly):
     46        * dom/DOMRectReadOnly.idl: Added.
     47
    1482016-10-17  Antoine Quint  <graouts@apple.com>
    249
  • trunk/Source/WebCore/DerivedSources.make

    r207420 r207438  
    298298    $(WebCore)/dom/DOMPointInit.idl \
    299299    $(WebCore)/dom/DOMPointReadOnly.idl \
     300    $(WebCore)/dom/DOMRect.idl \
     301    $(WebCore)/dom/DOMRectInit.idl \
     302    $(WebCore)/dom/DOMRectReadOnly.idl \
    300303    $(WebCore)/dom/DOMStringList.idl \
    301304    $(WebCore)/dom/DOMStringMap.idl \
  • trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj

    r207436 r207438  
    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                0F4710AF1DB56AFC002DCEC3 /* DOMRect.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4710A91DB56AFC002DCEC3 /* DOMRect.h */; };
     470                0F4710B11DB56AFC002DCEC3 /* DOMRectInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4710AB1DB56AFC002DCEC3 /* DOMRectInit.h */; };
     471                0F4710B31DB56AFC002DCEC3 /* DOMRectReadOnly.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4710AD1DB56AFC002DCEC3 /* DOMRectReadOnly.h */; };
     472                0F4710BB1DB56BE8002DCEC3 /* JSDOMRect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F4710B51DB56BE8002DCEC3 /* JSDOMRect.cpp */; };
     473                0F4710BC1DB56BE8002DCEC3 /* JSDOMRect.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4710B61DB56BE8002DCEC3 /* JSDOMRect.h */; };
     474                0F4710BD1DB56BE8002DCEC3 /* JSDOMRectInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F4710B71DB56BE8002DCEC3 /* JSDOMRectInit.cpp */; };
     475                0F4710BE1DB56BE8002DCEC3 /* JSDOMRectInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4710B81DB56BE8002DCEC3 /* JSDOMRectInit.h */; };
     476                0F4710BF1DB56BE8002DCEC3 /* JSDOMRectReadOnly.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F4710B91DB56BE8002DCEC3 /* JSDOMRectReadOnly.cpp */; };
     477                0F4710C01DB56BE8002DCEC3 /* JSDOMRectReadOnly.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4710BA1DB56BE8002DCEC3 /* JSDOMRectReadOnly.h */; };
    469478                0F49669D1DB408C100A274BB /* DOMPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4966991DB408C100A274BB /* DOMPoint.h */; };
    470479                0F49669F1DB408C100A274BB /* DOMPointReadOnly.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F49669B1DB408C100A274BB /* DOMPointReadOnly.h */; };
     
    73107319                0F43C85C189E10CF00019AE2 /* PerformanceTiming.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PerformanceTiming.cpp; sourceTree = "<group>"; };
    73117320                0F43C85E189E15A600019AE2 /* JSPerformanceTiming.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSPerformanceTiming.cpp; sourceTree = "<group>"; };
     7321                0F4710A91DB56AFC002DCEC3 /* DOMRect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMRect.h; sourceTree = "<group>"; };
     7322                0F4710AA1DB56AFC002DCEC3 /* DOMRect.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DOMRect.idl; sourceTree = "<group>"; };
     7323                0F4710AB1DB56AFC002DCEC3 /* DOMRectInit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMRectInit.h; sourceTree = "<group>"; };
     7324                0F4710AC1DB56AFC002DCEC3 /* DOMRectInit.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DOMRectInit.idl; sourceTree = "<group>"; };
     7325                0F4710AD1DB56AFC002DCEC3 /* DOMRectReadOnly.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMRectReadOnly.h; sourceTree = "<group>"; };
     7326                0F4710AE1DB56AFC002DCEC3 /* DOMRectReadOnly.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DOMRectReadOnly.idl; sourceTree = "<group>"; };
     7327                0F4710B51DB56BE8002DCEC3 /* JSDOMRect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSDOMRect.cpp; path = JSDOMRect.cpp; sourceTree = "<group>"; };
     7328                0F4710B61DB56BE8002DCEC3 /* JSDOMRect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSDOMRect.h; path = JSDOMRect.h; sourceTree = "<group>"; };
     7329                0F4710B71DB56BE8002DCEC3 /* JSDOMRectInit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSDOMRectInit.cpp; path = JSDOMRectInit.cpp; sourceTree = "<group>"; };
     7330                0F4710B81DB56BE8002DCEC3 /* JSDOMRectInit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSDOMRectInit.h; path = JSDOMRectInit.h; sourceTree = "<group>"; };
     7331                0F4710B91DB56BE8002DCEC3 /* JSDOMRectReadOnly.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSDOMRectReadOnly.cpp; path = JSDOMRectReadOnly.cpp; sourceTree = "<group>"; };
     7332                0F4710BA1DB56BE8002DCEC3 /* JSDOMRectReadOnly.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSDOMRectReadOnly.h; path = JSDOMRectReadOnly.h; sourceTree = "<group>"; };
    73127333                0F4966991DB408C100A274BB /* DOMPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMPoint.h; sourceTree = "<group>"; };
    73137334                0F49669A1DB408C100A274BB /* DOMPoint.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DOMPoint.idl; sourceTree = "<group>"; };
     
    1996019981                                0F4966A81DB40C4300A274BB /* JSDOMPointReadOnly.cpp */,
    1996119982                                0F4966A91DB40C4300A274BB /* JSDOMPointReadOnly.h */,
     19983                                0F4710B51DB56BE8002DCEC3 /* JSDOMRect.cpp */,
     19984                                0F4710B61DB56BE8002DCEC3 /* JSDOMRect.h */,
     19985                                0F4710B71DB56BE8002DCEC3 /* JSDOMRectInit.cpp */,
     19986                                0F4710B81DB56BE8002DCEC3 /* JSDOMRectInit.h */,
     19987                                0F4710B91DB56BE8002DCEC3 /* JSDOMRectReadOnly.cpp */,
     19988                                0F4710BA1DB56BE8002DCEC3 /* JSDOMRectReadOnly.h */,
    1996219989                                C5137CF011A58378004ADB99 /* JSDOMStringList.cpp */,
    1996319990                                C5137CF111A58378004ADB99 /* JSDOMStringList.h */,
     
    2342623453                                0F49669B1DB408C100A274BB /* DOMPointReadOnly.h */,
    2342723454                                0F49669C1DB408C100A274BB /* DOMPointReadOnly.idl */,
     23455                                0F4710A91DB56AFC002DCEC3 /* DOMRect.h */,
     23456                                0F4710AA1DB56AFC002DCEC3 /* DOMRect.idl */,
     23457                                0F4710AB1DB56AFC002DCEC3 /* DOMRectInit.h */,
     23458                                0F4710AC1DB56AFC002DCEC3 /* DOMRectInit.idl */,
     23459                                0F4710AD1DB56AFC002DCEC3 /* DOMRectReadOnly.h */,
     23460                                0F4710AE1DB56AFC002DCEC3 /* DOMRectReadOnly.idl */,
    2342823461                                C55610F011A704EB00B82D27 /* DOMStringList.cpp */,
    2342923462                                C544274911A57E7A0063A749 /* DOMStringList.h */,
     
    2478124814                                0F4966A31DB4091000A274BB /* DOMPointInit.h in Headers */,
    2478224815                                0F49669F1DB408C100A274BB /* DOMPointReadOnly.h in Headers */,
     24816                                0F4710AF1DB56AFC002DCEC3 /* DOMRect.h in Headers */,
     24817                                0F4710B11DB56AFC002DCEC3 /* DOMRectInit.h in Headers */,
     24818                                0F4710B31DB56AFC002DCEC3 /* DOMRectReadOnly.h in Headers */,
    2478324819                                5185FCB71BB4C7670012898F /* DOMRequestState.h in Headers */,
    2478424820                                BC5A86850C33676000EEA649 /* DOMSelection.h in Headers */,
     
    2545025486                                0F4966AF1DB40C4300A274BB /* JSDOMPointReadOnly.h in Headers */,
    2545125487                                E172AF901811BC3700FBADB9 /* JSDOMPromise.h in Headers */,
     25488                                0F4710BC1DB56BE8002DCEC3 /* JSDOMRect.h in Headers */,
     25489                                0F4710BE1DB56BE8002DCEC3 /* JSDOMRectInit.h in Headers */,
     25490                                0F4710C01DB56BE8002DCEC3 /* JSDOMRectReadOnly.h in Headers */,
    2545225491                                BC5A86B60C3367E800EEA649 /* JSDOMSelection.h in Headers */,
    2545325492                                C5137CF311A58378004ADB99 /* JSDOMStringList.h in Headers */,
     
    2912929168                                0F4966AE1DB40C4300A274BB /* JSDOMPointReadOnly.cpp in Sources */,
    2913029169                                E172AF8F1811BC3700FBADB9 /* JSDOMPromise.cpp in Sources */,
     29170                                0F4710BB1DB56BE8002DCEC3 /* JSDOMRect.cpp in Sources */,
     29171                                0F4710BD1DB56BE8002DCEC3 /* JSDOMRectInit.cpp in Sources */,
     29172                                0F4710BF1DB56BE8002DCEC3 /* JSDOMRectReadOnly.cpp in Sources */,
    2913129173                                BC5A86B50C3367E800EEA649 /* JSDOMSelection.cpp in Sources */,
    2913229174                                C5137CF211A58378004ADB99 /* JSDOMStringList.cpp in Sources */,
Note: See TracChangeset for help on using the changeset viewer.