Fix DFW autoresizing in WebKit when zoom != 100%, fixes #17927

git-svn-id: https://develop.svn.wordpress.org/trunk@18379 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2011-06-30 07:33:08 +00:00
parent 112a6319cf
commit dc77ebee3a
4 changed files with 2 additions and 4 deletions

View File

@@ -120,8 +120,6 @@
// Get height differently depending on the browser used
if ( tinymce.isIE )
myHeight = d.body.scrollHeight;
else if ( tinymce.isWebKit )
myHeight = d.height;
else
myHeight = d.documentElement.offsetHeight;