Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added workaround for window.scrollX compat. #1941

Merged
merged 4 commits into from
Jan 4, 2014

Conversation

onnoj
Copy link
Contributor

@onnoj onnoj commented Dec 23, 2013

window.scrollX/Y is not available in IE11. As far as specifications go, is currently only specified in draft (http://dev.w3.org/csswg/cssom-view/#refsCSSOM). Falling back to
window.pageXOffset seems like a good workaround.

On a related note; my Emscriptified project runs on IE11 although performance is very poor (mostly due to Internet Explorer itself, I think). It's pretty finicky about the shaders, as they introduced an extra set of requirements. (inout/in/out keywords not supported, can't construct mat3 from mat4, etc).

window.scrollX/Y is not available in IE11. As far as specifications go, is currently only specified in draft (http://dev.w3.org/csswg/cssom-view/#refsCSSOM). Falling back to 
window.pageXOffset seems like a good workaround.

On a related note; my Emscriptified project runs on IE11 although performance is very poor (mostly due to Internet Explorer itself, I think). It's pretty finicky about the shaders, as they introduced an extra set of requirements. (inout/in/out keywords not supported, can't construct mat3 from mat4, etc).
@kripken
Copy link
Member

kripken commented Dec 25, 2013

Looks good, please just add a little comment explaining it is a fallback in case the browser does not support that feature.

Link to your project? Curious to see performance on IE11 myself. I've heard it's WebGL implementation still has issues, hopefully those will be fixed in IE12...

Added comments to fix as per @kripken's request.
Added an assert too (guarded by ASSERTIONS define)
@onnoj
Copy link
Contributor Author

onnoj commented Jan 2, 2014

There we go, added an assert too.

My project should be up shortly, I'll drop a note here when it is :D

As for IE11's performance, I forgot I had GPU compositing turned off which caused a severe performance hit, d'oh.

Forgot I had to explicitly check the type of variable type to see if it's undefined.
//(see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/)
var scrollX = ((typeof window.scrollX !== 'undefined') ? window.scrollX : window.pageXOffset);
var scrollY = ((typeof window.scrollY !== 'undefined') ? window.scrollY : window.pageYOffset);
#if ASSERTIONS
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please do not indent lines starting with # (see other examples in our source files)

@onnoj
Copy link
Contributor Author

onnoj commented Jan 3, 2014

Done.

kripken added a commit that referenced this pull request Jan 4, 2014
Added workaround for window.scrollX compat.
@kripken kripken merged commit 1946621 into emscripten-core:incoming Jan 4, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants