From 08f52d69bd4f048fb6d5f6c861a5655eec8be1b0 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Tue, 26 Apr 2011 09:45:27 -0400 Subject: [PATCH] jQuery.support core style guide correction. Fixes #8978 --- src/support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support.js b/src/support.js index 178bddf0..ea14bac6 100644 --- a/src/support.js +++ b/src/support.js @@ -198,7 +198,7 @@ jQuery.support = (function() { // Fails in WebKit before Feb 2011 nightlies // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right if ( document.defaultView && document.defaultView.getComputedStyle ) { - marginDiv = document.createElement('div'); + marginDiv = document.createElement( "div" ); marginDiv.style.width = "0"; marginDiv.style.marginRight = "0"; div.appendChild( marginDiv );