From b4392c220af3da945a8b2d7b0053291956c97a17 Mon Sep 17 00:00:00 2001 From: timmywil Date: Wed, 2 Nov 2011 14:03:08 -0400 Subject: [PATCH] Correct typo in support.js assigning margin-top with cssText. Fixes #10638. --- src/support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support.js b/src/support.js index 436809404..7f49516f8 100644 --- a/src/support.js +++ b/src/support.js @@ -273,7 +273,7 @@ jQuery.support = (function() { } container = document.createElement("div"); - container.style.cssText = vb + "width:0;height:0;position:static;top:0;marginTop:" + conMarginTop + "px"; + container.style.cssText = vb + "width:0;height:0;position:static;top:0;margin-top:" + conMarginTop + "px"; body.insertBefore( container, body.firstChild ); // Construct a test element