diff options
Diffstat (limited to 'common/content/util.js')
-rw-r--r-- | common/content/util.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/util.js b/common/content/util.js index 5409d0c9..60477acf 100644 --- a/common/content/util.js +++ b/common/content/util.js @@ -170,7 +170,7 @@ const util = { //{{{ */ computedStyle: function computedStyle(node) { - while (node instanceof Text && node.parentNode) + while (node instanceof Text && node.parentNode) node = node.parentNode; return node.ownerDocument.defaultView.getComputedStyle(node, null); }, |