From a191d5d2110a930ed6617a27308e7141be99a1ce Mon Sep 17 00:00:00 2001 From: Sebastian Zartner Date: Sat, 22 Sep 2012 01:02:10 +0200 Subject: [PATCH] Added two more text affecting styles --- extension/content/firebug/lib/css.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extension/content/firebug/lib/css.js b/extension/content/firebug/lib/css.js index 4f3c920cbf..2749ce8687 100644 --- a/extension/content/firebug/lib/css.js +++ b/extension/content/firebug/lib/css.js @@ -222,6 +222,8 @@ Css.copyTextStyles = function(fromNode, toNode, style) toNode.style.fontSize = style.getPropertyCSSValue("font-size").cssText; toNode.style.fontWeight = style.getPropertyCSSValue("font-weight").cssText; toNode.style.fontStyle = style.getPropertyCSSValue("font-style").cssText; + toNode.style.fontSizeAdjust = style.getPropertyCSSValue("font-size-adjust").cssText; + toNode.style.fontStretch = style.getPropertyCSSValue("font-stretch").cssText; return style; }