OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 | 69 |
70 let selectors = []; | 70 let selectors = []; |
71 let start = 0; | 71 let start = 0; |
72 let level = 0; | 72 let level = 0; |
73 let sep = ""; | 73 let sep = ""; |
74 | 74 |
75 for (let i = 0; i < selector.length; i++) | 75 for (let i = 0; i < selector.length; i++) |
76 { | 76 { |
77 let chr = selector[i]; | 77 let chr = selector[i]; |
78 | 78 |
79 if (chr == "\\") // ignore escaped characters | 79 if (chr === "\\") // ignore escaped characters |
80 i++; | 80 i++; |
81 else if (chr == sep) // don't split within quoted text | 81 else if (chr === sep) // don't split within quoted text |
82 sep = ""; // e.g. [attr=","] | 82 sep = ""; // e.g. [attr=","] |
83 else if (sep == "") | 83 else if (sep === "") |
84 { | 84 { |
85 if (chr == '"' || chr == "'") | 85 if (chr === '"' || chr === "'") |
86 sep = chr; | 86 sep = chr; |
87 else if (chr == "(") // don't split between parentheses | 87 else if (chr === "(") // don't split between parentheses |
88 level++; // e.g. :matches(div,span) | 88 level++; // e.g. :matches(div,span) |
89 else if (chr == ")") | 89 else if (chr === ")") |
90 level = Math.max(0, level - 1); | 90 level = Math.max(0, level - 1); |
91 else if (chr == "," && level == 0) | 91 else if (chr === "," && level === 0) |
92 { | 92 { |
93 selectors.push(selector.substring(start, i)); | 93 selectors.push(selector.substring(start, i)); |
94 start = i + 1; | 94 start = i + 1; |
95 } | 95 } |
96 } | 96 } |
97 } | 97 } |
98 | 98 |
99 selectors.push(selector.substring(start)); | 99 selectors.push(selector.substring(start)); |
100 return selectors; | 100 return selectors; |
101 } | 101 } |
102 | 102 |
103 exports.splitSelector = splitSelector; | 103 exports.splitSelector = splitSelector; |
OLD | NEW |