Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: chrome/content/elemHideEmulation.js

Issue 29367031: Issue 4684 - Allow { and } in attribute and property selectors (Closed) Base URL: https://bitbucket.org/fhd/adblockpluscore
Left Patch Set: Created Dec. 8, 2016, 10:10 a.m.
Right Patch Set: Add a space after the escape sequence for { and } Created Dec. 13, 2016, 4:01 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | lib/filterClasses.js » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 var propertySelectorRegExp = /\[\-abp\-properties=(["'])([^"']+)\1\]/; 1 var propertySelectorRegExp = /\[\-abp\-properties=(["'])([^"']+)\1\]/;
2 2
3 function splitSelector(selector) 3 function splitSelector(selector)
4 { 4 {
5 if (selector.indexOf(",") == -1) 5 if (selector.indexOf(",") == -1)
6 return [selector]; 6 return [selector];
7 7
8 var selectors = []; 8 var selectors = [];
9 var start = 0; 9 var start = 0;
10 var level = 0; 10 var level = 0;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 { 130 {
131 var pattern = patterns[i]; 131 var pattern = patterns[i];
132 var match = propertySelectorRegExp.exec(pattern.selector); 132 var match = propertySelectorRegExp.exec(pattern.selector);
133 if (!match) 133 if (!match)
134 continue; 134 continue;
135 135
136 var propertyExpression = match[2]; 136 var propertyExpression = match[2];
137 var regexpString; 137 var regexpString;
138 if (propertyExpression.length >= 2 && propertyExpression[0] == "/" && 138 if (propertyExpression.length >= 2 && propertyExpression[0] == "/" &&
139 propertyExpression[propertyExpression.length - 1] == "/") 139 propertyExpression[propertyExpression.length - 1] == "/")
140 regexpString = propertyExpression.slice(1, -1); 140 regexpString = propertyExpression.slice(1, -1)
141 .replace("\\x7B ", "{").replace("\\x7D ", "}");
141 else 142 else
142 regexpString = filterToRegExp(propertyExpression); 143 regexpString = filterToRegExp(propertyExpression);
143 144
144 this.patterns.push({ 145 this.patterns.push({
145 text: pattern.text, 146 text: pattern.text,
146 regexp: new RegExp(regexpString, "i"), 147 regexp: new RegExp(regexpString, "i"),
147 prefix: pattern.selector.substr(0, match.index), 148 prefix: pattern.selector.substr(0, match.index),
148 suffix: pattern.selector.substr(match.index + match[0].length) 149 suffix: pattern.selector.substr(match.index + match[0].length)
149 }); 150 });
150 } 151 }
151 152
152 callback(); 153 callback();
153 }.bind(this)); 154 }.bind(this));
154 }, 155 },
155 156
156 apply: function() 157 apply: function()
157 { 158 {
158 if (this.patterns.length > 0) 159 if (this.patterns.length > 0)
159 { 160 {
160 var document = this.window.document; 161 var document = this.window.document;
161 this.addSelectors(document.styleSheets); 162 this.addSelectors(document.styleSheets);
162 document.addEventListener("load", this.onLoad.bind(this), true); 163 document.addEventListener("load", this.onLoad.bind(this), true);
163 } 164 }
164 } 165 }
165 }; 166 };
LEFTRIGHT

Powered by Google App Engine
This is Rietveld