Questions tagged [safari7]

Safari 7 for OS X Mavericks and Safari 6.1 (for Lion and Mountain Lion) were released along with OS X Mavericks in an Apple special event on October 22, 2013.

Safari is a web browser developed by Apple Inc. and included with the OS X and iOS operating systems. First released as a public beta on January 7, 2003 on the company's OS X operating system, it became Apple's default browser beginning with Mac OS X v10.3 "Panther". Safari is also a native browser for iOS.

Announced at Apple's Worldwide Developer Conference (WWDC) on June 10, 2013, the Safari 7/6.1 developer preview brought improvements in JavaScript performance and memory usage, as well as a new look for Top Sites and the Sidebar, and a new Shared Links feature. Additionally, a new Power Saver feature pauses Plugins which are not in use. Safari 7 for OS X Mavericks and Safari 6.1 (for Lion and Mountain Lion) were released along with OS X Mavericks in an Apple special event on October 22, 2013.

Safari 7 uses WebKit2 and runs in 64-bit mode.

13 questions
7
votes
3 answers

Safari: VH units applied to parent element doesn't allow 100% height in child?

I have a very simple situation, where I want to set a container element to 80vh and then have the inner div to be 100% of that height. On Chrome this will render correctly, however on Safari, the inner element doesn't have 100% of the 80vh…
Neil
  • 2,419
  • 6
  • 30
  • 46
6
votes
2 answers

Fixed position not working in Safari 7

I have a fixed position div that sits at the bottom of the screen as I scroll, not moving. However, on Safari, this div acts like it is absolutely positioned, and moves up and down with the rest of the content. When I click "Inspect Element", the…
steel
  • 10,128
  • 6
  • 58
  • 91
4
votes
1 answer

Percentage height inside a viewport unit div won't work in Safari

I have a 100% tall div based on the viewport using the vh unit: div { height:100vh; background:red; } Inside this 100% tall div, i need a 50% tall div: span { display:block; height:50%; background:blue; } Works fine in Chrome,…
passatgt
  • 3,311
  • 2
  • 34
  • 47
3
votes
0 answers

FB.getLoginStatus is not triggerd in Safari 7.0.6

Debugging shows that FB object is available, in case of Safari 7.0.6 FB.init is triggered but FB.getLoginStatus is not. Currently the code looks something like this FB.init({ appId: 'app_id', xfbml: true, status: true, cookie:…
Saqib R.
  • 2,559
  • 2
  • 24
  • 19
2
votes
2 answers

Cordova 3.5.1 with iOS 8 device, remote debugging on Safari 7.1

I've exported an ad hoc distribution of a Cordova app for testing purpose. After installing the OTA on an iPad with iOS 8 and connecting it to the mac, it's not possibile to use remote debugging of Safari, it simply doesn't show the app in Developer…
laucel
  • 519
  • 1
  • 5
  • 17
2
votes
0 answers

Safari 7 browser hangs on specific javascript. How to diagnose?

I got a website, which contains some JavaScript & CSS. Not much fancy stuff is made, but it makes Safari 7 (version 7.0.2) hangs when changing language ( click the Chinese character on the right top corner ); CPU spikes to >100% and the wording…
Raptor
  • 48,613
  • 43
  • 209
  • 344
1
vote
0 answers

Safari 7 on Desktop Displays Mobile Media Queries

I'm having a very strange issue. A site i'm developing displays perfectly in Chrome, Firefox, IE8+, Safari 6 and below but in Safari 7 on Mavericks ONLY the website displays as it should on a mobile site. This is the site:…
Will Thresher
  • 109
  • 1
  • 9
0
votes
1 answer

jQuery AJAX CORS request does not work in Safari, Chrome in OS X

Created a simple jQuery Ajax code which make a CORS request to the Server which servers the REST API. Applied CORS filter in server and applied necessary changes in the filter mapping for Access-Control-Allow-Origin, Access-Control-Allow-Headers,…
user3751824
  • 189
  • 2
  • 14
0
votes
0 answers

Safari 7 and CSS

I am having some critical issues with CSS in Safari 7+. Mobile and Desktop... all other browsers load my page and CSS relatively fine. What did Apple really do with Safari 7+? This is bad since all iPhone users will be seeing this page as a…
Kald
  • 48
  • 7
0
votes
1 answer

Layout issue in Safari 7.1 and 8

I have a simple SharePoint Web Application which have no issue or bug, until a client open it in Safari browser version 7.1 on Mac OS 10.9 Mavericks a month ago. Since I don't have any Mac OS, then I tried to open the web via browser emulator in…
Fari.Fairis
  • 35
  • 2
  • 6
0
votes
0 answers

NPAPI plugin get NPP_Destroy right NPAPI_New in Safari 7.0.2

We have a NPAPI internet plug-in, that is loaded from a certain web page (https). With the new Safari 7.0.2 it receives NPAPI_Destroy right after NPAPI_New call, failing the call of one of the exposed functions. We do support core graphics drawing…
Nava Carmon
  • 4,443
  • 3
  • 35
  • 73
-1
votes
1 answer

Safari Extension Settings to Injected Script

I'm trying to pass a variable from the settings in my safari extension to the injected javascript. I've managed to get the message passed but have no idea how to use the variable out of the handleMessage scope so I can use it in my injected file.…
mousebat
  • 350
  • 2
  • 23
-1
votes
1 answer

Safari 7 infinite POST request

I've get stuck with such issue. I have a form. When user submits his data, I'm sending some data via post ajax request. On success I set some data to hidden form, which has action pointing to current url subdomain, but in fact to partner site url…