Index: chrome/browser/resources/options2/options_page.js |
=================================================================== |
--- chrome/browser/resources/options2/options_page.js (revision 119926) |
+++ chrome/browser/resources/options2/options_page.js (working copy) |
@@ -723,13 +723,13 @@ |
}; |
/** |
- * Update the left of all the position: fixed; header elements. |
+ * Update the left margin of all the position: fixed; header elements. |
* @private |
*/ |
OptionsPage.updateAllHeaderElementPositions_ = function() { |
- var translate = 'translateX(' + (document.body.scrollLeft * -1) + 'px)'; |
+ var marginLeft = (document.body.scrollLeft * -1) + 'px'; |
Dan Beam
2012/01/31 22:08:39
rtl
csilv
2012/01/31 22:43:28
Done.
|
for (var i = 0; i < this.fixedHeaders_.length; ++i) |
- this.fixedHeaders_[i].style.webkitTransform = translate; |
+ this.fixedHeaders_[i].style.marginLeft = marginLeft; |
uber.invokeMethodOnParent('adjustToScroll', document.body.scrollLeft); |
}; |