Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

                    "$className.$scenario"
                }
        else listOf()
    }
    
    
    @VisibleForTesting
    fun allTestsWereSkipped(junitXmlFile: File): Boolean =
        parseXmlFile(junitXmlFile).documentElement.run {
            getAttribute("tests") == getAttribute("skipped")
        }
    
    
    private
    fun parseXmlFile(file: File): Document =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    MutationObserver(async()=>await nu(!0));for(let t of document.querySelectorAll(`style[type="${tu}"]`))yb(t)}for(let t of i)for(let r of t.addedNodes)r.nodeType===1&&r.tagName==="STYLE"&&r.getAttribute("type")===tu&&(yb(r),e=!0);await nu(e)}).observe(document.documentElement,{attributes:!0,attributeFilter:["class"],childList:!0,subtree:!0});async function nu(i=!1){i&&(hb++,ru.clear());let e="";for(let r of document.querySelectorAll(`style[type="${tu}"]`))e+=r.textContent;let t=new Set;for(let r of document.queryS...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (0)
Back to top