[Webkit-unassigned] [Bug 165897] XMLHttpRequest timeout in 60 second in Safari on iOS 10 and above

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jan 20 04:32:08 PST 2017


https://bugs.webkit.org/show_bug.cgi?id=165897

--- Comment #15 from Rahul Tiwari <rahult001 at gmail.com> ---
As suggested i tried commenting out this code in Tools/Scripts/build-webkit -
        if (willUseIOSSimulatorSDK()) {
            (system("perl", "Tools/Scripts/build-layouttestrelay", argumentsForConfiguration()) == 0) or die;
        }
This got me below error - 
/AppleWebkit1/webkit/Source/WTF/wtf/Platform.h:592:5: error: 'TARGET_OS_IOS' is not defined, evaluates to 0 [-Werror,-Wundef]
#if TARGET_OS_IOS

To try to resolve this I added following line to platform.h -
 #define TARGET_OS_IOS 1

This gave below error -
/AppleWebkit1/webkit/Source/WebCore/platform/spi/cocoa/QuartzCoreSPI.h:162:12: error: cannot find interface declaration for 'CASpringAnimation'; did you mean
      'CABasicAnimation'?
@interface CASpringAnimation (Private)
           ^~~~~~~~~~~~~~~~~
           CABasicAnimation

To try to resolve this replaced below line in QuartzCoreSPI.h -
@interface CASpringAnimation (Private) with @interface CABasicAnimation (Private) 

This gave below error -
/AppleWebkit1/webkit/Source/WebCore/platform/graphics/ios/DisplayRefreshMonitorIOS.mm:60:23: error: property 'preferredFramesPerSecond' not found on object of type
      'CADisplayLink *'
        m_displayLink.preferredFramesPerSecond = 60;
                      ^
1 error generated.

Can you please suggest how to resolve the above error and if we are moving in the right direction ?

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20170120/dff38d7a/attachment.html>


More information about the webkit-unassigned mailing list