com.apple.WebKit.WebContent drops 113 error: Could not find specified service

Finally, solved the problem above. I was receiving errors Could not signal service com.apple.WebKit.WebContent: 113: Could not find specified service Since I have not added WKWebView object on the view as a subview and tried to call -loadHTMLString:baseURL: on the top of it. And only after it was successfully loaded I was adding it to view’s subviews – which … Read more

CSS transition shorthand with multiple properties?

Syntax: Note that the duration must come before the delay, if the latter is specified. Individual transitions combined in shorthand declarations: Or just transition them all: Here is a straightforward example. Here is another one with the delay property. Edit: previously listed here were the compatibilities and known issues regarding transition. Removed for readability. Bottom-line: … Read more

What does the shrink-to-fit viewport meta attribute do?

It is Safari specific, at least at time of writing, being introduced in Safari 9.0. From the “What’s new in Safari?” documentation for Safari 9.0: Viewport Changes Viewport meta tags using “width=device-width” cause the page to scale down to fit content that overflows the viewport bounds. You can override this behavior by adding “shrink-to-fit=no” to your meta tag as shown … Read more