Results 21 - 40 of 1,033

WorkerLocation

The WorkerLocation interface defines the absolute location of the script executed by the Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.location property obtained by calling window.self.location.
API Web Workers

HTML in XMLHttpRequest

The W3C XMLHttpRequest specification adds HTML parsing support to XMLHttpRequest, which originally supported only XML parsing. This feature allows Web apps to obtain an HTML resource as a parsed DOM using XMLHttpRequest.
API Web XMLHttpRequest

HTML reference

This HTML reference describes all elements and attributes of HTML, including global attributes that apply to all elements.
HTML Landing Reference Web

switch

The switch statement evaluates an expression, matching the expression's value to a case clause, and executes statements associated with that case.
JavaScript Reference Statement Web

Console.count()

Logs the number of times that this particular call to count() has been called. This function takes an optional argument label.
API Debugging DOM Method NeedsBrowserCompatibility web console Web Development

Console.dirxml()

Displays an interactive tree of the descendant elements of the specified XML/HTML element. If it is not possible to display as an element the JavaScript Object view is shown instead. The output is presented as a hierarchical listing of expandable nodes that let you see the contents of child nodes.
API debugging Debugging DOM Method NeedsBrowserCompatibility web console Web Development

Console.group()

Creates a new inline group in the Web Console log. This indents all following output by an additional level, until console.groupEnd() is called.
API Debugging DOM Method NeedsBrowserCompatibility web console Web Development

Console.info()

Outputs an informational message to the Web Console. In Firefox and Chrome, a small "i" icon is displayed next to these items in the Web Console's log.
API Debugging Method NeedsBrowserCompatibility web console Web Development

Console.time()

Starts a timer you can use to track how long an operation takes. You give each timer a unique name, and may have up to 10,000 timers running on a given page. When you call console.timeEnd() with the same name, the browser will output the time, in milliseconds, that elapsed since the timer was started.
API console Debugging DOM Method NeedsBrowserCompatibility web console Web Development

Console.timeStamp()

Adds a single marker to the browser's Timeline or Waterfall tool. This lets you correlate a point in your code with the other events recorded in the timeline, such as layout and paint events.
API debugging Debugging DOM Method NeedsBrowserCompatibility web console Web Development

device-aspect-ratio

device-aspect-ratio is a deprecated CSS media feature whose value is the width-to-height aspect <ratio> of the output device.
CSS NeedsBrowserCompatibility Reference Référence Web