We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6451b7d commit b08ae3fCopy full SHA for b08ae3f
1 file changed
lib/csscomb.js
@@ -71,6 +71,10 @@ Comb.prototype = {
71
* @returns {Array}
72
*/
73
processTree: function(tree) {
74
+
75
+ // We walk across complete tree for each handler,
76
+ // because we need strictly maintain order in which handlers work,
77
+ // despite fact that handlers work on different level of the tree.
78
this._handlers.forEach(function(handler) {
79
this.processNode(['tree', tree], 0, handler);
80
}, this);
0 commit comments