Reviewers: rdayal,

Description:
Fix !important css typo

Repost of 1585805.
Thanks Stephen!


Please review this at http://gwt-code-reviews.appspot.com/1725806/

Affected files:
M dev/core/src/com/google/gwt/core/ext/linker/impl/installLocationIframe.js


Index: dev/core/src/com/google/gwt/core/ext/linker/impl/installLocationIframe.js
===================================================================
--- dev/core/src/com/google/gwt/core/ext/linker/impl/installLocationIframe.js (revision 11024) +++ dev/core/src/com/google/gwt/core/ext/linker/impl/installLocationIframe.js (working copy)
@@ -27,7 +27,8 @@
   var scriptFrame = $doc.createElement('iframe');
   scriptFrame.src = 'javascript:""';
   scriptFrame.id = '__MODULE_NAME__';
- scriptFrame.style.cssText = 'position:absolute; width:0; height:0; border:none; left: -1000px; top: -1000px; !important'; + scriptFrame.style.cssText = 'position:absolute; width:0; height:0; border:none; left: -1000px;'
+    + ' top: -1000px;';
   scriptFrame.tabIndex = -1;
   $doc.body.appendChild(scriptFrame);



--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to