2017-05-10 16 views
0

お客様のウェブサイトに複雑な問題があります。ウェブサイトはiPhone 6 PlusのiOS 9.3.2でクラッシュしました。ただし、iOSの最新バージョンやiOS 9.3.1のiPhone 6でクラッシュすることはありません。エラーを再現する方法iOSのSafariでウェブサイトがクラッシュする

  1. オープンiPhone 6(またはiPhone 6プラス)でウェブサイト: http://www.kindervorhang.ch/Vorhaenge-fixfertig-Verdunkler-Ellie
  2. Klick«デンWarenkorbで»上のバスケット
  3. に製品を追加します
  4. ウェブサイトをスクロールしたり方向を変えたりすると、エラーが発生する
  5. 何かをタッチしたり少しスクロールしたりすると、フルスクリーンエラーの説明が表示されるまで再びクラッシュします。

誰かが賢明な問題を抱えているのですか、それとも解決する方法はありますか?

私はXcodeでこのエラーコードを得た:

May 10 12:43:56 ASs-iPhone diagnosticd[88] <Error>: unable to find offset 0x804cf98c in shared cache for arch 'arm64' 
May 10 12:43:56 ASs-iPhone ReportCrash[703] <Notice>: platform_task_update_threads failed 1 
May 10 12:43:56 ASs-iPhone ReportCrash[703] <Notice>: Formulating report for process[699] com.apple.WebKit.WebContent 
May 10 12:43:56 ASs-iPhone assertiond[67] <Error>: assertion failed: 13F69: assertiond + 72572 [0B862A7D-6E8B-3778-AD17-C7694ECD5BCD]: 0x3 
May 10 12:43:56 ASs-iPhone Unknown[67] <Error>: 
May 10 12:43:56 ASs-iPhone assertiond[67] <Error>: assertion failed: 13F69: assertiond + 72572 [0B862A7D-6E8B-3778-AD17-C7694ECD5BCD]: 0x3 
May 10 12:43:56 ASs-iPhone Unknown[67] <Error>: 
May 10 12:43:56 ASs-iPhone UserEventAgent[26] <Notice>: jetsam: kernel termination snapshot being created 
May 10 12:43:56 ASs-iPhone ReportCrash[703] <Warning>: report not saved because it is non-actionable 
May 10 12:43:56 ASs-iPhone com.apple.xpc.launchd[1] <Error>: assertion failed: 13F69: launchd + 116796 [9F6284CF-8A17-36CC-9DB5-85D510A21F14]: 0x3 
May 10 12:43:56 ASs-iPhone ReportCrash[704] <Warning>: Report of type '298(298)' not saved because the limit of 25 logs has been reached 

答えて

0

私たちはラインのCSSラインをテストし、私たちは、この行をコメントアウト場合は、すべてが働いていたことがわかった。

div.set-65131>.colInside { 
    position: fixed; 
    top: 0; 
    height: 100%; 
    width: 100% 
} 

div.set-53541 { 
    height: 100%; 
    width: 100%; 
    position: absolute 
} 


div.set-53541>.colInside { 
    background-image: none; 
    background-color: rgba(255, 255, 255, 0) 
} 

div.set-53541>.colInside { 
    height: 100%; 
    max-width: 1240px; 
    left: 0!important; 
    right: 0!important; 
    margin-left: auto!important; 
    margin-right: auto!important; 
    position: fixed 
} 

今では全体で取り組んでいますすべての異なるデバイス。問題はおそらく、幅の高さを100%とした組み合わせで固定されています。

我々の背景イメージを適用するための別の解決策が見つかりました。

関連する問題