[Pkg-mozext-commits] [firebug] 07/68: Issue 6283 (Console and DOM panel fail on interpreting @page) http://code.google.com/p/fbug/issues/detail?id=6283

David Prévot taffit at moszumanska.debian.org
Mon Mar 31 22:45:49 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to tag fbtest-1.11.4
in repository firebug.

commit 7158cc2cf95896ce33e39135ab5b146ee09602dd
Author: Sebastian Zartner <sebastianzartner at gmail.com>
Date:   Thu Feb 21 22:24:19 2013 +0100

    Issue 6283 (Console and DOM panel fail on interpreting @page)
    http://code.google.com/p/fbug/issues/detail?id=6283
---
 extension/content/firebug/chrome/reps.js | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/extension/content/firebug/chrome/reps.js b/extension/content/firebug/chrome/reps.js
index 1b9d25e..544cfd0 100644
--- a/extension/content/firebug/chrome/reps.js
+++ b/extension/content/firebug/chrome/reps.js
@@ -1619,6 +1619,10 @@ FirebugReps.CSSRule = domplate(Firebug.Rep,
         {
             return "CSSKeyframeRule";
         }
+        else if (window.CSSPageRule && rule instanceof window.CSSPageRule)
+        {
+        	return "CSSPageRule";
+        }
         else if (rule instanceof window.CSSNameSpaceRule)
         {
             return "CSSNameSpaceRule";
@@ -1659,6 +1663,10 @@ FirebugReps.CSSRule = domplate(Firebug.Rep,
         {
             return rule.keyText;
         }
+        else if (window.CSSPageRule && rule instanceof window.CSSPageRule)
+        {
+        	return "";
+        }
         else if (rule instanceof window.CSSNameSpaceRule)
         {
             var reNamespace = /^@namespace (.+ )?url\("(.*?)"\);$/;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/firebug.git



More information about the Pkg-mozext-commits mailing list