A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.cdn.mozilla.net/en-US/docs/Web/API/HTMLStyleElement/blocking below:

HTMLStyleElement: blocking property - Web APIs

HTMLStyleElement: blocking property

Limited availability

The blocking property of the HTMLStyleElement interface is a string indicating that certain operations should be blocked on the fetching of critical subresources.

It reflects the blocking attribute of the <style> element.

Value

A string. Must be a space-separated list of blocking tokens listed below indicating the operations that are to be blocked:

render

The rendering of content on the screen is blocked.

Examples
<style id="el" blocking="render">
  p {
    color: blue;
  }
</style>
const el = document.getElementById("el");
console.log(el.blocking); // Output: "render"
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4