Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for documentElement (2.67 sec)

  1. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    var enableDrag = 0; // 1 or 0: enable or disable dragging (default disabled)
    var zoomScale = 0.2; // Zoom sensitivity
    
    /// <====
    /// END OF CONFIGURATION 
    
    var root = document.documentElement;
    var state = 'none', svgRoot = null, stateTarget, stateOrigin, stateTf;
    
    setupHandlers(root);
    
    /**
     * Register handlers
     */
    function setupHandlers(root){
    	setAttributes(root, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptorTest.groovy

            when:
            descriptor.writeTo(file)
    
            then:
            def root = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new ByteArrayInputStream(file.bytes)).documentElement
            root.nodeName == 'application'
            root.getAttribute("xmlns") == "http://java.sun.com/xml/ns/javaee"
            root.getAttribute("xmlns:xsi") == "http://www.w3.org/2001/XMLSchema-instance"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/main/resources/footer.html

        }
        // Polyfill Element.closest()
        if (!Element.prototype.closest) {
            Element.prototype.closest = function (s) {
                var el = this;
                if (!document.documentElement.contains(el)) return null;
                do {
                    if (typeof el.matches === "function" && el.matches(s)) return el;
                    el = el.parentElement || el.parentNode;
                } while (el !== null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top