Changeset 1666
- Timestamp:
- 11/16/07 19:45:22 (6 years ago)
- Location:
- lang/javascript/javascript-xpath/trunk
- Files:
-
- 2 modified
-
src/jxanalyzer.js (modified) (3 diffs)
-
test/functional/analyzer.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/javascript/javascript-xpath/trunk/src/jxanalyzer.js
r1664 r1666 135 135 136 136 } 137 } 138 else if (e.name == "attrMatch") 139 { 140 e.attrMatchName = e.args[1]; 141 e.attrMatchVal = e.args[2]; 137 142 } 138 143 … … 418 423 }, 419 424 425 makeAttrMatchEventLog: function(e) { 426 var P = document.createElement("p"); 427 P.innerHTML = this.createBasicLog(e).join('') + "@"+e.attrMatchName + " == " +e.attrMatchVal +" at start + "+e.ET; 428 429 return P; 430 }, 431 432 makeGetDescendantNodesEventLog: function(e) { 433 var P = document.createElement("p"); 434 P.innerHTML = this.createBasicLog(e).join('') + " at start + "+e.ET; 435 436 return P; 437 }, 438 420 439 commit: function() { 421 440 this.usedContexts.push(this.ctx); … … 482 501 JXAnalyzer.hookMethod(NodeSet.prototype, "doDel", Azr, true); 483 502 JXAnalyzer.hookMethod(NodeSet.prototype, "delDescendant", Azr, true); 503 504 JXAnalyzer.hookMethod(NodeUtil, "attrMatch", Azr); 505 JXAnalyzer.hookMethod(NodeUtil, "getDescendantNodes", Azr); 506 NodeUtil._parser_name = "NodeUtil"; 484 507 485 508 JXAnalyzer.hookMethod(Lexer.prototype, "next", Azr, true); -
lang/javascript/javascript-xpath/trunk/test/functional/analyzer.css
r1651 r1666 65 65 .az-compare-call { 66 66 background-color: #461; 67 color: #fff; 68 } 69 70 .az-attrMatch-call, 71 .az-getDescendantNodes-call { 72 background-color: #694; 67 73 color: #fff; 68 74 }
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)