Device-Bugs icon indicating copy to clipboard operation
Device-Bugs copied to clipboard

Just a collection of quirks and issues that occur on browser platforms (particularly those unlikely to update)

Results 71 Device-Bugs issues
Sort by recently updated
recently updated
newest added

http://jsbin.com/iquVUCET/1 `background-image` must be set on the parent element.

## Description On Android 2.2, 2.3, applying `text-rendering: optimizeLegibility` causes interstitial unrecognised character glyphs (rectangles) to appear between inline-block elements and newline characters. ## Platforms Android 2.2, 2.3 ## Reduced...

## Summary: Setting `-webkit-appearance-none` on inputs globally will cause any styles applied to leak into the Shadow DOM on Android browser 4.0+. ``` input { -webkit-appearance: none; background: red; }...

## Summary: After manually changing a hash value and subsequently navigating to a new hash, iOS Safari continues to show the old hash value when the URL bar is opened....

The issue is documented here: http://stackoverflow.com/questions/9094398/javascript-stops-executing-in-iframe-after-back-button-is-pressed-in-mobile-safa The workaround is to add this to the page **hosting the iframes** (note: you do not need the body attribute on iOS 5.1+): ```...

## Summary: If you have a label associated to a select field and you tap the label while the spinner for the select field is open the keyboard will flash...

## Summary: Using HTML 5 time input crashes the default Android browser in Samsung Galaxy 2 reliably. Crashing may jam also some other apps on the device, sometimes requiring reboot....

I was told this in a pub and made a note of it, but apparently if you try to set a cookie from an iframe on a url that's not...

Even if you provide a fallback like font-family: "Palantino Linotype", serif; Android Browser will fail to skip the unknown font and renders sans-serif instead Demo: http://asdfasdf.de/demos/android-font-family.html

If you use `$('.someCheckboxInput').attr('checked')` to change the `checked` status of a checkbox it wont repaint css rules matching `input[type="checkbox"]:checked` a workaround is to call a function like this after you...