Skip to content

Commit

Permalink
Yet another fix for URLs within the CSS value matching
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianZ committed Apr 2, 2014
1 parent c22d014 commit 4037654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/content/firebug/css/cssModule.js
Expand Up @@ -19,7 +19,7 @@ function(Firebug, Css, Events, Obj, Options, Xpcom, Module, CSSDirtyListener, Ed
var Cc = Components.classes;
var Ci = Components.interfaces;

var reSplitCSS = /(url\((".*"\)|".*|[^)]*\)?))|(rgba?\([^)]*\)?)|(#[\dA-Fa-f]+)|(hsla?\([^)]*\)?)|(-?\d+(\.\d+)?(%|[a-z]{1,4})?)|"([^"]*)"?|'([^']*)'?|([^,\s\/!\(\)]+)|(!(.*)?)/;
var reSplitCSS = /(url\((".*?"\)|".*|[^)]*\)?))|(rgba?\([^)]*\)?)|(#[\dA-Fa-f]+)|(hsla?\([^)]*\)?)|(-?\d+(\.\d+)?(%|[a-z]{1,4})?)|"([^"]*)"?|'([^']*)'?|([^,\s\/!\(\)]+)|(!(.*)?)/;
var reURL = /url\((")?(.*)?\1\)/;
var reRepeat = /no-repeat|repeat-x|repeat-y|repeat/;

Expand Down

0 comments on commit 4037654

Please sign in to comment.