Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findPolygon (0.1 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        }
    
        // Handle svg element highlighting.
        const p = findPolygon(elem);
        if (p != null) {
          if (set) {
            origFill.set(p, p.style.fill);
            p.style.fill = '#ccccff';
          } else if (origFill.has(p)) {
            p.style.fill = origFill.get(p);
          }
        }
    
        return true;
      }
    
      function findPolygon(elem) {
        if (elem.localName == 'polygon') return elem;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top