Brendan Falkowski
Brendan Falkowski
Also opened a bug in Chromium: https://code.google.com/p/chromium/issues/detail?id=307812&thanks=307812&ts=1381893810
Unsure of the issue etiquette, but since the bug is technically affecting it might be useful to keep open if others have the same issue.
@va7map Thanks! Great idea, that does work as expected. Removing Harvey solved the Chrome off-by-two issue and the iOS7 orientation bugs. Removing Enquire did not have the same effect, so...
@va7map and @sachinjsk What other JS is included when you experience the issue? In my reduced case it was jQuery 1.10.1 and Harvey (which was causing the issue). Wondering what...
As mentioned in the original report, an iframe test cannot be trusted because the parent page may not be rendered at native size if the "viewport" meta tag isn't set...
@va7map Seems I spoke too soon. My original test case without media queries which is working properly: http://cdn.gravitydept.com/matchmedia/ When I added a CSS media query at 1024px (change body color),...
Ran some tests to confirm @va7map's latest updates: Confirmed working: - Chrome for Mac, 32.0.1700.77 - Firefox for Mac, 26.0 Not working: - Chrome for iPad, 31.0.1650.18 - Safari for...
Don't think I tested on iPhone because the breakpoint I needed only affected iPad-sized devices. The tests I put together should still be accessible, but you could pretty quickly modify...
That's not true. The media query fires on the viewport width not the window width. If your browser uses invisible scrollbars (like Lion+) the viewport and window width are identical,...
I did it the lazy way because jQuery was available: ``` jQuery(document).width() ``` The innerWidth and outerWidth were giving me issues cross-browser. It might be more reliable to test: ```...