Skip to content

Instantly share code, notes, and snippets.

@hdemon
Last active August 29, 2015 14:13
Show Gist options
  • Save hdemon/b79082b710666a9adc8d to your computer and use it in GitHub Desktop.
Save hdemon/b79082b710666a9adc8d to your computer and use it in GitHub Desktop.
function testZoomProperty() {
var cssString = 'zoom: 1;';
var elem = document.createElement('div');
elem.style.cssText = cssString;
return elem.style.cssText === cssString;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment