diff --git a/files/en-us/games/techniques/2d_collision_detection/index.html b/files/en-us/games/techniques/2d_collision_detection/index.html index c335b01d38d6f9d..229d56ed7e3af2a 100644 --- a/files/en-us/games/techniques/2d_collision_detection/index.html +++ b/files/en-us/games/techniques/2d_collision_detection/index.html @@ -145,7 +145,6 @@
Playable code
} }); - diff --git a/files/en-us/games/techniques/3d_collision_detection/bounding_volume_collision_detection_with_three.js/index.html b/files/en-us/games/techniques/3d_collision_detection/bounding_volume_collision_detection_with_three.js/index.html index b09373fdf7d9922..9c47be1faf2b18c 100644 --- a/files/en-us/games/techniques/3d_collision_detection/bounding_volume_collision_detection_with_three.js/index.html +++ b/files/en-us/games/techniques/3d_collision_detection/bounding_volume_collision_detection_with_three.js/index.html @@ -33,8 +33,6 @@

Instantiating boxes

knot.geometry.boundingBox.max); - -

Note: The boundingBox property takes the Geometry itself as reference, and not the Mesh. So any transformations such as scale, position, etc. applied to the Mesh will be ignored while computing the calculating box.

diff --git a/files/en-us/games/techniques/controls_gamepad_api/index.html b/files/en-us/games/techniques/controls_gamepad_api/index.html index 2a55877aa66131e..e5331123ef0ca77 100644 --- a/files/en-us/games/techniques/controls_gamepad_api/index.html +++ b/files/en-us/games/techniques/controls_gamepad_api/index.html @@ -17,7 +17,6 @@

Controls for web games

Historically playing games on a console connected to your TV was always a totally different experience to gaming on the PC, mostly because of the unique controls. Eventually, extra drivers and plugins allowed us to use console gamepads with desktop games — either native games or those running in the browser. Now in the era of HTML5, we finally have the Gamepad API, which gives us the ability to play browser-based games using gamepad controllers without any plugins. The Gamepad API achieves this by providing an interface exposing button presses and axis changes that can be used inside JavaScript code to handle the input. These are good times for browser gaming.

-

API status and browser support

The Gamepad API is still at the Working Draft stage in the W3C process, which means its implementation might still change, but saying that the browser support is already quite good. Firefox 29+ and Chrome 35+ support it out of the box. Opera supports the API in version 22+ (not surprising given that they now use Chrome's Blink engine.) And Microsoft implemented support for the API in Edge recently, which means four main browsers now supporting the Gamepad API.

diff --git a/files/en-us/games/techniques/efficient_animation_for_web_games/index.html b/files/en-us/games/techniques/efficient_animation_for_web_games/index.html index a5c4bc17afd5cc3..ab59a88ca3270f0 100644 --- a/files/en-us/games/techniques/efficient_animation_for_web_games/index.html +++ b/files/en-us/games/techniques/efficient_animation_for_web_games/index.html @@ -95,8 +95,6 @@

A take-away

{{EmbedYouTube("hap4iQTMh70")}}

- -

Note: This article was originally written and published by Chris Lord, on his blog — see Efficient animation for games on the (mobile) web.

diff --git a/files/en-us/games/techniques/tilemaps/index.html b/files/en-us/games/techniques/tilemaps/index.html index a390293f84a9720..4cf6824139ca229 100644 --- a/files/en-us/games/techniques/tilemaps/index.html +++ b/files/en-us/games/techniques/tilemaps/index.html @@ -84,7 +84,6 @@

Positioning and camera

return {x: x - camera.x, y: y - camera.y}; } - function screenToWorld(x,y) { return {x: x + camera.x, y: y + camera.y}; } diff --git a/files/en-us/games/tutorials/2d_breakout_game_pure_javascript/finishing_up/index.html b/files/en-us/games/tutorials/2d_breakout_game_pure_javascript/finishing_up/index.html index 030d2a29434a092..f5f26be9aeb93f3 100644 --- a/files/en-us/games/tutorials/2d_breakout_game_pure_javascript/finishing_up/index.html +++ b/files/en-us/games/tutorials/2d_breakout_game_pure_javascript/finishing_up/index.html @@ -41,10 +41,6 @@

Giving the player some lives

clearInterval(interval); // Needed for Chrome to end game - - - -

With this, we can add slightly more complex logic to it as given below:

lives--;
diff --git a/files/en-us/games/tutorials/2d_breakout_game_pure_javascript/game_over/index.html b/files/en-us/games/tutorials/2d_breakout_game_pure_javascript/game_over/index.html
index c3e3239be050cc5..b72214f3d34d076 100644
--- a/files/en-us/games/tutorials/2d_breakout_game_pure_javascript/game_over/index.html
+++ b/files/en-us/games/tutorials/2d_breakout_game_pure_javascript/game_over/index.html
@@ -36,20 +36,14 @@ 

Implementing game over

First, replace where you initially called setInterval()

- -
setInterval(draw, 10);
 

with:

- -
var interval = setInterval(draw, 10);
 
- -

Then replace the second if statement with the following:

if(y + dy < ballRadius) {
diff --git a/files/en-us/glossary/boolean/index.html b/files/en-us/glossary/boolean/index.html
index 3f3846a2d7cb34b..a2d2a99c3baace1 100644
--- a/files/en-us/glossary/boolean/index.html
+++ b/files/en-us/glossary/boolean/index.html
@@ -24,7 +24,6 @@
   console.log("boolean conditional resolved to false");
 }
 
-
 /* JavaScript for loop */
 for (control variable; boolean conditional; counter) {
   // code to execute repeatedly if the conditional is true
diff --git a/files/en-us/glossary/document_directive/index.html b/files/en-us/glossary/document_directive/index.html
index c956902417e6891..a1b3f9ef2457cb8 100644
--- a/files/en-us/glossary/document_directive/index.html
+++ b/files/en-us/glossary/document_directive/index.html
@@ -15,8 +15,6 @@
 
 

See Document directives for a complete list.

- -
-

This function uses the render() function to create the HttpResponse that is sent back to the browser. This function is a shortcut; it creates an HTML file by combining a specified HTML template and some data to insert in the template (provided in the variable named "context"). In the next section we show how the template has the data inserted in it to create the HTML.

Rendering data (HTML templates)

diff --git a/files/en-us/learn/server-side/express_nodejs/forms/create_genre_form/index.html b/files/en-us/learn/server-side/express_nodejs/forms/create_genre_form/index.html index ed72da72219c5d1..b62e5e4ea7e16c3 100644 --- a/files/en-us/learn/server-side/express_nodejs/forms/create_genre_form/index.html +++ b/files/en-us/learn/server-side/express_nodejs/forms/create_genre_form/index.html @@ -58,7 +58,6 @@

Controller—post route

{ name: req.body.name } ); - if (!errors.isEmpty()) { // There are errors. Render the form again with sanitized values/error messages. res.render('genre_form', { title: 'Create Genre', genre: genre, errors: errors.array()}); diff --git a/files/en-us/learn/server-side/express_nodejs/introduction/index.html b/files/en-us/learn/server-side/express_nodejs/introduction/index.html index 72c98edf21f18ec..d0e07daec500215 100644 --- a/files/en-us/learn/server-side/express_nodejs/introduction/index.html +++ b/files/en-us/learn/server-side/express_nodejs/introduction/index.html @@ -457,7 +457,6 @@

Using databases

}); }); - //for mongodb version 3.0 and up const MongoClient = require('mongodb').MongoClient; MongoClient.connect('mongodb://localhost:27017/animals', function(err, client){ diff --git a/files/en-us/learn/server-side/express_nodejs/skeleton_website/index.html b/files/en-us/learn/server-side/express_nodejs/skeleton_website/index.html index a824e821491c9e5..3e0ea7be37e6ef4 100644 --- a/files/en-us/learn/server-side/express_nodejs/skeleton_website/index.html +++ b/files/en-us/learn/server-side/express_nodejs/skeleton_website/index.html @@ -57,7 +57,6 @@

Using the application generator

    Usage: express [options] [dir] -   Options:         --version        output the version number diff --git a/files/en-us/learn/server-side/first_steps/client-server_overview/index.html b/files/en-us/learn/server-side/first_steps/client-server_overview/index.html index 26b4fb7c2ba44fb..d5196e43f99b3a3 100644 --- a/files/en-us/learn/server-side/first_steps/client-server_overview/index.html +++ b/files/en-us/learn/server-side/first_steps/client-server_overview/index.html @@ -142,8 +142,6 @@

The response

X-Cache-Info: caching Content-Length: 41823 - - <!DOCTYPE html> <html lang="en-US" dir="ltr" class="redesign no-js"  data-ffo-opensanslight=false data-ffo-opensans=false > <head prefix="og: http://ogp.me/ns#"> @@ -302,7 +300,6 @@

Web frameworks simp from .models import Team - def junior(request):     list_teams = Team.objects.filter(team_type__exact="junior")     context = {'list': list_teams} @@ -321,8 +318,6 @@

Summary

{{PreviousMenuNext("Learn/Server-side/First_steps/Introduction", "Learn/Server-side/First_steps/Web_frameworks", "Learn/Server-side/First_steps")}}

- -

In this module

-

Rendering data

Web frameworks often provide templating systems. These allow you to specify the structure of an output document, using placeholders for data that will be added when a page is generated. Templates are often used to create HTML, but can also create other types of document.

diff --git a/files/en-us/learn/tools_and_testing/cross_browser_testing/your_own_automation_environment/index.html b/files/en-us/learn/tools_and_testing/cross_browser_testing/your_own_automation_environment/index.html index 018d44e63dc162c..cd247a38d6985ff 100644 --- a/files/en-us/learn/tools_and_testing/cross_browser_testing/your_own_automation_environment/index.html +++ b/files/en-us/learn/tools_and_testing/cross_browser_testing/your_own_automation_environment/index.html @@ -176,7 +176,6 @@

Testing in multiple browsers at on }); }); - }
  • In terminal, make sure you are inside your project folder, then enter the following command: diff --git a/files/en-us/learn/tools_and_testing/index.html b/files/en-us/learn/tools_and_testing/index.html index 2ee4e2719b42ec6..52bcf5943ccc6fc 100644 --- a/files/en-us/learn/tools_and_testing/index.html +++ b/files/en-us/learn/tools_and_testing/index.html @@ -29,7 +29,6 @@

    Note: We have referenced a number of tools in this topic, not because we endorse them or think they are the best, but because we know they work and have good industry support. In most cases there are other tools available, old ones will go out of fashion, and new ones will no doubt appear.

    -

    Looking to become a front-end web developer?

    diff --git a/files/en-us/learn/tools_and_testing/understanding_client-side_tools/index.html b/files/en-us/learn/tools_and_testing/understanding_client-side_tools/index.html index 774a382dc9036cf..260da4beffd7f23 100644 --- a/files/en-us/learn/tools_and_testing/understanding_client-side_tools/index.html +++ b/files/en-us/learn/tools_and_testing/understanding_client-side_tools/index.html @@ -23,7 +23,6 @@

    Prerequisites

    You should really learn the basics of the core HTML, CSS, and JavaScript languages first before attempting to use the tools detailed here.

    -

    Looking to become a front-end web developer?

    diff --git a/files/en-us/mdn/contribute/feedback/index.html b/files/en-us/mdn/contribute/feedback/index.html index 560bb7ba87f9100..706d9850b9285ac 100644 --- a/files/en-us/mdn/contribute/feedback/index.html +++ b/files/en-us/mdn/contribute/feedback/index.html @@ -43,8 +43,6 @@

    (Synchronous) Chat

    MDN Web Docs

    - -
    This room is for general discussion of MDN: using the site, reading content on the site, and contributing to the site's content. If you have questions or comments about article content, new articles you'd like to see or create, or just want to talk with the writing team, this is the place to be.
    diff --git a/files/en-us/mdn/contribute/howto/document_a_css_property/property_template/index.html b/files/en-us/mdn/contribute/howto/document_a_css_property/property_template/index.html index e3c29a383612c37..d0ffeda4e51cbb1 100644 --- a/files/en-us/mdn/contribute/howto/document_a_css_property/property_template/index.html +++ b/files/en-us/mdn/contribute/howto/document_a_css_property/property_template/index.html @@ -120,8 +120,6 @@

    Browser compatibility

    (See Compatibility tables for more information)

    - -

    {{Compat("css.property.property-name")}}

    See also

    diff --git a/files/en-us/mdn/kitchensink/index.html b/files/en-us/mdn/kitchensink/index.html index e8d0e319b2c48f6..65379e7858011f0 100644 --- a/files/en-us/mdn/kitchensink/index.html +++ b/files/en-us/mdn/kitchensink/index.html @@ -107,7 +107,6 @@

    Formal syntax

    {{CSSSyntax}}
    -

    Interactive Examples

    {{EmbedInteractiveExample("pages/tabbed/abbr.html", "tabbed-shorter")}}
    @@ -207,7 +206,6 @@

    Tables

    -

    Every macro under the sun

    Well, almost every macro. Hopefully only the ones that are in active use.

    @@ -228,7 +226,6 @@

    Browser compatibility

    {{Compat("html.elements.video")}}
    -

    Axis-Aligned Bounding Box

    One of the simpler forms of collision detection is between two rectangles that are axis aligned — meaning no rotation. The algorithm works by ensuring there is no gap between any of the 4 sides of the rectangles. Any gap means a collision does not exist.

    @@ -326,7 +323,6 @@

    Obsolete CSSOM interfaces {{Obsolete_Inline}}
  • Set the {{htmlelement("canvas")}} element's image-rendering CSS property to some value that does not make the image blurry. Either crisp-edges or pixelated will work. Check out the {{cssxref("image-rendering")}} article for more information on the differences between these values, and which prefixes to use depending on the browser.
  • -
    • MDN Web Docs Glossary: diff --git a/files/en-us/mdn/mdn_product_advisory_board/membership/index.html b/files/en-us/mdn/mdn_product_advisory_board/membership/index.html index 7c5c9cbc2315899..56a5008c141cef3 100644 --- a/files/en-us/mdn/mdn_product_advisory_board/membership/index.html +++ b/files/en-us/mdn/mdn_product_advisory_board/membership/index.html @@ -118,8 +118,6 @@

      7. Time Commitment and Costs.

      c. Costs for participant travel and living expenses or other involvement are to be paid by the individual board member or the sponsoring organization.

      - -

      See also

        diff --git a/files/en-us/mdn/structures/code_examples/index.html b/files/en-us/mdn/structures/code_examples/index.html index 6b58fb1a73d17f0..17270c3791f77f3 100644 --- a/files/en-us/mdn/structures/code_examples/index.html +++ b/files/en-us/mdn/structures/code_examples/index.html @@ -100,7 +100,6 @@

        Traditional live samples

        <body> <h1>Your example?</h1> - <script type="text/javascript"> document.querySelector('h1').onclick = function() { document.querySelector('h1').textContent = 'Your example?'; diff --git a/files/en-us/mdn/structures/page_types/api_event_subpage_template/index.html b/files/en-us/mdn/structures/page_types/api_event_subpage_template/index.html index f3815f7474e0dc9..acbca4bd40bace0 100644 --- a/files/en-us/mdn/structures/page_types/api_event_subpage_template/index.html +++ b/files/en-us/mdn/structures/page_types/api_event_subpage_template/index.html @@ -106,8 +106,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("path.to.feature.NameOfTheEvent_event")}}

        See also

        diff --git a/files/en-us/mdn/structures/page_types/api_method_subpage_template/index.html b/files/en-us/mdn/structures/page_types/api_method_subpage_template/index.html index f12db1589cecf32..59288596b6c9b31 100644 --- a/files/en-us/mdn/structures/page_types/api_method_subpage_template/index.html +++ b/files/en-us/mdn/structures/page_types/api_method_subpage_template/index.html @@ -109,8 +109,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("path.to.feature.NameOfTheMethod")}}

        See also

        diff --git a/files/en-us/mdn/structures/page_types/api_property_subpage_template/index.html b/files/en-us/mdn/structures/page_types/api_property_subpage_template/index.html index 613b9f80b85e20e..60e84fa27e04ea3 100644 --- a/files/en-us/mdn/structures/page_types/api_property_subpage_template/index.html +++ b/files/en-us/mdn/structures/page_types/api_property_subpage_template/index.html @@ -91,8 +91,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("path.to.feature.NameOfTheProperty")}}

        See also

        diff --git a/files/en-us/mdn/structures/page_types/api_reference_page_template/index.html b/files/en-us/mdn/structures/page_types/api_reference_page_template/index.html index 9da78571c4f885b..35ecea46d34930d 100644 --- a/files/en-us/mdn/structures/page_types/api_reference_page_template/index.html +++ b/files/en-us/mdn/structures/page_types/api_reference_page_template/index.html @@ -132,8 +132,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("path.to.feature.NameOfTheInterface")}}

        See also

        diff --git a/files/en-us/mdn/structures/page_types/css_selector_page_template/index.html b/files/en-us/mdn/structures/page_types/css_selector_page_template/index.html index 184dd1ccf38461a..761c171dacbf5b5 100644 --- a/files/en-us/mdn/structures/page_types/css_selector_page_template/index.html +++ b/files/en-us/mdn/structures/page_types/css_selector_page_template/index.html @@ -92,8 +92,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.NameOfTheSelector")}}

        See also

        diff --git a/files/en-us/mdn_at_ten/index.html b/files/en-us/mdn_at_ten/index.html index 5d65a01bdc119fe..dc8a64c9202fa56 100644 --- a/files/en-us/mdn_at_ten/index.html +++ b/files/en-us/mdn_at_ten/index.html @@ -16,7 +16,6 @@

        The history of MDN

        Learn more about the history

        -

        Contributing to MDN

        For ten years, the MDN community has been documenting the open Web. From fixing simple typos to writing entire suites of an entirely new API, everyone has something to offer and no contribution is too large or too small. We have over 90,000 pages of content that have been written or translated by members of our outstanding community of Mozillians. You can become one of them.

        diff --git a/files/en-us/mozilla/add-ons/webextensions/api/browseraction/settitle/index.html b/files/en-us/mozilla/add-ons/webextensions/api/browseraction/settitle/index.html index 0512a08382578da..3619fc4e3b4b15f 100644 --- a/files/en-us/mozilla/add-ons/webextensions/api/browseraction/settitle/index.html +++ b/files/en-us/mozilla/add-ons/webextensions/api/browseraction/settitle/index.html @@ -61,8 +61,6 @@

        Parameters

        Browser compatibility

        - -

        {{Compat("webextensions.api.browserAction.setTitle", 10)}}

        Examples

        diff --git a/files/en-us/mozilla/add-ons/webextensions/api/browsingdata/index.html b/files/en-us/mozilla/add-ons/webextensions/api/browsingdata/index.html index c82b817375d02c1..1f73803f83ab255 100644 --- a/files/en-us/mozilla/add-ons/webextensions/api/browsingdata/index.html +++ b/files/en-us/mozilla/add-ons/webextensions/api/browsingdata/index.html @@ -76,8 +76,6 @@

        Methods

        Browser compatibility

        - -

        {{Compat("webextensions.api.browsingData", 2)}}

      -

      DOM

      diff --git a/files/en-us/mozilla/firefox/releases/3/site_compatibility/index.html b/files/en-us/mozilla/firefox/releases/3/site_compatibility/index.html index 525554dfcb0853a..361ef5e8176d1b6 100644 --- a/files/en-us/mozilla/firefox/releases/3/site_compatibility/index.html +++ b/files/en-us/mozilla/firefox/releases/3/site_compatibility/index.html @@ -42,7 +42,6 @@

      DOM

      WRONG_DOCUMENT_ERR

      -

      Nodes from external documents should be cloned using document.importNode() (or adopted using document.adoptNode()) before they can be inserted into the current document. For more on the Node.ownerDocument issues, see the W3C DOM FAQ.

      diff --git a/files/en-us/mozilla/firefox/releases/3/templates/index.html b/files/en-us/mozilla/firefox/releases/3/templates/index.html index 2e531c6d1265fa2..d7730647e6d6342 100644 --- a/files/en-us/mozilla/firefox/releases/3/templates/index.html +++ b/files/en-us/mozilla/firefox/releases/3/templates/index.html @@ -10,7 +10,6 @@

      Templates have been significantly improved in Firefox 3. The key improvement allows the use of custom query processors to handle other types of datasources besides RDF. A new query syntax makes this possible. Built-in support for SQL (mozStorage) and XML datasources is also provided. A full description of the new features available for templates {{interwiki('wikimo', 'XUL:Template_Features_in_1.9', 'is available')}}. ({{Bug("285631")}})

      -

      Other template improvements

      • Relational conditions have been added to allow for more precise control over what results match a rule. This allows, for example, matching of results that start or end with certain strings, or that are before or after other values.
      • @@ -19,7 +18,6 @@

        Other template improvements

      • The XUL sort service is more robust and sorts both content and non-content trees better. It also allows sorting of non-template built content. ({{Bug(335122)}})
      -

      See also

      • Firefox 3 for developers
      • diff --git a/files/en-us/mozilla/firefox/releases/3/updating_extensions/index.html b/files/en-us/mozilla/firefox/releases/3/updating_extensions/index.html index 7e584d847de17e8..81b634fe15ba6af 100644 --- a/files/en-us/mozilla/firefox/releases/3/updating_extensions/index.html +++ b/files/en-us/mozilla/firefox/releases/3/updating_extensions/index.html @@ -52,14 +52,10 @@

        Step 3: Deal with changed APIs

        DOM

        - -

        Nodes from external documents should be cloned using document.importNode() (or adopted using document.adoptNode()) before they can be inserted into the current document. For more on the Node.ownerDocument issues, see the W3C DOM FAQ.

        Firefox doesn't currently enforce this rule (it did for a while during the development of Firefox 3, but too many sites break when this rule is enforced). We encourage Web developers to fix their code to follow this rule for improved future compatibility.

        - -

        Bookmarks & History

        If your extension accesses bookmark or history data in any way, it will need substantial work to be compatible with Firefox 3. The old APIs for accessing this information have been replaced by the new Places architecture. See the Places migration guide for details on updating your existing extension to use the Places API.

        diff --git a/files/en-us/mozilla/firefox/releases/3/updating_web_applications/index.html b/files/en-us/mozilla/firefox/releases/3/updating_web_applications/index.html index 0895b7034661c8d..f01bafba1bf18d0 100644 --- a/files/en-us/mozilla/firefox/releases/3/updating_web_applications/index.html +++ b/files/en-us/mozilla/firefox/releases/3/updating_web_applications/index.html @@ -12,7 +12,6 @@

        DOM changes

        -

        Nodes from external documents should be cloned using document.importNode() (or adopted using document.adoptNode()) before they can be inserted into the current document. For more on the Node.ownerDocument issues, see the W3C DOM FAQ.

        diff --git a/files/en-us/mozilla/firefox/releases/4/index.html b/files/en-us/mozilla/firefox/releases/4/index.html index 732a6eb330284a9..0f855f7e91297c0 100644 --- a/files/en-us/mozilla/firefox/releases/4/index.html +++ b/files/en-us/mozilla/firefox/releases/4/index.html @@ -232,7 +232,6 @@

        Miscellaneous CSS changes

        Graphics and video

        -
        WebGL
        The developing WebGL standard is now supported by Firefox.
        diff --git a/files/en-us/mozilla/firefox/releases/6/index.html b/files/en-us/mozilla/firefox/releases/6/index.html index 78e3f974d743e72..08e63d1b3c6ceb2 100644 --- a/files/en-us/mozilla/firefox/releases/6/index.html +++ b/files/en-us/mozilla/firefox/releases/6/index.html @@ -14,7 +14,6 @@

        Changes for web developers

        HTML

        -
        • The HTML5 {{ HTMLElement("progress") }} element, which lets you create a progress bar, is now supported.
        • The parsing of the HTML5 {{ HTMLElement("track") }} element, which specifies text tracks for media elements, is now supported. This element should appear in the DOM now, though its behavior is still not implemented.
        • diff --git a/files/en-us/plugins/guide/drawing_and_event_handling/index.html b/files/en-us/plugins/guide/drawing_and_event_handling/index.html index 4ab0c24240b4929..6e75cc0e541776e 100644 --- a/files/en-us/plugins/guide/drawing_and_event_handling/index.html +++ b/files/en-us/plugins/guide/drawing_and_event_handling/index.html @@ -38,7 +38,6 @@

          The NPWindow Structure

          //The NPWindow Structure
           
          -
           typedef enum {
           
           NPWindowTypeWindow = 1,
          @@ -46,8 +45,6 @@ 

          The NPWindow Structure

          } NPWindowType; - - typedef struct _NPWindow { void* window; /* Platform-specific handle */ diff --git a/files/en-us/plugins/guide/urls/index.html b/files/en-us/plugins/guide/urls/index.html index 44a557e665533a2..576a70106657274 100644 --- a/files/en-us/plugins/guide/urls/index.html +++ b/files/en-us/plugins/guide/urls/index.html @@ -227,8 +227,6 @@

          Uploading Files to an FTP Server

          uint32 myLength = strlen(myData) + 1; - - err = NPN_PostURL(instance, "ftp://fred@ftp.example.com/pub/", "response", myLength, myData, TRUE);
          @@ -241,8 +239,6 @@

          Sending Mail

          uint32 myLength = strlen(myData) + 1; - - err = NPN_PostURLNotify(instance, "mailto:fred@example.com", NULL, myLength, myData, FALSE); diff --git a/files/en-us/tools/browser_toolbox/index.html b/files/en-us/tools/browser_toolbox/index.html index b069a16a14cee46..636c712f1e466e2 100644 --- a/files/en-us/tools/browser_toolbox/index.html +++ b/files/en-us/tools/browser_toolbox/index.html @@ -56,8 +56,6 @@

          Targeting a document

          - -

          Debugging popups

          It's hard to debug popups, because the browser hides them as soon as you click outside them. There is a way to disable this behavior. Click the toolbox menu and select Disable popup auto-hide.

          diff --git a/files/en-us/tools/debugger-api/debugger.memory/index.html b/files/en-us/tools/debugger-api/debugger.memory/index.html index b679ec0b9547980..f4f3a5b41b3a0ed 100644 --- a/files/en-us/tools/debugger-api/debugger.memory/index.html +++ b/files/en-us/tools/debugger-api/debugger.memory/index.html @@ -165,8 +165,6 @@

          Debugger.Memory Handler Functions

          Function Properties of the Debugger.Memory.prototype Object

    - -

    Memory Use Analysis Exposes Implementation Details

    Memory analysis may yield surprising results, because browser implementation details that are transparent to content JavaScript often have visible effects on memory consumption. Web developers need to know their pages’ actual memory consumption on real browsers, so it is correct for the tool to expose these behaviors, as long as it is done in a way that helps developers make decisions about their own code.

    diff --git a/files/en-us/tools/performance/index.html b/files/en-us/tools/performance/index.html index 9d3575182fc88cb..ad6fcb151adfc69 100644 --- a/files/en-us/tools/performance/index.html +++ b/files/en-us/tools/performance/index.html @@ -87,7 +87,5 @@

    Scenarios

    - -
    diff --git a/files/en-us/tools/web_console/console_messages/index.html b/files/en-us/tools/web_console/console_messages/index.html index 2096d338a42ca92..d5952451f173c49 100644 --- a/files/en-us/tools/web_console/console_messages/index.html +++ b/files/en-us/tools/web_console/console_messages/index.html @@ -123,8 +123,6 @@

    Network

    JS

    - -

    JavaScript errors contain a "Learn more" link that takes you to the JavaScript error reference containing additional advice for fixing issues:

    {{EmbedYouTube("OabJc2QR6o0")}}

    diff --git a/files/en-us/tools/web_console/ui_tour/index.html b/files/en-us/tools/web_console/ui_tour/index.html index 842c4bfedeef81c..916ae3e02be843a 100644 --- a/files/en-us/tools/web_console/ui_tour/index.html +++ b/files/en-us/tools/web_console/ui_tour/index.html @@ -12,7 +12,6 @@

    The Web Console's interface is split into three horizontal sections, detailed in the sections below.

    -

    Toolbar

    The toolbar across the top contains a number of features:

    diff --git a/files/en-us/web-rtc-tutorial-landing/connecting_the_peers/getting_browser_microphone_permission/index.html b/files/en-us/web-rtc-tutorial-landing/connecting_the_peers/getting_browser_microphone_permission/index.html index 24e33ba1807477e..ea09f85b7aaa23d 100644 --- a/files/en-us/web-rtc-tutorial-landing/connecting_the_peers/getting_browser_microphone_permission/index.html +++ b/files/en-us/web-rtc-tutorial-landing/connecting_the_peers/getting_browser_microphone_permission/index.html @@ -35,14 +35,12 @@
    /* global Peer */
     
    -
     /**
      * Gets the local audio stream of the current caller
      * @param callbacks - an object to set the success/error behaviour
      * @returns {void}
      */
     
    -
     function getLocalStream() {
         navigator.mediaDevices.getUserMedia({video: false, audio: true}).then( stream => {
             window.localStream = stream;
    diff --git a/files/en-us/web/accessibility/accessibility_and_spacial_patterns/index.html b/files/en-us/web/accessibility/accessibility_and_spacial_patterns/index.html
    index 3462b287db82aaa..958e98302923c69 100644
    --- a/files/en-us/web/accessibility/accessibility_and_spacial_patterns/index.html
    +++ b/files/en-us/web/accessibility/accessibility_and_spacial_patterns/index.html
    @@ -61,8 +61,6 @@ 

    Braille

    The nature of space can change depending upon what MIME type is being used, and its version.   For example, borders on SVG can extend both inward and outward from its dimensions, or for newer versions of SVG, entirely outward from it, thus reducing the space around the SVG to enable perception.

    - -

    See Also

    MDN

    diff --git a/files/en-us/web/accessibility/aria/aria_techniques/using_the_aria-activedescendant_attribute/index.html b/files/en-us/web/accessibility/aria/aria_techniques/using_the_aria-activedescendant_attribute/index.html index 26a0974d7d1a2a9..430f8e3ac3de684 100644 --- a/files/en-us/web/accessibility/aria/aria_techniques/using_the_aria-activedescendant_attribute/index.html +++ b/files/en-us/web/accessibility/aria/aria_techniques/using_the_aria-activedescendant_attribute/index.html @@ -26,8 +26,6 @@

    Examples

    Example 1: 

    - -
    Code 

    Working Examples:

    diff --git a/files/en-us/web/accessibility/aria/aria_techniques/using_the_aria-describedby_attribute/index.html b/files/en-us/web/accessibility/aria/aria_techniques/using_the_aria-describedby_attribute/index.html index ac844d8c6664c4b..f3b44985382e4ae 100644 --- a/files/en-us/web/accessibility/aria/aria_techniques/using_the_aria-describedby_attribute/index.html +++ b/files/en-us/web/accessibility/aria/aria_techniques/using_the_aria-describedby_attribute/index.html @@ -20,8 +20,6 @@

    Value

    Possible effects on user agents and assistive technology 

    - -
    Note: Opinions may differ on how assistive technology should handle this technique. The information provided above is one of those opinions and therefore not normative.

    Examples

    diff --git a/files/en-us/web/accessibility/aria/aria_techniques/using_the_aria-required_attribute/index.html b/files/en-us/web/accessibility/aria/aria_techniques/using_the_aria-required_attribute/index.html index d6a9b2fad351ec7..34e63cce6a5f0ed 100644 --- a/files/en-us/web/accessibility/aria/aria_techniques/using_the_aria-required_attribute/index.html +++ b/files/en-us/web/accessibility/aria/aria_techniques/using_the_aria-required_attribute/index.html @@ -30,8 +30,6 @@

    Examples

    Example 1: A simple form

    - -
     <form action="post">
          <label for="firstName">First name:</label>
          <input id="firstName" type="text" aria-required="true" />
    diff --git a/files/en-us/web/accessibility/aria/aria_techniques/using_the_toolbar_role/index.html b/files/en-us/web/accessibility/aria/aria_techniques/using_the_toolbar_role/index.html
    index 1a633da6da84a49..2dd83ecfea3b448 100644
    --- a/files/en-us/web/accessibility/aria/aria_techniques/using_the_toolbar_role/index.html
    +++ b/files/en-us/web/accessibility/aria/aria_techniques/using_the_toolbar_role/index.html
    @@ -12,16 +12,12 @@ 

    Description

    Possible effects on user agents and assistive technology 

    - -
    Note: Opinons may differ on how assistive technology should handle this technique. The information provided above is one of those opinions and therefore not normative.

    Examples

    Example 1: 

    - -
    Code 

    Working Examples:

    diff --git a/files/en-us/web/accessibility/aria/forms/multipart_labels/index.html b/files/en-us/web/accessibility/aria/forms/multipart_labels/index.html index cd644a0e5ec9311..3babfb5238cc94a 100644 --- a/files/en-us/web/accessibility/aria/forms/multipart_labels/index.html +++ b/files/en-us/web/accessibility/aria/forms/multipart_labels/index.html @@ -48,5 +48,4 @@

    controls can be embedded in labels as shown in the above example using HTML 4, simply by embedding the input into the label. Thanks for that info, Ben! It is very useful and shows that some techniques that have been available for years escape even the gurus sometimes. This technique works in Firefox; however, it doesn't currently work in many other browsers, including IE. For labels with embedded form controls, using aria-labelledby is still the best approach.

    - diff --git a/files/en-us/web/accessibility/aria/roles/cell_role/index.html b/files/en-us/web/accessibility/aria/roles/cell_role/index.html index 21a5ede65a33c2b..cb32daacbc93ec3 100644 --- a/files/en-us/web/accessibility/aria/roles/cell_role/index.html +++ b/files/en-us/web/accessibility/aria/roles/cell_role/index.html @@ -90,7 +90,6 @@

    Keyboard interactions

    Required JavaScript features

    -

    The first rule of ARIA use is if you can use a native feature with the semantics and behavior you require already built in, instead of repurposing an element and adding an ARIA role, state or property to make it accessible, then do so. Employ the HTML <td> element instead of the ARIA role of cell whenever possible.

    Examples

    diff --git a/files/en-us/web/accessibility/aria/roles/checkbox_role/index.html b/files/en-us/web/accessibility/aria/roles/checkbox_role/index.html index dbb049115aa1cd2..d50f65da3e7073f 100644 --- a/files/en-us/web/accessibility/aria/roles/checkbox_role/index.html +++ b/files/en-us/web/accessibility/aria/roles/checkbox_role/index.html @@ -30,7 +30,6 @@

    Description

    Associated WAI-ARIA Roles, States, and Properties

    -
    aria-checked
    @@ -73,7 +72,6 @@

    Required event handlers

    Handle the case where the user presses the Space key to change the state of the checkbox by changing the value of the aria-checked attribute and the appearance of the checkbox so it appears checked or unchecked to the sighted user
    -

    Examples

    The following example creates a simple checkbox element using CSS and JavaScript to handle the checked or unchecked status of the element.

    diff --git a/files/en-us/web/accessibility/aria/roles/form_role/index.html b/files/en-us/web/accessibility/aria/roles/form_role/index.html index 76818d696f09db1..71cfcae0a6101e0 100644 --- a/files/en-us/web/accessibility/aria/roles/form_role/index.html +++ b/files/en-us/web/accessibility/aria/roles/form_role/index.html @@ -127,8 +127,6 @@

    Added benefits

  • - -

    Specifications

    diff --git a/files/en-us/web/accessibility/aria/roles/gridcell_role/index.html b/files/en-us/web/accessibility/aria/roles/gridcell_role/index.html index e268dd0a19cb345..fda142901b32fef 100644 --- a/files/en-us/web/accessibility/aria/roles/gridcell_role/index.html +++ b/files/en-us/web/accessibility/aria/roles/gridcell_role/index.html @@ -86,7 +86,6 @@

    Expandable cells

    Associated WAI-ARIA Roles, States, and Properties

    -
    grid
    diff --git a/files/en-us/web/accessibility/aria/roles/list_role/index.html b/files/en-us/web/accessibility/aria/roles/list_role/index.html index d137675a335bd6d..62ba85218747af3 100644 --- a/files/en-us/web/accessibility/aria/roles/list_role/index.html +++ b/files/en-us/web/accessibility/aria/roles/list_role/index.html @@ -31,8 +31,6 @@

    Description

    Warning: If at all possible in your work, you should use the appropriate semantic HTML elements to mark up a list and its listitems — {{htmlelement("ul")}}/{{htmlelement("ol")}} and {{htmlelement("li")}}. See {{anch("Best practices")}} for a full example.

    - -

    Associated WAI-ARIA Roles, States, and Properties

    diff --git a/files/en-us/web/accessibility/aria/roles/role_img/index.html b/files/en-us/web/accessibility/aria/roles/role_img/index.html index 423e78910cd4320..f3dbb7217c0b444 100644 --- a/files/en-us/web/accessibility/aria/roles/role_img/index.html +++ b/files/en-us/web/accessibility/aria/roles/role_img/index.html @@ -77,8 +77,6 @@

    Using role= </p> </div> - -

    Associated WAI-ARIA Roles, States, and Properties

    @@ -88,10 +86,6 @@

    Associated WAI-ARIA Rol

    Keyboard Interactions

    - - - -

    Required JavaScript features

    Examples

    diff --git a/files/en-us/web/accessibility/aria/roles/row_role/index.html b/files/en-us/web/accessibility/aria/roles/row_role/index.html index 31a825afbbfdbc4..91a41cd76b5009c 100644 --- a/files/en-us/web/accessibility/aria/roles/row_role/index.html +++ b/files/en-us/web/accessibility/aria/roles/row_role/index.html @@ -126,7 +126,6 @@

    Keyboard Interactions

    Required JavaScript features

    -

    None. For sortable columns, see the columnheader aria role.

    diff --git a/files/en-us/web/accessibility/aria/roles/table_role/index.html b/files/en-us/web/accessibility/aria/roles/table_role/index.html index 20ded99d57db2b5..8ac5d7d2c2a89a2 100644 --- a/files/en-us/web/accessibility/aria/roles/table_role/index.html +++ b/files/en-us/web/accessibility/aria/roles/table_role/index.html @@ -88,7 +88,6 @@

    Keyboard interactions

    Required JavaScript features

    -

    None. For sortable columns, see the columnheader aria role.

    diff --git a/files/en-us/web/accessibility/aria/roles/textbox_role/index.html b/files/en-us/web/accessibility/aria/roles/textbox_role/index.html index 3b7e25d5f77594b..69fa4a7d7f78187 100644 --- a/files/en-us/web/accessibility/aria/roles/textbox_role/index.html +++ b/files/en-us/web/accessibility/aria/roles/textbox_role/index.html @@ -27,8 +27,6 @@

    Description

    Semantic elements are more concise and require no JavaScript to support textbox features.

    - -
    <label for="txtbox">Enter your five-digit zipcode</label>
     <input type="text" placeholder="5-digit zipcode" id="txtbox"/>
     
    @@ -36,11 +34,8 @@ 

    Description

    <label for="txtboxMultiline">Enter the tags for the article</label> <textarea id="txtboxMultiline" required></textarea>
    - -

    Where a text field is read-only, indicated this by setting aria-readonly="true" on the element.

    -

    Associated ARIA properties

    diff --git a/files/en-us/web/accessibility/faq/index.html b/files/en-us/web/accessibility/faq/index.html index cbb059da5ac2e44..30e2500310e571b 100644 --- a/files/en-us/web/accessibility/faq/index.html +++ b/files/en-us/web/accessibility/faq/index.html @@ -7,26 +7,19 @@ ---

    Where can I find more about Mozilla's accessibility initiatives?

    -

    Mozilla Accessibility Project

    -

    What are some of the built-in accessibility features that are currently supported in the browser?

    - -

    Firefox 3 Accessibility Features (archive.org)

    -

    Which assistive technologies support Firefox and Thunderbird?

    Assistive Technology Compatibility - Documents assistive technologies for Windows, Linux, UNIX, Mac OS X and the degree of compatibility with Firefox

    -

    What can I do to make sure my Mozilla extensions are accessible?

    In general, use the Accessible Toolkit Checklist (archive.org). For interface design with XUL, follow the Accessibile XUL Authoring Guidelines (archive.org).

    -

    I'm interested in helping promote the fine accessibility features that Firefox provides, what can I do?

    Join the Firefox Accessibility Advocates

    diff --git a/files/en-us/web/accessibility/understanding_wcag/operable/index.html b/files/en-us/web/accessibility/understanding_wcag/operable/index.html index 7791859e68e48bc..a09598d0105b0ab 100644 --- a/files/en-us/web/accessibility/understanding_wcag/operable/index.html +++ b/files/en-us/web/accessibility/understanding_wcag/operable/index.html @@ -299,8 +299,6 @@

    Guideline 2.5: Input Modalities: Make it easier for users to operate functionality through various inputs beyond keyboard.

    - -

    See Also

      diff --git a/files/en-us/web/accessibility/understanding_wcag/perceivable/color_contrast/index.html b/files/en-us/web/accessibility/understanding_wcag/perceivable/color_contrast/index.html index 08b425bb52b7ce1..ab45e7d45c944b0 100644 --- a/files/en-us/web/accessibility/understanding_wcag/perceivable/color_contrast/index.html +++ b/files/en-us/web/accessibility/understanding_wcag/perceivable/color_contrast/index.html @@ -119,7 +119,6 @@

      example2

      {{EmbedLiveSample('example2', '100%', '100')}}

      -

      Solution

      When choosing a color scheme for your website, choose foreground and background colors that have good contrast. Make the color contrast as good as it can be within your design constraints — ideally go for the AAA rating (see 1.4.6 below), but at least meet the AA rating (see 1.4.3 below).

      diff --git a/files/en-us/web/api/abortcontroller/abort/index.html b/files/en-us/web/api/abortcontroller/abort/index.html index bff3ca7beb1a836..c65908e416880a8 100644 --- a/files/en-us/web/api/abortcontroller/abort/index.html +++ b/files/en-us/web/api/abortcontroller/abort/index.html @@ -81,8 +81,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.AbortController.abort")}}

      See also

      diff --git a/files/en-us/web/api/abortcontroller/abortcontroller/index.html b/files/en-us/web/api/abortcontroller/abortcontroller/index.html index 7ea876c40add4ee..8137d35a21ad452 100644 --- a/files/en-us/web/api/abortcontroller/abortcontroller/index.html +++ b/files/en-us/web/api/abortcontroller/abortcontroller/index.html @@ -76,8 +76,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.AbortController.AbortController")}}

      See also

      diff --git a/files/en-us/web/api/abortcontroller/index.html b/files/en-us/web/api/abortcontroller/index.html index 1169f847792b070..8a363c7f8321aba 100644 --- a/files/en-us/web/api/abortcontroller/index.html +++ b/files/en-us/web/api/abortcontroller/index.html @@ -90,8 +90,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.AbortController")}}

      See also

      diff --git a/files/en-us/web/api/abortcontroller/signal/index.html b/files/en-us/web/api/abortcontroller/signal/index.html index 4d982b9f5874541..78521ddf7791404 100644 --- a/files/en-us/web/api/abortcontroller/signal/index.html +++ b/files/en-us/web/api/abortcontroller/signal/index.html @@ -77,8 +77,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.AbortController.signal")}}

      See also

      diff --git a/files/en-us/web/api/abortsignal/abort_event/index.html b/files/en-us/web/api/abortsignal/abort_event/index.html index 901ff3d5eb36809..44ea427a943a401 100644 --- a/files/en-us/web/api/abortsignal/abort_event/index.html +++ b/files/en-us/web/api/abortsignal/abort_event/index.html @@ -75,7 +75,6 @@

      Browser compatibility

      -

      {{Compat("api.AbortSignal.abort_event")}}

      diff --git a/files/en-us/web/api/abortsignal/aborted/index.html b/files/en-us/web/api/abortsignal/aborted/index.html index 11094aa7e2b7dd9..da97f78007ef19d 100644 --- a/files/en-us/web/api/abortsignal/aborted/index.html +++ b/files/en-us/web/api/abortsignal/aborted/index.html @@ -52,8 +52,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.AbortSignal.aborted")}}

      See also

      diff --git a/files/en-us/web/api/abortsignal/index.html b/files/en-us/web/api/abortsignal/index.html index 4a658560478e1ce..abab62effb28786 100644 --- a/files/en-us/web/api/abortsignal/index.html +++ b/files/en-us/web/api/abortsignal/index.html @@ -95,8 +95,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.AbortSignal")}}

      See also

      diff --git a/files/en-us/web/api/abortsignal/onabort/index.html b/files/en-us/web/api/abortsignal/onabort/index.html index 3918db78671fe01..c6c87b461f64292 100644 --- a/files/en-us/web/api/abortsignal/onabort/index.html +++ b/files/en-us/web/api/abortsignal/onabort/index.html @@ -50,8 +50,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.AbortSignal.onabort")}}

      See also

      diff --git a/files/en-us/web/api/absoluteorientationsensor/absoluteorientationsensor/index.html b/files/en-us/web/api/absoluteorientationsensor/absoluteorientationsensor/index.html index c8b0819838ea857..b54985f982684a3 100644 --- a/files/en-us/web/api/absoluteorientationsensor/absoluteorientationsensor/index.html +++ b/files/en-us/web/api/absoluteorientationsensor/absoluteorientationsensor/index.html @@ -58,6 +58,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.AbsoluteOrientationSensor.AbsoluteOrientationSensor")}}

      diff --git a/files/en-us/web/api/absoluteorientationsensor/index.html b/files/en-us/web/api/absoluteorientationsensor/index.html index 6f9170a5b16d48f..5f284184112794f 100644 --- a/files/en-us/web/api/absoluteorientationsensor/index.html +++ b/files/en-us/web/api/absoluteorientationsensor/index.html @@ -101,6 +101,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.AbsoluteOrientationSensor")}}

      diff --git a/files/en-us/web/api/abstractrange/endoffset/index.html b/files/en-us/web/api/abstractrange/endoffset/index.html index 092bbb3881f7191..3bc4a08d8aa096f 100644 --- a/files/en-us/web/api/abstractrange/endoffset/index.html +++ b/files/en-us/web/api/abstractrange/endoffset/index.html @@ -52,6 +52,5 @@

      Browser compatibility

      -

      {{Compat("api.AbstractRange.endOffset")}}

      diff --git a/files/en-us/web/api/abstractrange/startcontainer/index.html b/files/en-us/web/api/abstractrange/startcontainer/index.html index 505f4a7aecbcd8a..3a2a120470f08e9 100644 --- a/files/en-us/web/api/abstractrange/startcontainer/index.html +++ b/files/en-us/web/api/abstractrange/startcontainer/index.html @@ -52,6 +52,5 @@

      Browser compatibility

      -

      {{Compat("api.AbstractRange.startContainer")}}

      diff --git a/files/en-us/web/api/abstractrange/startoffset/index.html b/files/en-us/web/api/abstractrange/startoffset/index.html index b1a6fde4f2a5ebf..0cf797fd20cdd1d 100644 --- a/files/en-us/web/api/abstractrange/startoffset/index.html +++ b/files/en-us/web/api/abstractrange/startoffset/index.html @@ -52,6 +52,5 @@

      Browser compatibility

      -

      {{Compat("api.AbstractRange.startOffset")}}

      diff --git a/files/en-us/web/api/abstractworker/index.html b/files/en-us/web/api/abstractworker/index.html index 51f409528eb3a74..39228a0b5de422a 100644 --- a/files/en-us/web/api/abstractworker/index.html +++ b/files/en-us/web/api/abstractworker/index.html @@ -76,7 +76,6 @@

      Browser compatibility

      -

      {{Compat("api.AbstractWorker")}}

      diff --git a/files/en-us/web/api/abstractworker/onerror/index.html b/files/en-us/web/api/abstractworker/onerror/index.html index e235656d9f26a1f..95ac1f3969a37a5 100644 --- a/files/en-us/web/api/abstractworker/onerror/index.html +++ b/files/en-us/web/api/abstractworker/onerror/index.html @@ -50,7 +50,6 @@

      Browser compatibility

      -

      {{Compat("api.AbstractWorker.onerror")}}

      diff --git a/files/en-us/web/api/accelerometer/accelerometer/index.html b/files/en-us/web/api/accelerometer/accelerometer/index.html index 8d1e6af70f67b0d..21ef6b171f00c81 100644 --- a/files/en-us/web/api/accelerometer/accelerometer/index.html +++ b/files/en-us/web/api/accelerometer/accelerometer/index.html @@ -58,6 +58,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Accelerometer.Accelerometer")}}

      diff --git a/files/en-us/web/api/accelerometer/index.html b/files/en-us/web/api/accelerometer/index.html index c01a3ccc9615e3f..5a707126d7f9e6a 100644 --- a/files/en-us/web/api/accelerometer/index.html +++ b/files/en-us/web/api/accelerometer/index.html @@ -76,6 +76,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Accelerometer")}}

      diff --git a/files/en-us/web/api/accelerometer/x/index.html b/files/en-us/web/api/accelerometer/x/index.html index c60f89923744fbe..5bf4fe5b2534377 100644 --- a/files/en-us/web/api/accelerometer/x/index.html +++ b/files/en-us/web/api/accelerometer/x/index.html @@ -64,6 +64,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Accelerometer.x")}}

      diff --git a/files/en-us/web/api/accelerometer/y/index.html b/files/en-us/web/api/accelerometer/y/index.html index e7251eca9c18d5a..f2c4a3a864cd15e 100644 --- a/files/en-us/web/api/accelerometer/y/index.html +++ b/files/en-us/web/api/accelerometer/y/index.html @@ -64,6 +64,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Accelerometer.y")}}

      diff --git a/files/en-us/web/api/accelerometer/z/index.html b/files/en-us/web/api/accelerometer/z/index.html index 2970f1a99466d92..8d1ba616c865968 100644 --- a/files/en-us/web/api/accelerometer/z/index.html +++ b/files/en-us/web/api/accelerometer/z/index.html @@ -64,6 +64,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Accelerometer.z")}}

      diff --git a/files/en-us/web/api/addresserrors/addressline/index.html b/files/en-us/web/api/addresserrors/addressline/index.html index 0a33f395fd5ac02..f5e97c06a7f9b68 100644 --- a/files/en-us/web/api/addresserrors/addressline/index.html +++ b/files/en-us/web/api/addresserrors/addressline/index.html @@ -50,6 +50,5 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors.addressLine")}}

      diff --git a/files/en-us/web/api/addresserrors/city/index.html b/files/en-us/web/api/addresserrors/city/index.html index 8ce98e55beba9d3..805ee48b145d77d 100644 --- a/files/en-us/web/api/addresserrors/city/index.html +++ b/files/en-us/web/api/addresserrors/city/index.html @@ -49,6 +49,5 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors.city")}}

      diff --git a/files/en-us/web/api/addresserrors/country/index.html b/files/en-us/web/api/addresserrors/country/index.html index af35fc5848a4d84..8e8d66553328d6e 100644 --- a/files/en-us/web/api/addresserrors/country/index.html +++ b/files/en-us/web/api/addresserrors/country/index.html @@ -50,6 +50,5 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors.country")}}

      diff --git a/files/en-us/web/api/addresserrors/dependentlocality/index.html b/files/en-us/web/api/addresserrors/dependentlocality/index.html index 1aa3b5b48027171..86035519b585f9f 100644 --- a/files/en-us/web/api/addresserrors/dependentlocality/index.html +++ b/files/en-us/web/api/addresserrors/dependentlocality/index.html @@ -49,6 +49,5 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors.dependentLocality")}}

      diff --git a/files/en-us/web/api/addresserrors/index.html b/files/en-us/web/api/addresserrors/index.html index 26207fa4a111d7e..9422a857730e65f 100644 --- a/files/en-us/web/api/addresserrors/index.html +++ b/files/en-us/web/api/addresserrors/index.html @@ -254,6 +254,5 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors")}}

      diff --git a/files/en-us/web/api/addresserrors/languagecode/index.html b/files/en-us/web/api/addresserrors/languagecode/index.html index 14b22677af8ccff..6463ed751d1511d 100644 --- a/files/en-us/web/api/addresserrors/languagecode/index.html +++ b/files/en-us/web/api/addresserrors/languagecode/index.html @@ -52,6 +52,5 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors.languageCode")}}

      diff --git a/files/en-us/web/api/addresserrors/organization/index.html b/files/en-us/web/api/addresserrors/organization/index.html index ca1c9f31048ab57..bd03a73d0c56d33 100644 --- a/files/en-us/web/api/addresserrors/organization/index.html +++ b/files/en-us/web/api/addresserrors/organization/index.html @@ -51,6 +51,5 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors.organization")}}

      diff --git a/files/en-us/web/api/addresserrors/phone/index.html b/files/en-us/web/api/addresserrors/phone/index.html index a7003338b1cd666..e3dc5c042ad3513 100644 --- a/files/en-us/web/api/addresserrors/phone/index.html +++ b/files/en-us/web/api/addresserrors/phone/index.html @@ -52,6 +52,5 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors.phone")}}

      diff --git a/files/en-us/web/api/addresserrors/postalcode/index.html b/files/en-us/web/api/addresserrors/postalcode/index.html index 95d8fc3b005fffa..ff20bffdc42c48d 100644 --- a/files/en-us/web/api/addresserrors/postalcode/index.html +++ b/files/en-us/web/api/addresserrors/postalcode/index.html @@ -53,6 +53,5 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors.postalCode")}}

      diff --git a/files/en-us/web/api/addresserrors/recipient/index.html b/files/en-us/web/api/addresserrors/recipient/index.html index 148cfe8210eee11..28275f8a4e9703f 100644 --- a/files/en-us/web/api/addresserrors/recipient/index.html +++ b/files/en-us/web/api/addresserrors/recipient/index.html @@ -49,6 +49,5 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors.recipient")}}

      diff --git a/files/en-us/web/api/addresserrors/region/index.html b/files/en-us/web/api/addresserrors/region/index.html index 6d82a9e8e23fc83..54a0d7f77104b24 100644 --- a/files/en-us/web/api/addresserrors/region/index.html +++ b/files/en-us/web/api/addresserrors/region/index.html @@ -50,6 +50,5 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors.region")}}

      diff --git a/files/en-us/web/api/addresserrors/regioncode/index.html b/files/en-us/web/api/addresserrors/regioncode/index.html index 1090a8f8aac49c7..7451ea3474af8f1 100644 --- a/files/en-us/web/api/addresserrors/regioncode/index.html +++ b/files/en-us/web/api/addresserrors/regioncode/index.html @@ -54,7 +54,6 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors.regionCode")}}

      See also

      diff --git a/files/en-us/web/api/addresserrors/sortingcode/index.html b/files/en-us/web/api/addresserrors/sortingcode/index.html index bc47e1c3c21792b..8143bccbc43f0a3 100644 --- a/files/en-us/web/api/addresserrors/sortingcode/index.html +++ b/files/en-us/web/api/addresserrors/sortingcode/index.html @@ -50,6 +50,5 @@

      Browser compatibility

      -

      {{Compat("api.AddressErrors.sortingCode")}}

      diff --git a/files/en-us/web/api/ambient_light_events/index.html b/files/en-us/web/api/ambient_light_events/index.html index e08df48b78ed8c4..4d09ab8d7a2dddd 100644 --- a/files/en-us/web/api/ambient_light_events/index.html +++ b/files/en-us/web/api/ambient_light_events/index.html @@ -59,8 +59,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.DeviceLightEvent")}}

      See also

      diff --git a/files/en-us/web/api/ambientlightsensor/ambientlightsensor/index.html b/files/en-us/web/api/ambientlightsensor/ambientlightsensor/index.html index a7dad4cc2fb582d..eba5f520d0b32df 100644 --- a/files/en-us/web/api/ambientlightsensor/ambientlightsensor/index.html +++ b/files/en-us/web/api/ambientlightsensor/ambientlightsensor/index.html @@ -53,6 +53,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.AmbientLightSensor.AmbientLightSensor")}}

      diff --git a/files/en-us/web/api/ambientlightsensor/illuminance/index.html b/files/en-us/web/api/ambientlightsensor/illuminance/index.html index 1c679a122a046ef..ebf07e18981c36e 100644 --- a/files/en-us/web/api/ambientlightsensor/illuminance/index.html +++ b/files/en-us/web/api/ambientlightsensor/illuminance/index.html @@ -63,6 +63,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.AmbientLightSensor.illuminance")}}

      diff --git a/files/en-us/web/api/ambientlightsensor/index.html b/files/en-us/web/api/ambientlightsensor/index.html index 5706b8e34c5d4a5..7118f8b1f113b8f 100644 --- a/files/en-us/web/api/ambientlightsensor/index.html +++ b/files/en-us/web/api/ambientlightsensor/index.html @@ -71,6 +71,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.AmbientLightSensor")}}

      diff --git a/files/en-us/web/api/analysernode/analysernode/index.html b/files/en-us/web/api/analysernode/analysernode/index.html index 78641d77ca75cc4..77bb1a5ed806cf1 100644 --- a/files/en-us/web/api/analysernode/analysernode/index.html +++ b/files/en-us/web/api/analysernode/analysernode/index.html @@ -64,7 +64,6 @@

      Browser Compatibility

      -

      {{Compat("api.AnalyserNode.AnalyserNode")}}

      diff --git a/files/en-us/web/api/analysernode/fftsize/index.html b/files/en-us/web/api/analysernode/fftsize/index.html index 39c3fd09ce5e3b6..1376622fab08cc6 100644 --- a/files/en-us/web/api/analysernode/fftsize/index.html +++ b/files/en-us/web/api/analysernode/fftsize/index.html @@ -101,7 +101,6 @@

      Browser compatibility

      -

      {{Compat("api.AnalyserNode.fftSize")}}

      diff --git a/files/en-us/web/api/analysernode/frequencybincount/index.html b/files/en-us/web/api/analysernode/frequencybincount/index.html index 38e543b6ed04c2c..b8fa77953a40b29 100644 --- a/files/en-us/web/api/analysernode/frequencybincount/index.html +++ b/files/en-us/web/api/analysernode/frequencybincount/index.html @@ -87,7 +87,6 @@

      Browser compatibility

      -

      {{Compat("api.AnalyserNode.frequencyBinCount")}}

      diff --git a/files/en-us/web/api/analysernode/getbytefrequencydata/index.html b/files/en-us/web/api/analysernode/getbytefrequencydata/index.html index 90b822195dfb709..7d2934e21954325 100644 --- a/files/en-us/web/api/analysernode/getbytefrequencydata/index.html +++ b/files/en-us/web/api/analysernode/getbytefrequencydata/index.html @@ -28,8 +28,6 @@

      Syntax

      void analyser.getByteFrequencyData(dataArray); // fill the Uint8Array with data returned from getByteFrequencyData() - -

      Parameters

      @@ -42,8 +40,6 @@

      Return value

      None.

      - -

      Example

      The following example shows basic usage of an {{domxref("AudioContext")}} to create an AnalyserNode, then {{domxref("window.requestAnimationFrame()","requestAnimationFrame")}} and {{htmlelement("canvas")}} to collect frequency data repeatedly and draw a "winamp bargraph style" output of the current audio input. For more examples/information, check out our Voice-change-O-matic demo (see app.js lines 128–205 for relevant code).

      @@ -112,7 +108,6 @@

      Browser compatibility

      -

      {{Compat("api.AnalyserNode.getByteFrequencyData")}}

      diff --git a/files/en-us/web/api/analysernode/getbytetimedomaindata/index.html b/files/en-us/web/api/analysernode/getbytetimedomaindata/index.html index 6323d3f518ad55a..1991fbbb3619fbb 100644 --- a/files/en-us/web/api/analysernode/getbytetimedomaindata/index.html +++ b/files/en-us/web/api/analysernode/getbytetimedomaindata/index.html @@ -104,7 +104,6 @@

      Browser compatibility

      -

      {{Compat("api.AnalyserNode.getByteTimeDomainData")}}

      diff --git a/files/en-us/web/api/analysernode/getfloatfrequencydata/index.html b/files/en-us/web/api/analysernode/getfloatfrequencydata/index.html index 563dbbc8a8e351f..76ffce6d627c45b 100644 --- a/files/en-us/web/api/analysernode/getfloatfrequencydata/index.html +++ b/files/en-us/web/api/analysernode/getfloatfrequencydata/index.html @@ -88,7 +88,6 @@

      Drawing a spectrum

      const canvasCtx = canvas.getContext('2d'); canvasCtx.clearRect(0, 0, canvas.width, canvas.height); - function draw() { //Schedule next redraw requestAnimationFrame(draw); @@ -115,7 +114,6 @@

      Drawing a spectrum

      </script> </body> -

      Specifications

    @@ -137,7 +135,6 @@

    Browser compatibility

    -

    {{Compat("api.AnalyserNode.getFloatFrequencyData")}}

    diff --git a/files/en-us/web/api/analysernode/getfloattimedomaindata/index.html b/files/en-us/web/api/analysernode/getfloattimedomaindata/index.html index 3d30dae1b94f0cb..b8d8fc110ce5ab3 100644 --- a/files/en-us/web/api/analysernode/getfloattimedomaindata/index.html +++ b/files/en-us/web/api/analysernode/getfloattimedomaindata/index.html @@ -114,7 +114,6 @@

    Browser compatibility

    -

    {{Compat("api.AnalyserNode.getFloatTimeDomainData")}}

    diff --git a/files/en-us/web/api/analysernode/index.html b/files/en-us/web/api/analysernode/index.html index 765843561196284..8c31a29933a5630 100644 --- a/files/en-us/web/api/analysernode/index.html +++ b/files/en-us/web/api/analysernode/index.html @@ -177,7 +177,6 @@

    Browser compatibility

    -

    {{Compat("api.AnalyserNode")}}

    diff --git a/files/en-us/web/api/analysernode/maxdecibels/index.html b/files/en-us/web/api/analysernode/maxdecibels/index.html index b0f225f51ad00bc..1f49170d1bc30ec 100644 --- a/files/en-us/web/api/analysernode/maxdecibels/index.html +++ b/files/en-us/web/api/analysernode/maxdecibels/index.html @@ -90,7 +90,6 @@

    Browser compatibility

    -

    {{Compat("api.AnalyserNode.maxDecibels")}}

    diff --git a/files/en-us/web/api/analysernode/mindecibels/index.html b/files/en-us/web/api/analysernode/mindecibels/index.html index d4ee17357059969..22c00f607977048 100644 --- a/files/en-us/web/api/analysernode/mindecibels/index.html +++ b/files/en-us/web/api/analysernode/mindecibels/index.html @@ -93,7 +93,6 @@

    Browser compatibility

    -

    {{Compat("api.AnalyserNode.minDecibels")}}

    diff --git a/files/en-us/web/api/analysernode/smoothingtimeconstant/index.html b/files/en-us/web/api/analysernode/smoothingtimeconstant/index.html index 6884f32ca1106b4..bd2b97158d5ac7b 100644 --- a/files/en-us/web/api/analysernode/smoothingtimeconstant/index.html +++ b/files/en-us/web/api/analysernode/smoothingtimeconstant/index.html @@ -98,7 +98,6 @@

    Browser compatibility

    -

    {{Compat("api.AnalyserNode.smoothingTimeConstant")}}

    diff --git a/files/en-us/web/api/animation/animation/index.html b/files/en-us/web/api/animation/animation/index.html index b59f3e8fa347908..e46264ba1b6a08a 100644 --- a/files/en-us/web/api/animation/animation/index.html +++ b/files/en-us/web/api/animation/animation/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.Animation")}}

    diff --git a/files/en-us/web/api/animation/cancel/index.html b/files/en-us/web/api/animation/cancel/index.html index 1f74e3323bb49da..1f9f617fc9da133 100644 --- a/files/en-us/web/api/animation/cancel/index.html +++ b/files/en-us/web/api/animation/cancel/index.html @@ -35,7 +35,6 @@

    Exceptions

    This method doesn't directly throw exceptions; however, if the animation's {{domxref("Animation.playState", "playState")}} is anything but "idle" when cancelled, the {{domxref("Animation.finished", "current finished promise", "", 1)}} is rejected with a {{domxref("DOMException")}} named AbortError.

    -

    Specifications

    @@ -57,7 +56,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.cancel")}}

    diff --git a/files/en-us/web/api/animation/commitstyles/index.html b/files/en-us/web/api/animation/commitstyles/index.html index d72ed53d236f816..e3576a3545f9e6f 100644 --- a/files/en-us/web/api/animation/commitstyles/index.html +++ b/files/en-us/web/api/animation/commitstyles/index.html @@ -28,7 +28,6 @@

    Return value

    None.

    -

    Examples

    const divElem = document.querySelector('div');
    @@ -63,7 +62,6 @@ 

    Browser compatibility

    -

    {{Compat("api.Animation.commitStyles")}}

    diff --git a/files/en-us/web/api/animation/currenttime/index.html b/files/en-us/web/api/animation/currenttime/index.html index f152c7ea6011f09..228006c4d876f81 100644 --- a/files/en-us/web/api/animation/currenttime/index.html +++ b/files/en-us/web/api/animation/currenttime/index.html @@ -49,7 +49,6 @@

    Reduced time precision

    // 25.514 // ... - // reduced time precision with `privacy.resistFingerprinting` enabled animation.currentTime; // 49.8 @@ -81,7 +80,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.currentTime")}}

    diff --git a/files/en-us/web/api/animation/effect/index.html b/files/en-us/web/api/animation/effect/index.html index f1eec139629b63f..0c99ede885e8f7b 100644 --- a/files/en-us/web/api/animation/effect/index.html +++ b/files/en-us/web/api/animation/effect/index.html @@ -46,7 +46,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.effect")}}

    diff --git a/files/en-us/web/api/animation/finish/index.html b/files/en-us/web/api/animation/finish/index.html index b36624c3448dd83..201b9a25e50292a 100644 --- a/files/en-us/web/api/animation/finish/index.html +++ b/files/en-us/web/api/animation/finish/index.html @@ -30,7 +30,6 @@

    Return value

    None.

    -

    Exceptions

    @@ -83,7 +82,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.finish")}}

    diff --git a/files/en-us/web/api/animation/finished/index.html b/files/en-us/web/api/animation/finished/index.html index 3b9130c5529e65f..00be6d6702ea1d4 100644 --- a/files/en-us/web/api/animation/finished/index.html +++ b/files/en-us/web/api/animation/finished/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.finished")}}

    diff --git a/files/en-us/web/api/animation/id/index.html b/files/en-us/web/api/animation/id/index.html index 8e83281e17e6f21..29eb658abd6c8db 100644 --- a/files/en-us/web/api/animation/id/index.html +++ b/files/en-us/web/api/animation/id/index.html @@ -52,7 +52,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.id")}}

    diff --git a/files/en-us/web/api/animation/index.html b/files/en-us/web/api/animation/index.html index 158b6c4f8a9437c..0d3e41f1a408fae 100644 --- a/files/en-us/web/api/animation/index.html +++ b/files/en-us/web/api/animation/index.html @@ -156,8 +156,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Animation")}}

    See also

    diff --git a/files/en-us/web/api/animation/oncancel/index.html b/files/en-us/web/api/animation/oncancel/index.html index 5a2398b13736538..3c1ccf6712f7b23 100644 --- a/files/en-us/web/api/animation/oncancel/index.html +++ b/files/en-us/web/api/animation/oncancel/index.html @@ -59,7 +59,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.oncancel")}}

    diff --git a/files/en-us/web/api/animation/onfinish/index.html b/files/en-us/web/api/animation/onfinish/index.html index c3d3d7f8299b9b2..91c0f0e315cff1a 100644 --- a/files/en-us/web/api/animation/onfinish/index.html +++ b/files/en-us/web/api/animation/onfinish/index.html @@ -75,7 +75,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.onfinish")}}

    diff --git a/files/en-us/web/api/animation/onremove/index.html b/files/en-us/web/api/animation/onremove/index.html index 0264c23635b6bc2..d9296a1292733e6 100644 --- a/files/en-us/web/api/animation/onremove/index.html +++ b/files/en-us/web/api/animation/onremove/index.html @@ -73,7 +73,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.onremove")}}

    diff --git a/files/en-us/web/api/animation/pause/index.html b/files/en-us/web/api/animation/pause/index.html index 6fa8035700c18ce..ee971e03f0b40e2 100644 --- a/files/en-us/web/api/animation/pause/index.html +++ b/files/en-us/web/api/animation/pause/index.html @@ -90,7 +90,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.pause")}}

    diff --git a/files/en-us/web/api/animation/pending/index.html b/files/en-us/web/api/animation/pending/index.html index 91d67711e195277..7d7e5d4dd032222 100644 --- a/files/en-us/web/api/animation/pending/index.html +++ b/files/en-us/web/api/animation/pending/index.html @@ -44,7 +44,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.pending")}}

    diff --git a/files/en-us/web/api/animation/persist/index.html b/files/en-us/web/api/animation/persist/index.html index 33edc13d7f80c09..10ee48b91d78d72 100644 --- a/files/en-us/web/api/animation/persist/index.html +++ b/files/en-us/web/api/animation/persist/index.html @@ -28,7 +28,6 @@

    Return value

    None.

    -

    Examples

    In our simple replace indefinite animations demo, you can see the following code:

    @@ -77,7 +76,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.persist")}}

    diff --git a/files/en-us/web/api/animation/play/index.html b/files/en-us/web/api/animation/play/index.html index e1585299631b5c5..55084d067b71ba3 100644 --- a/files/en-us/web/api/animation/play/index.html +++ b/files/en-us/web/api/animation/play/index.html @@ -84,7 +84,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.play")}}

    diff --git a/files/en-us/web/api/animation/playbackrate/index.html b/files/en-us/web/api/animation/playbackrate/index.html index d344e2e676879d0..ebd175b60bc63e2 100644 --- a/files/en-us/web/api/animation/playbackrate/index.html +++ b/files/en-us/web/api/animation/playbackrate/index.html @@ -102,7 +102,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.playbackRate")}}

    diff --git a/files/en-us/web/api/animation/playstate/index.html b/files/en-us/web/api/animation/playstate/index.html index 84e307d96b0ae37..3b59913bc75c223 100644 --- a/files/en-us/web/api/animation/playstate/index.html +++ b/files/en-us/web/api/animation/playstate/index.html @@ -58,14 +58,12 @@

    Example

      el.pause(); }); - // Play the tears falling when the ending needs to be shown. tears.forEach(function(el) {   el.play(); }); - // Reset the crying tears animations and pause them. tears.forEach(function(el) { @@ -95,7 +93,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.playState")}}

    diff --git a/files/en-us/web/api/animation/ready/index.html b/files/en-us/web/api/animation/ready/index.html index 6a6b810bcec01b3..72d264eff412252 100644 --- a/files/en-us/web/api/animation/ready/index.html +++ b/files/en-us/web/api/animation/ready/index.html @@ -67,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.ready")}}

    diff --git a/files/en-us/web/api/animation/replacestate/index.html b/files/en-us/web/api/animation/replacestate/index.html index 0c359e8ab0f3103..96bd5569a89d570 100644 --- a/files/en-us/web/api/animation/replacestate/index.html +++ b/files/en-us/web/api/animation/replacestate/index.html @@ -77,7 +77,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.replaceState")}}

    diff --git a/files/en-us/web/api/animation/reverse/index.html b/files/en-us/web/api/animation/reverse/index.html index f5b232030cf56be..0f80a631e424eda 100644 --- a/files/en-us/web/api/animation/reverse/index.html +++ b/files/en-us/web/api/animation/reverse/index.html @@ -73,7 +73,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.reverse")}}

    diff --git a/files/en-us/web/api/animation/starttime/index.html b/files/en-us/web/api/animation/starttime/index.html index fdaf4a98d823108..254820a5207a1bb 100644 --- a/files/en-us/web/api/animation/starttime/index.html +++ b/files/en-us/web/api/animation/starttime/index.html @@ -68,7 +68,6 @@

    Reduced time precision

    // 25.514 // ... - // reduced time precision with `privacy.resistFingerprinting` enabled animation.startTime; // 49.8 @@ -100,7 +99,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.startTime")}}

    diff --git a/files/en-us/web/api/animation/timeline/index.html b/files/en-us/web/api/animation/timeline/index.html index 301e6461af23966..3a873bc95d5d15f 100644 --- a/files/en-us/web/api/animation/timeline/index.html +++ b/files/en-us/web/api/animation/timeline/index.html @@ -53,7 +53,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.timeline")}}

    diff --git a/files/en-us/web/api/animation/updateplaybackrate/index.html b/files/en-us/web/api/animation/updateplaybackrate/index.html index 8ca769127757137..d07e7ad6e92aebe 100644 --- a/files/en-us/web/api/animation/updateplaybackrate/index.html +++ b/files/en-us/web/api/animation/updateplaybackrate/index.html @@ -39,7 +39,6 @@

    Return value

    None.

    -

    Examples

    A speed selector component would benefit from smooth updating of updatePlaybackRate(), as demonstrated below:

    @@ -73,7 +72,6 @@

    Browser compatibility

    -

    {{Compat("api.Animation.updatePlaybackRate")}}

    diff --git a/files/en-us/web/api/animationeffect/getcomputedtiming/index.html b/files/en-us/web/api/animationeffect/getcomputedtiming/index.html index 3b3b56df8cfed42..1498cb2a7f61f4a 100644 --- a/files/en-us/web/api/animationeffect/getcomputedtiming/index.html +++ b/files/en-us/web/api/animationeffect/getcomputedtiming/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationEffect.getComputedTiming")}}

    See also

    diff --git a/files/en-us/web/api/animationeffect/gettiming/index.html b/files/en-us/web/api/animationeffect/gettiming/index.html index 77dd74e5df5ce77..5f691f13edbc4e5 100644 --- a/files/en-us/web/api/animationeffect/gettiming/index.html +++ b/files/en-us/web/api/animationeffect/gettiming/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationEffect.getTiming")}}

    See also

    diff --git a/files/en-us/web/api/animationeffect/index.html b/files/en-us/web/api/animationeffect/index.html index 71e9f6e98ee8e48..b1474181992f08d 100644 --- a/files/en-us/web/api/animationeffect/index.html +++ b/files/en-us/web/api/animationeffect/index.html @@ -28,7 +28,6 @@

    Methods

    Updates the specified timing properties of this AnimationEffect.
    -

    Specifications

    @@ -48,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationEffect")}}

    See also

    diff --git a/files/en-us/web/api/animationeffect/updatetiming/index.html b/files/en-us/web/api/animationeffect/updatetiming/index.html index 15915c8e6bdf8d6..14eadad6c2da3a7 100644 --- a/files/en-us/web/api/animationeffect/updatetiming/index.html +++ b/files/en-us/web/api/animationeffect/updatetiming/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationEffect.updateTiming")}}

    See also

    diff --git a/files/en-us/web/api/animationevent/animationevent/index.html b/files/en-us/web/api/animationevent/animationevent/index.html index 54bb6834b65c99b..3d3b854ec7435a6 100644 --- a/files/en-us/web/api/animationevent/animationevent/index.html +++ b/files/en-us/web/api/animationevent/animationevent/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationEvent.AnimationEvent")}}

    See also

    diff --git a/files/en-us/web/api/animationevent/animationname/index.html b/files/en-us/web/api/animationevent/animationname/index.html index e55347a2dd363f7..07883a319442d9c 100644 --- a/files/en-us/web/api/animationevent/animationname/index.html +++ b/files/en-us/web/api/animationevent/animationname/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationEvent.animationName")}}

    See also

    diff --git a/files/en-us/web/api/animationevent/elapsedtime/index.html b/files/en-us/web/api/animationevent/elapsedtime/index.html index 54a49ff282aebd4..a1ec59617da1908 100644 --- a/files/en-us/web/api/animationevent/elapsedtime/index.html +++ b/files/en-us/web/api/animationevent/elapsedtime/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationEvent.elapsedTime")}}

    See also

    diff --git a/files/en-us/web/api/animationevent/index.html b/files/en-us/web/api/animationevent/index.html index 7e6976d20b5ac23..10502b50c44ab98 100644 --- a/files/en-us/web/api/animationevent/index.html +++ b/files/en-us/web/api/animationevent/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationEvent")}}

    See also

    diff --git a/files/en-us/web/api/animationevent/initanimationevent/index.html b/files/en-us/web/api/animationevent/initanimationevent/index.html index 553d7a267c413db..8c468755d964d29 100644 --- a/files/en-us/web/api/animationevent/initanimationevent/index.html +++ b/files/en-us/web/api/animationevent/initanimationevent/index.html @@ -65,8 +65,6 @@

    Parameters

    Browser compatibility

    - -

    {{Compat("api.AnimationEvent.initAnimationEvent")}}

    See also

    diff --git a/files/en-us/web/api/animationevent/pseudoelement/index.html b/files/en-us/web/api/animationevent/pseudoelement/index.html index 366f33ab2423cec..f3e09f46619e471 100644 --- a/files/en-us/web/api/animationevent/pseudoelement/index.html +++ b/files/en-us/web/api/animationevent/pseudoelement/index.html @@ -42,8 +42,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationEvent.pseudoElement")}}

    See also

    diff --git a/files/en-us/web/api/animationplaybackevent/animationplaybackevent/index.html b/files/en-us/web/api/animationplaybackevent/animationplaybackevent/index.html index 8318b8bd3cbbe99..7f44079251d8f55 100644 --- a/files/en-us/web/api/animationplaybackevent/animationplaybackevent/index.html +++ b/files/en-us/web/api/animationplaybackevent/animationplaybackevent/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationPlaybackEvent.AnimationPlaybackEvent")}}

    See also

    diff --git a/files/en-us/web/api/animationplaybackevent/currenttime/index.html b/files/en-us/web/api/animationplaybackevent/currenttime/index.html index 0726b90034dd4b2..e081d72c4ebb413 100644 --- a/files/en-us/web/api/animationplaybackevent/currenttime/index.html +++ b/files/en-us/web/api/animationplaybackevent/currenttime/index.html @@ -33,7 +33,6 @@

    Reduced time precision

    // 25.514 // ... - // reduced time precision with `privacy.resistFingerprinting` enabled playbackEvent.currentTime; // 49.8 @@ -63,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationPlaybackEvent.currentTime")}}

    See also

    diff --git a/files/en-us/web/api/animationplaybackevent/index.html b/files/en-us/web/api/animationplaybackevent/index.html index dc53d0ac046c383..2d8d5b2085d5ae5 100644 --- a/files/en-us/web/api/animationplaybackevent/index.html +++ b/files/en-us/web/api/animationplaybackevent/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationPlaybackEvent")}}

    See also

    diff --git a/files/en-us/web/api/animationplaybackevent/timelinetime/index.html b/files/en-us/web/api/animationplaybackevent/timelinetime/index.html index e10f74a91d01918..634b147647837af 100644 --- a/files/en-us/web/api/animationplaybackevent/timelinetime/index.html +++ b/files/en-us/web/api/animationplaybackevent/timelinetime/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationPlaybackEvent.timelineTime")}}

    See also

    diff --git a/files/en-us/web/api/animationtimeline/currenttime/index.html b/files/en-us/web/api/animationtimeline/currenttime/index.html index a5334d60193e1d5..eeeaa4c41697436 100644 --- a/files/en-us/web/api/animationtimeline/currenttime/index.html +++ b/files/en-us/web/api/animationtimeline/currenttime/index.html @@ -37,7 +37,6 @@

    Reduced time precision

    // 25.514 // ... - // reduced time precision with `privacy.resistFingerprinting` enabled animationTimeline.currentTime; // 49.8 @@ -67,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationTimeline.currentTime")}}

    See also

    diff --git a/files/en-us/web/api/animationtimeline/index.html b/files/en-us/web/api/animationtimeline/index.html index ba6a50f08552910..84b496fc195ed25 100644 --- a/files/en-us/web/api/animationtimeline/index.html +++ b/files/en-us/web/api/animationtimeline/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AnimationTimeline")}}

    See also

    diff --git a/files/en-us/web/api/attr/index.html b/files/en-us/web/api/attr/index.html index e1a05ff293ebfcc..969b05298d33282 100644 --- a/files/en-us/web/api/attr/index.html +++ b/files/en-us/web/api/attr/index.html @@ -154,6 +154,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Attr")}}

    diff --git a/files/en-us/web/api/attr/localname/index.html b/files/en-us/web/api/attr/localname/index.html index 318c1346488a4d8..9b70ed642f96544 100644 --- a/files/en-us/web/api/attr/localname/index.html +++ b/files/en-us/web/api/attr/localname/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Attr.localName")}}

    See also

    diff --git a/files/en-us/web/api/attr/namespaceuri/index.html b/files/en-us/web/api/attr/namespaceuri/index.html index 0a4bf8e75da05d6..9cedcfca11f1fe8 100644 --- a/files/en-us/web/api/attr/namespaceuri/index.html +++ b/files/en-us/web/api/attr/namespaceuri/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Attr.namespaceURI")}}

    See also

    diff --git a/files/en-us/web/api/attr/prefix/index.html b/files/en-us/web/api/attr/prefix/index.html index 8c11debfe956355..e0f470e644297a4 100644 --- a/files/en-us/web/api/attr/prefix/index.html +++ b/files/en-us/web/api/attr/prefix/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Attr.prefix")}}

    See also

    diff --git a/files/en-us/web/api/audiobuffer/audiobuffer/index.html b/files/en-us/web/api/audiobuffer/audiobuffer/index.html index d2bb2c072b7a96c..79e719d64217290 100644 --- a/files/en-us/web/api/audiobuffer/audiobuffer/index.html +++ b/files/en-us/web/api/audiobuffer/audiobuffer/index.html @@ -78,6 +78,5 @@

    Browser Compatibility

    -

    {{Compat("api.AudioBuffer.AudioBuffer")}}

    diff --git a/files/en-us/web/api/audiobuffer/copyfromchannel/index.html b/files/en-us/web/api/audiobuffer/copyfromchannel/index.html index a1a5d0ed9e53fba..fb7159bb343f88e 100644 --- a/files/en-us/web/api/audiobuffer/copyfromchannel/index.html +++ b/files/en-us/web/api/audiobuffer/copyfromchannel/index.html @@ -83,7 +83,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBuffer.copyFromChannel")}}

    diff --git a/files/en-us/web/api/audiobuffer/copytochannel/index.html b/files/en-us/web/api/audiobuffer/copytochannel/index.html index 4138986576d71e0..60a3c8735364ffe 100644 --- a/files/en-us/web/api/audiobuffer/copytochannel/index.html +++ b/files/en-us/web/api/audiobuffer/copytochannel/index.html @@ -62,7 +62,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBuffer.copyToChannel")}}

    diff --git a/files/en-us/web/api/audiobuffer/duration/index.html b/files/en-us/web/api/audiobuffer/duration/index.html index fb236a00b78b78c..7b634c662790ced 100644 --- a/files/en-us/web/api/audiobuffer/duration/index.html +++ b/files/en-us/web/api/audiobuffer/duration/index.html @@ -72,7 +72,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBuffer.duration")}}

    diff --git a/files/en-us/web/api/audiobuffer/getchanneldata/index.html b/files/en-us/web/api/audiobuffer/getchanneldata/index.html index 2966f0387f394e7..397785b6fb735d6 100644 --- a/files/en-us/web/api/audiobuffer/getchanneldata/index.html +++ b/files/en-us/web/api/audiobuffer/getchanneldata/index.html @@ -28,7 +28,6 @@

    Return value

    A {{domxref("Float32Array")}}.

    -

    Example

    In the following example we create a two second buffer, fill it with white noise, and then play it via an {{ domxref("AudioBufferSourceNode") }}. The comments should clearly explain what is going on. You can also run the code live, or view the source.

    @@ -94,7 +93,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBuffer.getChannelData")}}

    diff --git a/files/en-us/web/api/audiobuffer/index.html b/files/en-us/web/api/audiobuffer/index.html index 258131c84d5af8c..eb4668d8ca69f10 100644 --- a/files/en-us/web/api/audiobuffer/index.html +++ b/files/en-us/web/api/audiobuffer/index.html @@ -102,7 +102,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBuffer")}}

    diff --git a/files/en-us/web/api/audiobuffer/length/index.html b/files/en-us/web/api/audiobuffer/length/index.html index 5f7c83343890816..5954fbb6e132e46 100644 --- a/files/en-us/web/api/audiobuffer/length/index.html +++ b/files/en-us/web/api/audiobuffer/length/index.html @@ -69,7 +69,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBuffer.length")}}

    diff --git a/files/en-us/web/api/audiobuffer/numberofchannels/index.html b/files/en-us/web/api/audiobuffer/numberofchannels/index.html index 120f50aec684911..5acad29f6117f8f 100644 --- a/files/en-us/web/api/audiobuffer/numberofchannels/index.html +++ b/files/en-us/web/api/audiobuffer/numberofchannels/index.html @@ -71,7 +71,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBuffer.numberOfChannels")}}

    diff --git a/files/en-us/web/api/audiobuffer/samplerate/index.html b/files/en-us/web/api/audiobuffer/samplerate/index.html index 0b97da9329036de..3a48de068cd06c8 100644 --- a/files/en-us/web/api/audiobuffer/samplerate/index.html +++ b/files/en-us/web/api/audiobuffer/samplerate/index.html @@ -71,7 +71,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBuffer.sampleRate")}}

    diff --git a/files/en-us/web/api/audiobuffersourcenode/audiobuffersourcenode/index.html b/files/en-us/web/api/audiobuffersourcenode/audiobuffersourcenode/index.html index 4aab5ac259b05c2..5fb39653887fee0 100644 --- a/files/en-us/web/api/audiobuffersourcenode/audiobuffersourcenode/index.html +++ b/files/en-us/web/api/audiobuffersourcenode/audiobuffersourcenode/index.html @@ -66,6 +66,5 @@

    Browser Compatibility

    -

    {{Compat("api.AudioBufferSourceNode.AudioBufferSourceNode")}}

    diff --git a/files/en-us/web/api/audiobuffersourcenode/buffer/index.html b/files/en-us/web/api/audiobuffersourcenode/buffer/index.html index 805695b704fa352..069cc2c18543615 100644 --- a/files/en-us/web/api/audiobuffersourcenode/buffer/index.html +++ b/files/en-us/web/api/audiobuffersourcenode/buffer/index.html @@ -77,7 +77,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBufferSourceNode.buffer")}}

    diff --git a/files/en-us/web/api/audiobuffersourcenode/detune/index.html b/files/en-us/web/api/audiobuffersourcenode/detune/index.html index adc1343c0e95e19..d4acbf4d9cdf47c 100644 --- a/files/en-us/web/api/audiobuffersourcenode/detune/index.html +++ b/files/en-us/web/api/audiobuffersourcenode/detune/index.html @@ -73,7 +73,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBufferSourceNode.detune")}}

    diff --git a/files/en-us/web/api/audiobuffersourcenode/index.html b/files/en-us/web/api/audiobuffersourcenode/index.html index aae6b1cf3c9977b..630256746fe41ff 100644 --- a/files/en-us/web/api/audiobuffersourcenode/index.html +++ b/files/en-us/web/api/audiobuffersourcenode/index.html @@ -137,7 +137,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBufferSourceNode")}}

    diff --git a/files/en-us/web/api/audiobuffersourcenode/loop/index.html b/files/en-us/web/api/audiobuffersourcenode/loop/index.html index f661f4ff35f3dd4..377df2576f4a64b 100644 --- a/files/en-us/web/api/audiobuffersourcenode/loop/index.html +++ b/files/en-us/web/api/audiobuffersourcenode/loop/index.html @@ -98,7 +98,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBufferSourceNode.loop")}}

    diff --git a/files/en-us/web/api/audiobuffersourcenode/loopend/index.html b/files/en-us/web/api/audiobuffersourcenode/loopend/index.html index ce0e8ae23b98f62..c3344617941bc29 100644 --- a/files/en-us/web/api/audiobuffersourcenode/loopend/index.html +++ b/files/en-us/web/api/audiobuffersourcenode/loopend/index.html @@ -49,7 +49,6 @@

    Example

      request.responseType = 'arraybuffer'; -   request.onload = function() {     var audioData = request.response; @@ -105,7 +104,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBufferSourceNode.loopEnd")}}

    diff --git a/files/en-us/web/api/audiobuffersourcenode/loopstart/index.html b/files/en-us/web/api/audiobuffersourcenode/loopstart/index.html index db0d91b940a02fe..93de48dd044d526 100644 --- a/files/en-us/web/api/audiobuffersourcenode/loopstart/index.html +++ b/files/en-us/web/api/audiobuffersourcenode/loopstart/index.html @@ -101,7 +101,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBufferSourceNode.loopStart")}}

    diff --git a/files/en-us/web/api/audiobuffersourcenode/playbackrate/index.html b/files/en-us/web/api/audiobuffersourcenode/playbackrate/index.html index 5f4fdefbf8bc374..c8c20c33b76a63b 100644 --- a/files/en-us/web/api/audiobuffersourcenode/playbackrate/index.html +++ b/files/en-us/web/api/audiobuffersourcenode/playbackrate/index.html @@ -113,7 +113,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBufferSourceNode.playbackRate")}}

    diff --git a/files/en-us/web/api/audiobuffersourcenode/start/index.html b/files/en-us/web/api/audiobuffersourcenode/start/index.html index 3d04891edda8042..88779cbe22a89ca 100644 --- a/files/en-us/web/api/audiobuffersourcenode/start/index.html +++ b/files/en-us/web/api/audiobuffersourcenode/start/index.html @@ -82,7 +82,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioBufferSourceNode.start")}}

    diff --git a/files/en-us/web/api/audioconfiguration/index.html b/files/en-us/web/api/audioconfiguration/index.html index e0141f9672f6a5c..61ede51a1afbdab 100644 --- a/files/en-us/web/api/audioconfiguration/index.html +++ b/files/en-us/web/api/audioconfiguration/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioConfiguration")}}

    See also

    diff --git a/files/en-us/web/api/audiocontext/audiocontext/index.html b/files/en-us/web/api/audiocontext/audiocontext/index.html index fe775be2362e3e7..b96a46ce981685b 100644 --- a/files/en-us/web/api/audiocontext/audiocontext/index.html +++ b/files/en-us/web/api/audiocontext/audiocontext/index.html @@ -91,7 +91,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioContext.AudioContext")}}

    diff --git a/files/en-us/web/api/audiocontext/baselatency/index.html b/files/en-us/web/api/audiocontext/baselatency/index.html index 38931790df30df8..bf92ac828740b26 100644 --- a/files/en-us/web/api/audiocontext/baselatency/index.html +++ b/files/en-us/web/api/audiocontext/baselatency/index.html @@ -58,7 +58,6 @@

    Browser Compatibility

    -

    {{Compat("api.AudioContext.baseLatency")}}

    See also

    diff --git a/files/en-us/web/api/audiocontext/close/index.html b/files/en-us/web/api/audiocontext/close/index.html index 4260eed3d9ed6d7..0c967b67f838d9c 100644 --- a/files/en-us/web/api/audiocontext/close/index.html +++ b/files/en-us/web/api/audiocontext/close/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioContext.close")}}

    diff --git a/files/en-us/web/api/audiocontext/createmediaelementsource/index.html b/files/en-us/web/api/audiocontext/createmediaelementsource/index.html index 9fda182c08672a1..bef1294f5eeed23 100644 --- a/files/en-us/web/api/audiocontext/createmediaelementsource/index.html +++ b/files/en-us/web/api/audiocontext/createmediaelementsource/index.html @@ -72,7 +72,6 @@

    Example

    gainNode.gain.value = CurY/HEIGHT; } - // connect the AudioBufferSourceNode to the gainNode // and the gainNode to the destination, so we can play the // music and adjust the volume using the mouse cursor @@ -104,7 +103,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioContext.createMediaElementSource")}}

    diff --git a/files/en-us/web/api/audiocontext/createmediastreamdestination/index.html b/files/en-us/web/api/audiocontext/createmediastreamdestination/index.html index d8ef70012583e56..51693c2f89b0947 100644 --- a/files/en-us/web/api/audiocontext/createmediastreamdestination/index.html +++ b/files/en-us/web/api/audiocontext/createmediastreamdestination/index.html @@ -110,7 +110,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioContext.createMediaStreamDestination")}}

    diff --git a/files/en-us/web/api/audiocontext/createmediastreamsource/index.html b/files/en-us/web/api/audiocontext/createmediastreamsource/index.html index 84cd6fa9c5778c9..d8b5500ae375d73 100644 --- a/files/en-us/web/api/audiocontext/createmediastreamsource/index.html +++ b/files/en-us/web/api/audiocontext/createmediastreamsource/index.html @@ -128,7 +128,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioContext.createMediaStreamSource")}}

    diff --git a/files/en-us/web/api/audiocontext/createmediastreamtracksource/index.html b/files/en-us/web/api/audiocontext/createmediastreamtracksource/index.html index 9b3bc4d7e5fe73e..d0f59af28611f72 100644 --- a/files/en-us/web/api/audiocontext/createmediastreamtracksource/index.html +++ b/files/en-us/web/api/audiocontext/createmediastreamtracksource/index.html @@ -90,7 +90,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioContext.createMediaStreamTrackSource")}}

    diff --git a/files/en-us/web/api/audiocontext/getoutputtimestamp/index.html b/files/en-us/web/api/audiocontext/getoutputtimestamp/index.html index f790fc220351354..7b0c0b2714f5498 100644 --- a/files/en-us/web/api/audiocontext/getoutputtimestamp/index.html +++ b/files/en-us/web/api/audiocontext/getoutputtimestamp/index.html @@ -92,6 +92,5 @@

    Browser Compatibility

    -

    {{Compat("api.AudioContext.getOutputTimestamp")}}

    diff --git a/files/en-us/web/api/audiocontext/index.html b/files/en-us/web/api/audiocontext/index.html index 25f1946a86f97f5..579ea0b62198264 100644 --- a/files/en-us/web/api/audiocontext/index.html +++ b/files/en-us/web/api/audiocontext/index.html @@ -94,7 +94,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioContext")}}

    diff --git a/files/en-us/web/api/audiocontext/outputlatency/index.html b/files/en-us/web/api/audiocontext/outputlatency/index.html index 76690671465351a..0cd09b86e37ecd8 100644 --- a/files/en-us/web/api/audiocontext/outputlatency/index.html +++ b/files/en-us/web/api/audiocontext/outputlatency/index.html @@ -53,7 +53,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioContext.outputLatency")}}

    diff --git a/files/en-us/web/api/audiocontext/resume/index.html b/files/en-us/web/api/audiocontext/resume/index.html index d102368296ae831..49d1d8074b83027 100644 --- a/files/en-us/web/api/audiocontext/resume/index.html +++ b/files/en-us/web/api/audiocontext/resume/index.html @@ -68,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioContext.resume")}}

    diff --git a/files/en-us/web/api/audiocontext/suspend/index.html b/files/en-us/web/api/audiocontext/suspend/index.html index 968d95b0b8ce9af..babb2beceb30a10 100644 --- a/files/en-us/web/api/audiocontext/suspend/index.html +++ b/files/en-us/web/api/audiocontext/suspend/index.html @@ -64,7 +64,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioContext.suspend")}}

    diff --git a/files/en-us/web/api/audiocontextlatencycategory/index.html b/files/en-us/web/api/audiocontextlatencycategory/index.html index db6dbd75cd972da..81e1535eaa5d7d7 100644 --- a/files/en-us/web/api/audiocontextlatencycategory/index.html +++ b/files/en-us/web/api/audiocontextlatencycategory/index.html @@ -67,8 +67,6 @@

    Browser compatibility

    Showing compatibility for latencyHint.

    - -

    {{Compat("api.AudioContextOptions.latencyHint")}}

     

    diff --git a/files/en-us/web/api/audiocontextoptions/index.html b/files/en-us/web/api/audiocontextoptions/index.html index 7a97ecb4fcdc58d..1772c01c430c8d7 100644 --- a/files/en-us/web/api/audiocontextoptions/index.html +++ b/files/en-us/web/api/audiocontextoptions/index.html @@ -65,6 +65,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioContextOptions")}}

    diff --git a/files/en-us/web/api/audiocontextoptions/latencyhint/index.html b/files/en-us/web/api/audiocontextoptions/latencyhint/index.html index 9c3116b6d8718fe..71f0748b8250595 100644 --- a/files/en-us/web/api/audiocontextoptions/latencyhint/index.html +++ b/files/en-us/web/api/audiocontextoptions/latencyhint/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioContextOptions.latencyHint")}}

    See also

    diff --git a/files/en-us/web/api/audiocontextoptions/samplerate/index.html b/files/en-us/web/api/audiocontextoptions/samplerate/index.html index 095c9ccea1aea8d..1ec6bbb9548f0c8 100644 --- a/files/en-us/web/api/audiocontextoptions/samplerate/index.html +++ b/files/en-us/web/api/audiocontextoptions/samplerate/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioContextOptions.sampleRate")}}

    See also

    diff --git a/files/en-us/web/api/audiodestinationnode/index.html b/files/en-us/web/api/audiodestinationnode/index.html index f4f5f49dd91756c..10add214a3b50b1 100644 --- a/files/en-us/web/api/audiodestinationnode/index.html +++ b/files/en-us/web/api/audiodestinationnode/index.html @@ -86,7 +86,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioDestinationNode")}}

    diff --git a/files/en-us/web/api/audiodestinationnode/maxchannelcount/index.html b/files/en-us/web/api/audiodestinationnode/maxchannelcount/index.html index d78c508f9fe8db8..435e766fa8cec8b 100644 --- a/files/en-us/web/api/audiodestinationnode/maxchannelcount/index.html +++ b/files/en-us/web/api/audiodestinationnode/maxchannelcount/index.html @@ -62,7 +62,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioDestinationNode.maxChannelCount")}}

    diff --git a/files/en-us/web/api/audiolistener/dopplerfactor/index.html b/files/en-us/web/api/audiolistener/dopplerfactor/index.html index 2bc3f65f03b091f..ce73fde1dc0b097 100644 --- a/files/en-us/web/api/audiolistener/dopplerfactor/index.html +++ b/files/en-us/web/api/audiolistener/dopplerfactor/index.html @@ -39,7 +39,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener.dopplerFactor")}}

    diff --git a/files/en-us/web/api/audiolistener/forwardx/index.html b/files/en-us/web/api/audiolistener/forwardx/index.html index 968268fcc4d99d4..92d3142b2a39142 100644 --- a/files/en-us/web/api/audiolistener/forwardx/index.html +++ b/files/en-us/web/api/audiolistener/forwardx/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener.forwardX")}}

    diff --git a/files/en-us/web/api/audiolistener/forwardy/index.html b/files/en-us/web/api/audiolistener/forwardy/index.html index 53ea951e52f0ca2..fd4f4624e28063a 100644 --- a/files/en-us/web/api/audiolistener/forwardy/index.html +++ b/files/en-us/web/api/audiolistener/forwardy/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener.forwardY")}}

    diff --git a/files/en-us/web/api/audiolistener/forwardz/index.html b/files/en-us/web/api/audiolistener/forwardz/index.html index b9dbee8417d77f1..e76dfb452088900 100644 --- a/files/en-us/web/api/audiolistener/forwardz/index.html +++ b/files/en-us/web/api/audiolistener/forwardz/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioListener.forwardZ")}}

    See also

    diff --git a/files/en-us/web/api/audiolistener/index.html b/files/en-us/web/api/audiolistener/index.html index 88be81f18b16697..b56042e68dedf47 100644 --- a/files/en-us/web/api/audiolistener/index.html +++ b/files/en-us/web/api/audiolistener/index.html @@ -78,7 +78,6 @@

    Deprecated features

    The setOrientation() and setPosition() methods have been replaced by setting their property value equivilents. For example setPosition(x, y, z) can be achieved by setting positionX.value, positionY.value, and positionZ.value respectively.

    -

    Example

    {{page("/en-US/docs/Web/API/AudioContext.createPanner","Example")}}

    @@ -104,7 +103,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener")}}

    diff --git a/files/en-us/web/api/audiolistener/positionx/index.html b/files/en-us/web/api/audiolistener/positionx/index.html index d36e30408db271b..8787344f890336e 100644 --- a/files/en-us/web/api/audiolistener/positionx/index.html +++ b/files/en-us/web/api/audiolistener/positionx/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener.positionX")}}

    diff --git a/files/en-us/web/api/audiolistener/positiony/index.html b/files/en-us/web/api/audiolistener/positiony/index.html index dcb8cf49a8cdb9e..edc8496253634dc 100644 --- a/files/en-us/web/api/audiolistener/positiony/index.html +++ b/files/en-us/web/api/audiolistener/positiony/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener.positionY")}}

    diff --git a/files/en-us/web/api/audiolistener/positionz/index.html b/files/en-us/web/api/audiolistener/positionz/index.html index f65e47abcb336c7..b22915c170dde9a 100644 --- a/files/en-us/web/api/audiolistener/positionz/index.html +++ b/files/en-us/web/api/audiolistener/positionz/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener.positionZ")}}

    diff --git a/files/en-us/web/api/audiolistener/setorientation/index.html b/files/en-us/web/api/audiolistener/setorientation/index.html index 3aacb118ea903e6..98c0c5bd1ed2e9a 100644 --- a/files/en-us/web/api/audiolistener/setorientation/index.html +++ b/files/en-us/web/api/audiolistener/setorientation/index.html @@ -60,7 +60,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener.setOrientation")}}

    diff --git a/files/en-us/web/api/audiolistener/setposition/index.html b/files/en-us/web/api/audiolistener/setposition/index.html index 89142723fa1044d..bb0135169c580c3 100644 --- a/files/en-us/web/api/audiolistener/setposition/index.html +++ b/files/en-us/web/api/audiolistener/setposition/index.html @@ -67,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener.setPosition")}}

    diff --git a/files/en-us/web/api/audiolistener/speedofsound/index.html b/files/en-us/web/api/audiolistener/speedofsound/index.html index 199ad3663ad7d98..34e5469471b2c34 100644 --- a/files/en-us/web/api/audiolistener/speedofsound/index.html +++ b/files/en-us/web/api/audiolistener/speedofsound/index.html @@ -39,7 +39,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener.speedOfSound")}}

    diff --git a/files/en-us/web/api/audiolistener/upx/index.html b/files/en-us/web/api/audiolistener/upx/index.html index f730373ea407d21..c88545c9dc2ebb0 100644 --- a/files/en-us/web/api/audiolistener/upx/index.html +++ b/files/en-us/web/api/audiolistener/upx/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener.upX")}}

    diff --git a/files/en-us/web/api/audiolistener/upy/index.html b/files/en-us/web/api/audiolistener/upy/index.html index 4f006604d331379..b6ec7e255d4f26b 100644 --- a/files/en-us/web/api/audiolistener/upy/index.html +++ b/files/en-us/web/api/audiolistener/upy/index.html @@ -53,7 +53,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener.upY")}}

    diff --git a/files/en-us/web/api/audiolistener/upz/index.html b/files/en-us/web/api/audiolistener/upz/index.html index 3c13974360725ff..a12a90c3fd961a0 100644 --- a/files/en-us/web/api/audiolistener/upz/index.html +++ b/files/en-us/web/api/audiolistener/upz/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioListener.upZ")}}

    diff --git a/files/en-us/web/api/audionode/channelcount/index.html b/files/en-us/web/api/audionode/channelcount/index.html index 80e1e8134f68d3c..7e4c3fe7a82e5c9 100644 --- a/files/en-us/web/api/audionode/channelcount/index.html +++ b/files/en-us/web/api/audionode/channelcount/index.html @@ -66,7 +66,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioNode.channelCount")}}

    diff --git a/files/en-us/web/api/audionode/channelcountmode/index.html b/files/en-us/web/api/audionode/channelcountmode/index.html index e192620804ad7c7..6d76297bae38e82 100644 --- a/files/en-us/web/api/audionode/channelcountmode/index.html +++ b/files/en-us/web/api/audionode/channelcountmode/index.html @@ -91,7 +91,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioNode.channelCountMode")}}

    diff --git a/files/en-us/web/api/audionode/channelinterpretation/index.html b/files/en-us/web/api/audionode/channelinterpretation/index.html index ea5bed46245ff14..fb8b8c43f62d741 100644 --- a/files/en-us/web/api/audionode/channelinterpretation/index.html +++ b/files/en-us/web/api/audionode/channelinterpretation/index.html @@ -64,7 +64,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioNode.channelInterpretation")}}

    diff --git a/files/en-us/web/api/audionode/connect/index.html b/files/en-us/web/api/audionode/connect/index.html index ecc598e9720ea82..802be4ce6ee63f8 100644 --- a/files/en-us/web/api/audionode/connect/index.html +++ b/files/en-us/web/api/audionode/connect/index.html @@ -142,7 +142,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioNode.connect")}}

    diff --git a/files/en-us/web/api/audionode/context/index.html b/files/en-us/web/api/audionode/context/index.html index ed14c12c789c694..ba969a34a23c836 100644 --- a/files/en-us/web/api/audionode/context/index.html +++ b/files/en-us/web/api/audionode/context/index.html @@ -55,7 +55,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioNode.context")}}

    diff --git a/files/en-us/web/api/audionode/disconnect/index.html b/files/en-us/web/api/audionode/disconnect/index.html index b7a18d5d2654b0d..077e7a385ba69d2 100644 --- a/files/en-us/web/api/audionode/disconnect/index.html +++ b/files/en-us/web/api/audionode/disconnect/index.html @@ -91,7 +91,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioNode.disconnect")}}

    diff --git a/files/en-us/web/api/audionode/index.html b/files/en-us/web/api/audionode/index.html index e01e6622d22708a..14d6bac0ecc4b0c 100644 --- a/files/en-us/web/api/audionode/index.html +++ b/files/en-us/web/api/audionode/index.html @@ -150,7 +150,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioNode")}}

    diff --git a/files/en-us/web/api/audionode/numberofinputs/index.html b/files/en-us/web/api/audionode/numberofinputs/index.html index 9e1cc0735dc07f6..71b50faf32f8ff1 100644 --- a/files/en-us/web/api/audionode/numberofinputs/index.html +++ b/files/en-us/web/api/audionode/numberofinputs/index.html @@ -56,7 +56,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioNode.numberOfInputs")}}

    diff --git a/files/en-us/web/api/audionode/numberofoutputs/index.html b/files/en-us/web/api/audionode/numberofoutputs/index.html index cd03d6b700dd0ef..a8870d00132469c 100644 --- a/files/en-us/web/api/audionode/numberofoutputs/index.html +++ b/files/en-us/web/api/audionode/numberofoutputs/index.html @@ -56,7 +56,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioNode.numberOfOutputs")}}

    diff --git a/files/en-us/web/api/audionodeoptions/index.html b/files/en-us/web/api/audionodeoptions/index.html index e77045fbe40f396..77df8bb1130f415 100644 --- a/files/en-us/web/api/audionodeoptions/index.html +++ b/files/en-us/web/api/audionodeoptions/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioNodeOptions")}}

    diff --git a/files/en-us/web/api/audioparam/cancelandholdattime/index.html b/files/en-us/web/api/audioparam/cancelandholdattime/index.html index 8d6ab25dd0dac23..abb2f5f5b65c9e5 100644 --- a/files/en-us/web/api/audioparam/cancelandholdattime/index.html +++ b/files/en-us/web/api/audioparam/cancelandholdattime/index.html @@ -52,6 +52,5 @@

    Browser Compatibility

    -

    {{Compat("api.AudioParam.cancelAndHoldAtTime")}}

    diff --git a/files/en-us/web/api/audioparam/cancelscheduledvalues/index.html b/files/en-us/web/api/audioparam/cancelscheduledvalues/index.html index 5218eeaeb2a5316..4c47c8198e4164a 100644 --- a/files/en-us/web/api/audioparam/cancelscheduledvalues/index.html +++ b/files/en-us/web/api/audioparam/cancelscheduledvalues/index.html @@ -39,7 +39,6 @@

    Examples

    Specifications

    -
    @@ -59,7 +58,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioParam.cancelScheduledValues")}}

    diff --git a/files/en-us/web/api/audioparam/defaultvalue/index.html b/files/en-us/web/api/audioparam/defaultvalue/index.html index a120029be6630e6..88dffab0deac73b 100644 --- a/files/en-us/web/api/audioparam/defaultvalue/index.html +++ b/files/en-us/web/api/audioparam/defaultvalue/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioParam.defaultValue")}}

    diff --git a/files/en-us/web/api/audioparam/exponentialramptovalueattime/index.html b/files/en-us/web/api/audioparam/exponentialramptovalueattime/index.html index de5a231033f0af9..ddb568f10309345 100644 --- a/files/en-us/web/api/audioparam/exponentialramptovalueattime/index.html +++ b/files/en-us/web/api/audioparam/exponentialramptovalueattime/index.html @@ -83,7 +83,6 @@

    Examples

    Specifications

    -
    @@ -103,7 +102,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioParam.exponentialRampToValueAtTime")}}

    diff --git a/files/en-us/web/api/audioparam/index.html b/files/en-us/web/api/audioparam/index.html index 4c7a3dd9d20be9d..e101025bc6f60fe 100644 --- a/files/en-us/web/api/audioparam/index.html +++ b/files/en-us/web/api/audioparam/index.html @@ -98,7 +98,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioParam")}}

    diff --git a/files/en-us/web/api/audioparam/linearramptovalueattime/index.html b/files/en-us/web/api/audioparam/linearramptovalueattime/index.html index 18c4f440894dca3..2386ba86cd555b4 100644 --- a/files/en-us/web/api/audioparam/linearramptovalueattime/index.html +++ b/files/en-us/web/api/audioparam/linearramptovalueattime/index.html @@ -35,7 +35,6 @@

    Returns

    Example

    -

    In this example, we have a media source with two control buttons (see the audio-param repo for the source code, or view the example live.) When these buttons are pressed, linearRampToValueAtTime() is used to fade the gain value up to 1.0, and down to 0, respectively. This is pretty useful for fade in/fade out effects, although {{ domxref("AudioParam.exponentialRampToValueAtTime()") }} is often said to be a bit more natural.

    // create audio context
    @@ -77,7 +76,6 @@ 

    Example

    Specifications

    -
    @@ -97,7 +95,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioParam.linearRampToValueAtTime")}}

    diff --git a/files/en-us/web/api/audioparam/maxvalue/index.html b/files/en-us/web/api/audioparam/maxvalue/index.html index 37e1c94d957cb9e..747abe3d9bac6a8 100644 --- a/files/en-us/web/api/audioparam/maxvalue/index.html +++ b/files/en-us/web/api/audioparam/maxvalue/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioParam.maxValue")}}

    See also

    diff --git a/files/en-us/web/api/audioparam/minvalue/index.html b/files/en-us/web/api/audioparam/minvalue/index.html index 97bf09065a7c86f..e75ba4f92df7dab 100644 --- a/files/en-us/web/api/audioparam/minvalue/index.html +++ b/files/en-us/web/api/audioparam/minvalue/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioParam.minValue")}}

    See also

    diff --git a/files/en-us/web/api/audioparam/settargetattime/index.html b/files/en-us/web/api/audioparam/settargetattime/index.html index 1892c151cce5ad3..0a880ff3ce38757 100644 --- a/files/en-us/web/api/audioparam/settargetattime/index.html +++ b/files/en-us/web/api/audioparam/settargetattime/index.html @@ -134,7 +134,6 @@

    Examples

    Specifications

    -
    @@ -154,7 +153,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioParam.setTargetAtTime")}}

    diff --git a/files/en-us/web/api/audioparam/setvalueattime/index.html b/files/en-us/web/api/audioparam/setvalueattime/index.html index 5a409907451e939..0941294f6092ff7 100644 --- a/files/en-us/web/api/audioparam/setvalueattime/index.html +++ b/files/en-us/web/api/audioparam/setvalueattime/index.html @@ -92,8 +92,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioParam.setValueAtTime")}}

    See also

    diff --git a/files/en-us/web/api/audioparam/setvaluecurveattime/index.html b/files/en-us/web/api/audioparam/setvaluecurveattime/index.html index 4f58ca1709f6d60..1a1db8e22e03bf1 100644 --- a/files/en-us/web/api/audioparam/setvaluecurveattime/index.html +++ b/files/en-us/web/api/audioparam/setvaluecurveattime/index.html @@ -104,7 +104,6 @@

    Examples

    Specifications

    -
    @@ -122,8 +121,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioParam.setValueCurveAtTime")}}

    Versions before Chrome 46 use nearest neighbor instead of linear interpolation.

    diff --git a/files/en-us/web/api/audioparam/value/index.html b/files/en-us/web/api/audioparam/value/index.html index 4d48f27f6da4dea..2d50b78a341ea02 100644 --- a/files/en-us/web/api/audioparam/value/index.html +++ b/files/en-us/web/api/audioparam/value/index.html @@ -94,8 +94,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioParam.value")}}

    When changing the gain value of a {{domxref("GainNode")}}, Google Chrome prior to version 64 (January 2018) would perform a smooth interpolation to prevent dezippering. Starting with version 64, the value is changed instantly to bring it in line with the Web Audio spec. See Chrome Platform Status for details.

    diff --git a/files/en-us/web/api/audioparamdescriptor/index.html b/files/en-us/web/api/audioparamdescriptor/index.html index 81e0d697dd7e998..5eef33af9791a57 100644 --- a/files/en-us/web/api/audioparamdescriptor/index.html +++ b/files/en-us/web/api/audioparamdescriptor/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioParamDescriptor")}}

    diff --git a/files/en-us/web/api/audioparammap/index.html b/files/en-us/web/api/audioparammap/index.html index c04a0f3ff398ef0..1e2122213b92f7c 100644 --- a/files/en-us/web/api/audioparammap/index.html +++ b/files/en-us/web/api/audioparammap/index.html @@ -35,6 +35,4 @@

    Methods

    Browser compatibility

    - -

    {{Compat("api.AudioParamMap")}}

    diff --git a/files/en-us/web/api/audioprocessingevent/index.html b/files/en-us/web/api/audioprocessingevent/index.html index 311f13089bc6327..ff73429be16da85 100644 --- a/files/en-us/web/api/audioprocessingevent/index.html +++ b/files/en-us/web/api/audioprocessingevent/index.html @@ -79,7 +79,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioProcessingEvent")}}

    diff --git a/files/en-us/web/api/audioscheduledsourcenode/ended_event/index.html b/files/en-us/web/api/audioscheduledsourcenode/ended_event/index.html index 0ecb63d0d17b6e8..de58d20bb4d4deb 100644 --- a/files/en-us/web/api/audioscheduledsourcenode/ended_event/index.html +++ b/files/en-us/web/api/audioscheduledsourcenode/ended_event/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioScheduledSourceNode.ended_event")}}

    diff --git a/files/en-us/web/api/audioscheduledsourcenode/index.html b/files/en-us/web/api/audioscheduledsourcenode/index.html index abaebadce301c23..4e4d14ad060193b 100644 --- a/files/en-us/web/api/audioscheduledsourcenode/index.html +++ b/files/en-us/web/api/audioscheduledsourcenode/index.html @@ -67,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioScheduledSourceNode")}}

    diff --git a/files/en-us/web/api/audioscheduledsourcenode/onended/index.html b/files/en-us/web/api/audioscheduledsourcenode/onended/index.html index 38be2e605b1a9a0..220ea28244d7ab5 100644 --- a/files/en-us/web/api/audioscheduledsourcenode/onended/index.html +++ b/files/en-us/web/api/audioscheduledsourcenode/onended/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioScheduledSourceNode.onended")}}

    See also

    diff --git a/files/en-us/web/api/audioscheduledsourcenode/start/index.html b/files/en-us/web/api/audioscheduledsourcenode/start/index.html index 9381ed99e5d8259..458b14f5f550e76 100644 --- a/files/en-us/web/api/audioscheduledsourcenode/start/index.html +++ b/files/en-us/web/api/audioscheduledsourcenode/start/index.html @@ -82,7 +82,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioScheduledSourceNode.start")}}

    diff --git a/files/en-us/web/api/audioscheduledsourcenode/stop/index.html b/files/en-us/web/api/audioscheduledsourcenode/stop/index.html index bf121f592952435..3fed2b181c1c678 100644 --- a/files/en-us/web/api/audioscheduledsourcenode/stop/index.html +++ b/files/en-us/web/api/audioscheduledsourcenode/stop/index.html @@ -81,7 +81,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioScheduledSourceNode.stop")}}

    diff --git a/files/en-us/web/api/audiotrack/enabled/index.html b/files/en-us/web/api/audiotrack/enabled/index.html index 42a67c7c02d0392..f0a542bea7fb3ca 100644 --- a/files/en-us/web/api/audiotrack/enabled/index.html +++ b/files/en-us/web/api/audiotrack/enabled/index.html @@ -90,6 +90,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrack.enabled")}}

    diff --git a/files/en-us/web/api/audiotrack/id/index.html b/files/en-us/web/api/audiotrack/id/index.html index c0520e0f5f782b2..74b2a5175fd30fc 100644 --- a/files/en-us/web/api/audiotrack/id/index.html +++ b/files/en-us/web/api/audiotrack/id/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrack.id")}}

     

    diff --git a/files/en-us/web/api/audiotrack/index.html b/files/en-us/web/api/audiotrack/index.html index 44d6e2dd261b124..aeeef9c6960cace 100644 --- a/files/en-us/web/api/audiotrack/index.html +++ b/files/en-us/web/api/audiotrack/index.html @@ -89,6 +89,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrack")}}

    diff --git a/files/en-us/web/api/audiotrack/kind/index.html b/files/en-us/web/api/audiotrack/kind/index.html index def1ad61479d568..295361be2e884be 100644 --- a/files/en-us/web/api/audiotrack/kind/index.html +++ b/files/en-us/web/api/audiotrack/kind/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrack.kind")}}

     

    diff --git a/files/en-us/web/api/audiotrack/label/index.html b/files/en-us/web/api/audiotrack/label/index.html index f6ddada2729398a..a9342373297f034 100644 --- a/files/en-us/web/api/audiotrack/label/index.html +++ b/files/en-us/web/api/audiotrack/label/index.html @@ -79,6 +79,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrack.label")}}

    diff --git a/files/en-us/web/api/audiotrack/language/index.html b/files/en-us/web/api/audiotrack/language/index.html index b0ed540d0654adf..333f8e0508c8389 100644 --- a/files/en-us/web/api/audiotrack/language/index.html +++ b/files/en-us/web/api/audiotrack/language/index.html @@ -81,7 +81,5 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrack.language")}}

    diff --git a/files/en-us/web/api/audiotrack/sourcebuffer/index.html b/files/en-us/web/api/audiotrack/sourcebuffer/index.html index 8d4c7e16de6045d..20ee6fecaab091f 100644 --- a/files/en-us/web/api/audiotrack/sourcebuffer/index.html +++ b/files/en-us/web/api/audiotrack/sourcebuffer/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrack.sourceBuffer")}}

    diff --git a/files/en-us/web/api/audiotracklist/addtrack_event/index.html b/files/en-us/web/api/audiotracklist/addtrack_event/index.html index bb92c5156b26e18..d3b0838313a8e02 100644 --- a/files/en-us/web/api/audiotracklist/addtrack_event/index.html +++ b/files/en-us/web/api/audiotracklist/addtrack_event/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrackList.addtrack_event")}}

    See also

    diff --git a/files/en-us/web/api/audiotracklist/change_event/index.html b/files/en-us/web/api/audiotracklist/change_event/index.html index 163572c7391a7b9..cd8114991202470 100644 --- a/files/en-us/web/api/audiotracklist/change_event/index.html +++ b/files/en-us/web/api/audiotracklist/change_event/index.html @@ -83,8 +83,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrackList.change_event")}}

    See also

    diff --git a/files/en-us/web/api/audiotracklist/gettrackbyid/index.html b/files/en-us/web/api/audiotracklist/gettrackbyid/index.html index 9064443932f67db..64d7dcb64d65fec 100644 --- a/files/en-us/web/api/audiotracklist/gettrackbyid/index.html +++ b/files/en-us/web/api/audiotracklist/gettrackbyid/index.html @@ -74,6 +74,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrackList.getTrackById")}}

    diff --git a/files/en-us/web/api/audiotracklist/index.html b/files/en-us/web/api/audiotracklist/index.html index 24808698669d0ca..060d0e4d416af3b 100644 --- a/files/en-us/web/api/audiotracklist/index.html +++ b/files/en-us/web/api/audiotracklist/index.html @@ -113,6 +113,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrackList")}}

    diff --git a/files/en-us/web/api/audiotracklist/length/index.html b/files/en-us/web/api/audiotracklist/length/index.html index 11af37a0ad092ee..c6bd82d79366f29 100644 --- a/files/en-us/web/api/audiotracklist/length/index.html +++ b/files/en-us/web/api/audiotracklist/length/index.html @@ -66,6 +66,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrackList.length")}}

    diff --git a/files/en-us/web/api/audiotracklist/onaddtrack/index.html b/files/en-us/web/api/audiotracklist/onaddtrack/index.html index 90552906b99c50d..f8767b512ad1e8c 100644 --- a/files/en-us/web/api/audiotracklist/onaddtrack/index.html +++ b/files/en-us/web/api/audiotracklist/onaddtrack/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrackList.onaddtrack")}}

     

    diff --git a/files/en-us/web/api/audiotracklist/onchange/index.html b/files/en-us/web/api/audiotracklist/onchange/index.html index bcf94df9cc2ad1b..20aca9485cf3823 100644 --- a/files/en-us/web/api/audiotracklist/onchange/index.html +++ b/files/en-us/web/api/audiotracklist/onchange/index.html @@ -75,6 +75,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrackList.onchange")}}

    diff --git a/files/en-us/web/api/audiotracklist/onremovetrack/index.html b/files/en-us/web/api/audiotracklist/onremovetrack/index.html index d5d8a06cc866fa7..25c71fdb10a5ac5 100644 --- a/files/en-us/web/api/audiotracklist/onremovetrack/index.html +++ b/files/en-us/web/api/audiotracklist/onremovetrack/index.html @@ -72,6 +72,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrackList.onremovetrack")}}

    diff --git a/files/en-us/web/api/audiotracklist/removetrack_event/index.html b/files/en-us/web/api/audiotracklist/removetrack_event/index.html index 471a17e1788b8b9..44241a0f7b3c809 100644 --- a/files/en-us/web/api/audiotracklist/removetrack_event/index.html +++ b/files/en-us/web/api/audiotracklist/removetrack_event/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioTrackList.removetrack_event")}}

    See also

    diff --git a/files/en-us/web/api/audioworklet/index.html b/files/en-us/web/api/audioworklet/index.html index 445714e454da628..cded93545cfe354 100644 --- a/files/en-us/web/api/audioworklet/index.html +++ b/files/en-us/web/api/audioworklet/index.html @@ -59,7 +59,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioWorklet")}}

    diff --git a/files/en-us/web/api/audioworkletglobalscope/index.html b/files/en-us/web/api/audioworkletglobalscope/index.html index 6aef52c0f660f77..0cc6034cb78c659 100644 --- a/files/en-us/web/api/audioworkletglobalscope/index.html +++ b/files/en-us/web/api/audioworkletglobalscope/index.html @@ -103,7 +103,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioWorkletGlobalScope")}}

    diff --git a/files/en-us/web/api/audioworkletglobalscope/registerprocessor/index.html b/files/en-us/web/api/audioworkletglobalscope/registerprocessor/index.html index 4323e9a991d10d1..681942d3fd69215 100644 --- a/files/en-us/web/api/audioworkletglobalscope/registerprocessor/index.html +++ b/files/en-us/web/api/audioworkletglobalscope/registerprocessor/index.html @@ -100,7 +100,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioWorkletGlobalScope.registerProcessor")}}

    diff --git a/files/en-us/web/api/audioworkletnode/audioworkletnode/index.html b/files/en-us/web/api/audioworkletnode/audioworkletnode/index.html index ba5562b27817227..8e24c2e8096c154 100644 --- a/files/en-us/web/api/audioworkletnode/audioworkletnode/index.html +++ b/files/en-us/web/api/audioworkletnode/audioworkletnode/index.html @@ -67,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioWorkletNode.AudioWorkletNode")}}

    diff --git a/files/en-us/web/api/audioworkletnode/index.html b/files/en-us/web/api/audioworkletnode/index.html index 0ad3fcddb279fd4..ac42eed16cf9b85 100644 --- a/files/en-us/web/api/audioworkletnode/index.html +++ b/files/en-us/web/api/audioworkletnode/index.html @@ -98,7 +98,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioWorkletNode")}}

    diff --git a/files/en-us/web/api/audioworkletnode/onprocessorerror/index.html b/files/en-us/web/api/audioworkletnode/onprocessorerror/index.html index 7ffa01b7f3f5e71..57e14e9a7e036b4 100644 --- a/files/en-us/web/api/audioworkletnode/onprocessorerror/index.html +++ b/files/en-us/web/api/audioworkletnode/onprocessorerror/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioWorkletNode.onprocessorerror")}}

    See also

    diff --git a/files/en-us/web/api/audioworkletnode/parameters/index.html b/files/en-us/web/api/audioworkletnode/parameters/index.html index ad055a11ede5357..17057432afcee40 100644 --- a/files/en-us/web/api/audioworkletnode/parameters/index.html +++ b/files/en-us/web/api/audioworkletnode/parameters/index.html @@ -96,7 +96,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioWorkletNode.parameters")}}

    diff --git a/files/en-us/web/api/audioworkletnode/port/index.html b/files/en-us/web/api/audioworkletnode/port/index.html index 8e1512d3b1671b4..eb4d8ce14f55c06 100644 --- a/files/en-us/web/api/audioworkletnode/port/index.html +++ b/files/en-us/web/api/audioworkletnode/port/index.html @@ -83,7 +83,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioWorkletNode.port")}}

    diff --git a/files/en-us/web/api/audioworkletnodeoptions/index.html b/files/en-us/web/api/audioworkletnodeoptions/index.html index 15f51fdd44dc0b9..255f7d8e9cffbdb 100644 --- a/files/en-us/web/api/audioworkletnodeoptions/index.html +++ b/files/en-us/web/api/audioworkletnodeoptions/index.html @@ -62,6 +62,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AudioWorkletNodeOptions")}}

    diff --git a/files/en-us/web/api/audioworkletprocessor/audioworkletprocessor/index.html b/files/en-us/web/api/audioworkletprocessor/audioworkletprocessor/index.html index dfd19e49429089f..e9c5888e46a413b 100644 --- a/files/en-us/web/api/audioworkletprocessor/audioworkletprocessor/index.html +++ b/files/en-us/web/api/audioworkletprocessor/audioworkletprocessor/index.html @@ -93,7 +93,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioWorkletProcessor.AudioWorkletProcessor")}}

    diff --git a/files/en-us/web/api/audioworkletprocessor/index.html b/files/en-us/web/api/audioworkletprocessor/index.html index 0167bdd217325f4..ce3bb00c299a1bb 100644 --- a/files/en-us/web/api/audioworkletprocessor/index.html +++ b/files/en-us/web/api/audioworkletprocessor/index.html @@ -117,7 +117,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioWorkletProcessor")}}

    diff --git a/files/en-us/web/api/audioworkletprocessor/parameterdescriptors/index.html b/files/en-us/web/api/audioworkletprocessor/parameterdescriptors/index.html index 050167a48997037..cd64b82fb03996f 100644 --- a/files/en-us/web/api/audioworkletprocessor/parameterdescriptors/index.html +++ b/files/en-us/web/api/audioworkletprocessor/parameterdescriptors/index.html @@ -50,7 +50,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioWorkletProcessor.parameterDescriptors")}}

    diff --git a/files/en-us/web/api/audioworkletprocessor/port/index.html b/files/en-us/web/api/audioworkletprocessor/port/index.html index 920583ad8b1a55e..51859551285ef0e 100644 --- a/files/en-us/web/api/audioworkletprocessor/port/index.html +++ b/files/en-us/web/api/audioworkletprocessor/port/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioWorkletProcessor.port")}}

    diff --git a/files/en-us/web/api/audioworkletprocessor/process/index.html b/files/en-us/web/api/audioworkletprocessor/process/index.html index 3a73fc24ee772b6..773b786d6a7bf69 100644 --- a/files/en-us/web/api/audioworkletprocessor/process/index.html +++ b/files/en-us/web/api/audioworkletprocessor/process/index.html @@ -138,7 +138,6 @@

    Browser compatibility

    -

    {{Compat("api.AudioWorkletProcessor.process")}}

    diff --git a/files/en-us/web/api/authenticatorassertionresponse/authenticatordata/index.html b/files/en-us/web/api/authenticatorassertionresponse/authenticatordata/index.html index 492ba6601b6c4ba..925d20cf8b348de 100644 --- a/files/en-us/web/api/authenticatorassertionresponse/authenticatordata/index.html +++ b/files/en-us/web/api/authenticatorassertionresponse/authenticatordata/index.html @@ -83,6 +83,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AuthenticatorAssertionResponse.authenticatorData")}}

    diff --git a/files/en-us/web/api/authenticatorassertionresponse/index.html b/files/en-us/web/api/authenticatorassertionresponse/index.html index e0867a37a871b68..57f9d065a9d363f 100644 --- a/files/en-us/web/api/authenticatorassertionresponse/index.html +++ b/files/en-us/web/api/authenticatorassertionresponse/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AuthenticatorAssertionResponse")}}

    See also

    diff --git a/files/en-us/web/api/authenticatorassertionresponse/signature/index.html b/files/en-us/web/api/authenticatorassertionresponse/signature/index.html index 88571bffd72b513..65382a915069468 100644 --- a/files/en-us/web/api/authenticatorassertionresponse/signature/index.html +++ b/files/en-us/web/api/authenticatorassertionresponse/signature/index.html @@ -71,6 +71,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AuthenticatorAssertionResponse.signature")}}

    diff --git a/files/en-us/web/api/authenticatorassertionresponse/userhandle/index.html b/files/en-us/web/api/authenticatorassertionresponse/userhandle/index.html index 9d6d335d05ff391..7992028571e2cdd 100644 --- a/files/en-us/web/api/authenticatorassertionresponse/userhandle/index.html +++ b/files/en-us/web/api/authenticatorassertionresponse/userhandle/index.html @@ -71,8 +71,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AuthenticatorAssertionResponse.userHandle")}}

    See also

    diff --git a/files/en-us/web/api/authenticatorattestationresponse/attestationobject/index.html b/files/en-us/web/api/authenticatorattestationresponse/attestationobject/index.html index 6d955aab4945624..b9f7c55b58dbffe 100644 --- a/files/en-us/web/api/authenticatorattestationresponse/attestationobject/index.html +++ b/files/en-us/web/api/authenticatorattestationresponse/attestationobject/index.html @@ -93,8 +93,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AuthenticatorAttestationResponse.attestationObject")}}

    See also

    diff --git a/files/en-us/web/api/authenticatorattestationresponse/gettransports/index.html b/files/en-us/web/api/authenticatorattestationresponse/gettransports/index.html index 922a5003d15c66d..f1230055cc69fae 100644 --- a/files/en-us/web/api/authenticatorattestationresponse/gettransports/index.html +++ b/files/en-us/web/api/authenticatorattestationresponse/gettransports/index.html @@ -92,6 +92,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AuthenticatorAttestationResponse.getTransports")}}

    diff --git a/files/en-us/web/api/authenticatorattestationresponse/index.html b/files/en-us/web/api/authenticatorattestationresponse/index.html index 57b7364943afbca..a7d68ace38c21b5 100644 --- a/files/en-us/web/api/authenticatorattestationresponse/index.html +++ b/files/en-us/web/api/authenticatorattestationresponse/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AuthenticatorAttestationResponse")}}

    See also

    diff --git a/files/en-us/web/api/authenticatorresponse/clientdatajson/index.html b/files/en-us/web/api/authenticatorresponse/clientdatajson/index.html index 5ec50118013313d..4ef2c802d9727ae 100644 --- a/files/en-us/web/api/authenticatorresponse/clientdatajson/index.html +++ b/files/en-us/web/api/authenticatorresponse/clientdatajson/index.html @@ -81,6 +81,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AuthenticatorResponse.clientDataJSON")}}

    diff --git a/files/en-us/web/api/authenticatorresponse/index.html b/files/en-us/web/api/authenticatorresponse/index.html index 7b39fa0faa70df1..d538da89bd1f722 100644 --- a/files/en-us/web/api/authenticatorresponse/index.html +++ b/files/en-us/web/api/authenticatorresponse/index.html @@ -104,8 +104,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.AuthenticatorResponse")}}

    See also

    diff --git a/files/en-us/web/api/background_tasks_api/index.html b/files/en-us/web/api/background_tasks_api/index.html index 339d1fdc65bdf69..86275e397a9a3e1 100644 --- a/files/en-us/web/api/background_tasks_api/index.html +++ b/files/en-us/web/api/background_tasks_api/index.html @@ -477,7 +477,6 @@

    The main program

    Each task is then enqueued by calling enqueueTask(), passing in logTaskHandler() as the handler function and the taskData object as the object to pass into the function when it's called.

    -

    Result

    Below is the actual functioning result of the code above. Try it out, play with it in your browser's developer tools, and experiment with using it in your own code.

    @@ -505,7 +504,6 @@

    Browser compatibility

    -

    {{Compat("api.Window.requestIdleCallback")}}

    diff --git a/files/en-us/web/api/barcode_detection_api/index.html b/files/en-us/web/api/barcode_detection_api/index.html index c5ade1862d8ea80..82bff0fe765d0da 100644 --- a/files/en-us/web/api/barcode_detection_api/index.html +++ b/files/en-us/web/api/barcode_detection_api/index.html @@ -173,8 +173,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BarcodeDetector")}}

    See also:

    diff --git a/files/en-us/web/api/barcodedetector/barcodedetector/index.html b/files/en-us/web/api/barcodedetector/barcodedetector/index.html index 4c91481910615ff..593debf6474cbb8 100644 --- a/files/en-us/web/api/barcodedetector/barcodedetector/index.html +++ b/files/en-us/web/api/barcodedetector/barcodedetector/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BarcodeDetector.BarcodeDetector")}}

    diff --git a/files/en-us/web/api/barcodedetector/detect/index.html b/files/en-us/web/api/barcodedetector/detect/index.html index 1776b4e15e55a41..0c2d0e2d88a45b5 100644 --- a/files/en-us/web/api/barcodedetector/detect/index.html +++ b/files/en-us/web/api/barcodedetector/detect/index.html @@ -73,6 +73,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BarcodeDetector.detect")}}

    diff --git a/files/en-us/web/api/barcodedetector/getsupportedformats/index.html b/files/en-us/web/api/barcodedetector/getsupportedformats/index.html index 429c77bd953b610..4b9da01e1078a27 100644 --- a/files/en-us/web/api/barcodedetector/getsupportedformats/index.html +++ b/files/en-us/web/api/barcodedetector/getsupportedformats/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BarcodeDetector.getSupportedFormats")}}

    diff --git a/files/en-us/web/api/barcodedetector/index.html b/files/en-us/web/api/barcodedetector/index.html index ae0aea66988d8a7..0cde1560957b4a3 100644 --- a/files/en-us/web/api/barcodedetector/index.html +++ b/files/en-us/web/api/barcodedetector/index.html @@ -93,8 +93,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BarcodeDetector")}}

    See also:

    diff --git a/files/en-us/web/api/baseaudiocontext/audioworklet/index.html b/files/en-us/web/api/baseaudiocontext/audioworklet/index.html index d939058629d0a91..054a5a480cd2570 100644 --- a/files/en-us/web/api/baseaudiocontext/audioworklet/index.html +++ b/files/en-us/web/api/baseaudiocontext/audioworklet/index.html @@ -53,7 +53,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.audioWorklet")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createanalyser/index.html b/files/en-us/web/api/baseaudiocontext/createanalyser/index.html index 59e714c67862aba..943a0aa616881ab 100644 --- a/files/en-us/web/api/baseaudiocontext/createanalyser/index.html +++ b/files/en-us/web/api/baseaudiocontext/createanalyser/index.html @@ -100,7 +100,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createAnalyser")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createbiquadfilter/index.html b/files/en-us/web/api/baseaudiocontext/createbiquadfilter/index.html index 1ea6577a84796eb..08f6a427d486872 100644 --- a/files/en-us/web/api/baseaudiocontext/createbiquadfilter/index.html +++ b/files/en-us/web/api/baseaudiocontext/createbiquadfilter/index.html @@ -74,7 +74,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createBiquadFilter")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createbuffer/index.html b/files/en-us/web/api/baseaudiocontext/createbuffer/index.html index d66349af0dc7dcd..5c806146074f961 100644 --- a/files/en-us/web/api/baseaudiocontext/createbuffer/index.html +++ b/files/en-us/web/api/baseaudiocontext/createbuffer/index.html @@ -127,7 +127,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createBuffer")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createbuffersource/index.html b/files/en-us/web/api/baseaudiocontext/createbuffersource/index.html index cf4b7a76b4d9ac6..272e8c3ce844e55 100644 --- a/files/en-us/web/api/baseaudiocontext/createbuffersource/index.html +++ b/files/en-us/web/api/baseaudiocontext/createbuffersource/index.html @@ -91,8 +91,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BaseAudioContext.createBufferSource")}}

    See also

    diff --git a/files/en-us/web/api/baseaudiocontext/createchannelmerger/index.html b/files/en-us/web/api/baseaudiocontext/createchannelmerger/index.html index 9d3f608642fa9c4..200d9e8a5a6ef3f 100644 --- a/files/en-us/web/api/baseaudiocontext/createchannelmerger/index.html +++ b/files/en-us/web/api/baseaudiocontext/createchannelmerger/index.html @@ -83,7 +83,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createChannelMerger")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createchannelsplitter/index.html b/files/en-us/web/api/baseaudiocontext/createchannelsplitter/index.html index fdf68daa60c3104..b4257fdf6c218ff 100644 --- a/files/en-us/web/api/baseaudiocontext/createchannelsplitter/index.html +++ b/files/en-us/web/api/baseaudiocontext/createchannelsplitter/index.html @@ -82,7 +82,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createChannelSplitter")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createconstantsource/index.html b/files/en-us/web/api/baseaudiocontext/createconstantsource/index.html index 06ec154b3bb9470..428756aadafcbd7 100644 --- a/files/en-us/web/api/baseaudiocontext/createconstantsource/index.html +++ b/files/en-us/web/api/baseaudiocontext/createconstantsource/index.html @@ -48,6 +48,5 @@

    Browser Compatibility

    -

    {{Compat("api.BaseAudioContext.createConstantSource")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createconvolver/index.html b/files/en-us/web/api/baseaudiocontext/createconvolver/index.html index 9b887f624e13256..b3b1ee17ea981f3 100644 --- a/files/en-us/web/api/baseaudiocontext/createconvolver/index.html +++ b/files/en-us/web/api/baseaudiocontext/createconvolver/index.html @@ -79,7 +79,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createConvolver")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createdelay/index.html b/files/en-us/web/api/baseaudiocontext/createdelay/index.html index 21caf31630322f8..107cbad1089ecc0 100644 --- a/files/en-us/web/api/baseaudiocontext/createdelay/index.html +++ b/files/en-us/web/api/baseaudiocontext/createdelay/index.html @@ -89,7 +89,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createDelay")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createdynamicscompressor/index.html b/files/en-us/web/api/baseaudiocontext/createdynamicscompressor/index.html index a118ab99135eaa7..c3786df60c23e14 100644 --- a/files/en-us/web/api/baseaudiocontext/createdynamicscompressor/index.html +++ b/files/en-us/web/api/baseaudiocontext/createdynamicscompressor/index.html @@ -86,7 +86,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createDynamicsCompressor")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/creategain/index.html b/files/en-us/web/api/baseaudiocontext/creategain/index.html index 21d965660a88afd..112c6e680fb6fb5 100644 --- a/files/en-us/web/api/baseaudiocontext/creategain/index.html +++ b/files/en-us/web/api/baseaudiocontext/creategain/index.html @@ -107,7 +107,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createGain")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createiirfilter/index.html b/files/en-us/web/api/baseaudiocontext/createiirfilter/index.html index 43a5e9cdaf4598a..6aae5fa1ef1f6f4 100644 --- a/files/en-us/web/api/baseaudiocontext/createiirfilter/index.html +++ b/files/en-us/web/api/baseaudiocontext/createiirfilter/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createIIRFilter")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createoscillator/index.html b/files/en-us/web/api/baseaudiocontext/createoscillator/index.html index 9c1663b0c450aec..d121ade873138b2 100644 --- a/files/en-us/web/api/baseaudiocontext/createoscillator/index.html +++ b/files/en-us/web/api/baseaudiocontext/createoscillator/index.html @@ -59,7 +59,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createOscillator")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createpanner/index.html b/files/en-us/web/api/baseaudiocontext/createpanner/index.html index 885fbb0044fe055..735227ba6f6a7e8 100644 --- a/files/en-us/web/api/baseaudiocontext/createpanner/index.html +++ b/files/en-us/web/api/baseaudiocontext/createpanner/index.html @@ -143,7 +143,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createPanner")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createperiodicwave/index.html b/files/en-us/web/api/baseaudiocontext/createperiodicwave/index.html index 43db8fa600be8c0..82dce3d491de0a8 100644 --- a/files/en-us/web/api/baseaudiocontext/createperiodicwave/index.html +++ b/files/en-us/web/api/baseaudiocontext/createperiodicwave/index.html @@ -102,7 +102,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createPeriodicWave")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createscriptprocessor/index.html b/files/en-us/web/api/baseaudiocontext/createscriptprocessor/index.html index 965560cb94968f5..9a536d570dbb42c 100644 --- a/files/en-us/web/api/baseaudiocontext/createscriptprocessor/index.html +++ b/files/en-us/web/api/baseaudiocontext/createscriptprocessor/index.html @@ -148,7 +148,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createScriptProcessor")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createstereopanner/index.html b/files/en-us/web/api/baseaudiocontext/createstereopanner/index.html index d285084dc93db08..84da91aaf1a7945 100644 --- a/files/en-us/web/api/baseaudiocontext/createstereopanner/index.html +++ b/files/en-us/web/api/baseaudiocontext/createstereopanner/index.html @@ -82,7 +82,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createStereoPanner")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/createwaveshaper/index.html b/files/en-us/web/api/baseaudiocontext/createwaveshaper/index.html index 5fe12fb283a042e..3e862c074fb2ff1 100644 --- a/files/en-us/web/api/baseaudiocontext/createwaveshaper/index.html +++ b/files/en-us/web/api/baseaudiocontext/createwaveshaper/index.html @@ -78,7 +78,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.createWaveShaper")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/currenttime/index.html b/files/en-us/web/api/baseaudiocontext/currenttime/index.html index e39e066e3a943f7..f1593eb2f70c373 100644 --- a/files/en-us/web/api/baseaudiocontext/currenttime/index.html +++ b/files/en-us/web/api/baseaudiocontext/currenttime/index.html @@ -44,7 +44,6 @@

    Reduced time precision

    // 25.514 // ... - // reduced time precision with `privacy.resistFingerprinting` enabled audioCtx.currentTime; // 49.8 @@ -77,7 +76,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.currentTime")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/decodeaudiodata/index.html b/files/en-us/web/api/baseaudiocontext/decodeaudiodata/index.html index e02b4769f6fa98c..29501feed103d8d 100644 --- a/files/en-us/web/api/baseaudiocontext/decodeaudiodata/index.html +++ b/files/en-us/web/api/baseaudiocontext/decodeaudiodata/index.html @@ -78,7 +78,6 @@

    Older callback syntax

    request.responseType = 'arraybuffer'; - request.onload = function() { var audioData = request.response; @@ -109,7 +108,6 @@

    Older callback syntax

    play.removeAttribute('disabled'); } - // dump script to pre element pre.innerHTML = myScript.innerHTML; @@ -143,7 +141,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.decodeAudioData")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/destination/index.html b/files/en-us/web/api/baseaudiocontext/destination/index.html index 30b4e741deefb3a..0d1394e96c27d63 100644 --- a/files/en-us/web/api/baseaudiocontext/destination/index.html +++ b/files/en-us/web/api/baseaudiocontext/destination/index.html @@ -64,7 +64,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.destination")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/index.html b/files/en-us/web/api/baseaudiocontext/index.html index fef90c2a4307c46..da1326ea53535ea 100644 --- a/files/en-us/web/api/baseaudiocontext/index.html +++ b/files/en-us/web/api/baseaudiocontext/index.html @@ -128,7 +128,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/listener/index.html b/files/en-us/web/api/baseaudiocontext/listener/index.html index 7c2332c52eb9ffb..dac28c916c6e7a9 100644 --- a/files/en-us/web/api/baseaudiocontext/listener/index.html +++ b/files/en-us/web/api/baseaudiocontext/listener/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.listener")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/onstatechange/index.html b/files/en-us/web/api/baseaudiocontext/onstatechange/index.html index 755cb8ba4fbdaaf..2470cbdfd978548 100644 --- a/files/en-us/web/api/baseaudiocontext/onstatechange/index.html +++ b/files/en-us/web/api/baseaudiocontext/onstatechange/index.html @@ -52,7 +52,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.onstatechange")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/samplerate/index.html b/files/en-us/web/api/baseaudiocontext/samplerate/index.html index e50ac9491766c28..df8ae4189077482 100644 --- a/files/en-us/web/api/baseaudiocontext/samplerate/index.html +++ b/files/en-us/web/api/baseaudiocontext/samplerate/index.html @@ -60,7 +60,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.sampleRate")}}

    diff --git a/files/en-us/web/api/baseaudiocontext/state/index.html b/files/en-us/web/api/baseaudiocontext/state/index.html index ffb9bf676214444..383019985434047 100644 --- a/files/en-us/web/api/baseaudiocontext/state/index.html +++ b/files/en-us/web/api/baseaudiocontext/state/index.html @@ -62,7 +62,6 @@

    Browser compatibility

    -

    {{Compat("api.BaseAudioContext.state")}}

    diff --git a/files/en-us/web/api/basiccardrequest/index.html b/files/en-us/web/api/basiccardrequest/index.html index 454c0fb2a593a6f..0ae9ad7d3d908a7 100644 --- a/files/en-us/web/api/basiccardrequest/index.html +++ b/files/en-us/web/api/basiccardrequest/index.html @@ -137,6 +137,5 @@

    Browser compatibility

    -

    {{Compat("api.BasicCardRequest")}}

    diff --git a/files/en-us/web/api/basiccardrequest/supportednetworks/index.html b/files/en-us/web/api/basiccardrequest/supportednetworks/index.html index acd328f0ae7b960..41c90b7720fb9d5 100644 --- a/files/en-us/web/api/basiccardrequest/supportednetworks/index.html +++ b/files/en-us/web/api/basiccardrequest/supportednetworks/index.html @@ -77,6 +77,5 @@

    Browser Compatibility

    -

    {{Compat("api.BasicCardRequest.supportedNetworks")}}

    diff --git a/files/en-us/web/api/basiccardrequest/supportedtypes/index.html b/files/en-us/web/api/basiccardrequest/supportedtypes/index.html index fa73ccb10ebe9de..ce84788cceef2de 100644 --- a/files/en-us/web/api/basiccardrequest/supportedtypes/index.html +++ b/files/en-us/web/api/basiccardrequest/supportedtypes/index.html @@ -56,11 +56,9 @@

    Example

    var request = new PaymentRequest(supportedInstruments, details, options); -

    Browser compatibility

    -

    {{Compat("api.BasicCardRequest.supportedTypes")}}

    diff --git a/files/en-us/web/api/basiccardresponse/billingaddress/index.html b/files/en-us/web/api/basiccardresponse/billingaddress/index.html index 9a855fc36e2f593..b2084a827ec5cfd 100644 --- a/files/en-us/web/api/basiccardresponse/billingaddress/index.html +++ b/files/en-us/web/api/basiccardresponse/billingaddress/index.html @@ -74,6 +74,5 @@

    Browser Compatibility

    -

    {{Compat("api.BasicCardResponse.billingAddress")}}

    diff --git a/files/en-us/web/api/basiccardresponse/cardholdername/index.html b/files/en-us/web/api/basiccardresponse/cardholdername/index.html index 5ff6eadce88e65c..6a751b4a6dd4f46 100644 --- a/files/en-us/web/api/basiccardresponse/cardholdername/index.html +++ b/files/en-us/web/api/basiccardresponse/cardholdername/index.html @@ -74,6 +74,5 @@

    Browser Compatibility

    -

    {{Compat("api.BasicCardResponse.cardholderName")}}

    diff --git a/files/en-us/web/api/basiccardresponse/cardnumber/index.html b/files/en-us/web/api/basiccardresponse/cardnumber/index.html index 8510c241c7441de..5b818a0b4200c0f 100644 --- a/files/en-us/web/api/basiccardresponse/cardnumber/index.html +++ b/files/en-us/web/api/basiccardresponse/cardnumber/index.html @@ -74,6 +74,5 @@

    Browser Compatibility

    -

    {{Compat("api.BasicCardResponse.cardNumber")}}

    diff --git a/files/en-us/web/api/basiccardresponse/cardsecuritycode/index.html b/files/en-us/web/api/basiccardresponse/cardsecuritycode/index.html index 29b8dff74d59e92..1db406a7639ca50 100644 --- a/files/en-us/web/api/basiccardresponse/cardsecuritycode/index.html +++ b/files/en-us/web/api/basiccardresponse/cardsecuritycode/index.html @@ -74,6 +74,5 @@

    Browser Compatibility

    -

    {{Compat("api.BasicCardResponse.cardSecurityCode")}}

    diff --git a/files/en-us/web/api/basiccardresponse/expirymonth/index.html b/files/en-us/web/api/basiccardresponse/expirymonth/index.html index 77a91b3071eaed8..f530a0b0ea0802e 100644 --- a/files/en-us/web/api/basiccardresponse/expirymonth/index.html +++ b/files/en-us/web/api/basiccardresponse/expirymonth/index.html @@ -74,6 +74,5 @@

    Browser Compatibility

    -

    {{Compat("api.BasicCardResponse.expiryMonth")}}

    diff --git a/files/en-us/web/api/basiccardresponse/expiryyear/index.html b/files/en-us/web/api/basiccardresponse/expiryyear/index.html index 94da41b0a546ec9..f27b883ece5cf9d 100644 --- a/files/en-us/web/api/basiccardresponse/expiryyear/index.html +++ b/files/en-us/web/api/basiccardresponse/expiryyear/index.html @@ -74,6 +74,5 @@

    Browser Compatibility

    -

    {{Compat("api.BasicCardResponse.expiryYear")}}

    diff --git a/files/en-us/web/api/basiccardresponse/index.html b/files/en-us/web/api/basiccardresponse/index.html index c25e2b723b2dccb..e154c1583274413 100644 --- a/files/en-us/web/api/basiccardresponse/index.html +++ b/files/en-us/web/api/basiccardresponse/index.html @@ -116,6 +116,5 @@

    Browser Compatibility

    -

    {{Compat("api.BasicCardResponse")}}

    diff --git a/files/en-us/web/api/battery_status_api/index.html b/files/en-us/web/api/battery_status_api/index.html index cf623fa2e9e186c..5abb6bbe2aeec5d 100644 --- a/files/en-us/web/api/battery_status_api/index.html +++ b/files/en-us/web/api/battery_status_api/index.html @@ -93,8 +93,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BatteryManager")}}

    See also

    diff --git a/files/en-us/web/api/batterymanager/charging/index.html b/files/en-us/web/api/batterymanager/charging/index.html index c65adf9440df887..70341fe22529004 100644 --- a/files/en-us/web/api/batterymanager/charging/index.html +++ b/files/en-us/web/api/batterymanager/charging/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BatteryManager.charging")}}

    See also

    diff --git a/files/en-us/web/api/batterymanager/chargingtime/index.html b/files/en-us/web/api/batterymanager/chargingtime/index.html index df7a98be5c87b59..65588c67c0e0764 100644 --- a/files/en-us/web/api/batterymanager/chargingtime/index.html +++ b/files/en-us/web/api/batterymanager/chargingtime/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BatteryManager.chargingTime")}}

    See also

    diff --git a/files/en-us/web/api/batterymanager/dischargingtime/index.html b/files/en-us/web/api/batterymanager/dischargingtime/index.html index bb136e2f3c5bc10..db5ed836240b82b 100644 --- a/files/en-us/web/api/batterymanager/dischargingtime/index.html +++ b/files/en-us/web/api/batterymanager/dischargingtime/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BatteryManager.dischargingTime")}}

    See also

    diff --git a/files/en-us/web/api/batterymanager/index.html b/files/en-us/web/api/batterymanager/index.html index c9d0824e781adbc..8244e13010a2d67 100644 --- a/files/en-us/web/api/batterymanager/index.html +++ b/files/en-us/web/api/batterymanager/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BatteryManager")}}

    See also

    diff --git a/files/en-us/web/api/batterymanager/level/index.html b/files/en-us/web/api/batterymanager/level/index.html index 189c0ee5be0a840..46226941b112ff1 100644 --- a/files/en-us/web/api/batterymanager/level/index.html +++ b/files/en-us/web/api/batterymanager/level/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BatteryManager.level")}}

    See also

    diff --git a/files/en-us/web/api/batterymanager/onchargingchange/index.html b/files/en-us/web/api/batterymanager/onchargingchange/index.html index f46c68fe9e45903..5a6ccc4c6365bf6 100644 --- a/files/en-us/web/api/batterymanager/onchargingchange/index.html +++ b/files/en-us/web/api/batterymanager/onchargingchange/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BatteryManager.onchargingchange")}}

    See also

    diff --git a/files/en-us/web/api/batterymanager/onchargingtimechange/index.html b/files/en-us/web/api/batterymanager/onchargingtimechange/index.html index 6519adaacecd5c3..d92ee07c2fbf186 100644 --- a/files/en-us/web/api/batterymanager/onchargingtimechange/index.html +++ b/files/en-us/web/api/batterymanager/onchargingtimechange/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BatteryManager.onchargingtimechange")}}

    See also

    diff --git a/files/en-us/web/api/batterymanager/ondischargingtimechange/index.html b/files/en-us/web/api/batterymanager/ondischargingtimechange/index.html index 62797353e5e6c72..95f049d5687366e 100644 --- a/files/en-us/web/api/batterymanager/ondischargingtimechange/index.html +++ b/files/en-us/web/api/batterymanager/ondischargingtimechange/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BatteryManager.ondischargingtimechange")}}

    See also

    diff --git a/files/en-us/web/api/batterymanager/onlevelchange/index.html b/files/en-us/web/api/batterymanager/onlevelchange/index.html index de4fd5ca0733a43..3ff9957f5670329 100644 --- a/files/en-us/web/api/batterymanager/onlevelchange/index.html +++ b/files/en-us/web/api/batterymanager/onlevelchange/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.BatteryManager.onlevelchange")}}

    See also

    diff --git a/files/en-us/web/api/beacon_api/using_the_beacon_api/index.html b/files/en-us/web/api/beacon_api/using_the_beacon_api/index.html index 64e961a5ae5a619..fbf2f6d579ed357 100644 --- a/files/en-us/web/api/beacon_api/using_the_beacon_api/index.html +++ b/files/en-us/web/api/beacon_api/using_the_beacon_api/index.html @@ -51,7 +51,6 @@ }; -

    See Also

      diff --git a/files/en-us/web/api/beforeinstallpromptevent/index.html b/files/en-us/web/api/beforeinstallpromptevent/index.html index fce38ac35f7858b..d350da4713ec2f8 100644 --- a/files/en-us/web/api/beforeinstallpromptevent/index.html +++ b/files/en-us/web/api/beforeinstallpromptevent/index.html @@ -53,6 +53,4 @@

      Example

      Browser compatibility

      - -

      {{Compat("api.BeforeInstallPromptEvent")}}

      diff --git a/files/en-us/web/api/beforeinstallpromptevent/prompt/index.html b/files/en-us/web/api/beforeinstallpromptevent/prompt/index.html index 22840b5deb37038..cad52ee3a2c8b6f 100644 --- a/files/en-us/web/api/beforeinstallpromptevent/prompt/index.html +++ b/files/en-us/web/api/beforeinstallpromptevent/prompt/index.html @@ -42,6 +42,4 @@

      Example

      Browser compatibility

      - -

      {{Compat("api.BeforeInstallPromptEvent.prompt")}}

      diff --git a/files/en-us/web/api/beforeunloadevent/index.html b/files/en-us/web/api/beforeunloadevent/index.html index 1e9761c4b68e470..8d8a52c0ee7bac6 100644 --- a/files/en-us/web/api/beforeunloadevent/index.html +++ b/files/en-us/web/api/beforeunloadevent/index.html @@ -76,7 +76,6 @@

      Browser compatibility

      -

      {{Compat("api.BeforeUnloadEvent")}}

      diff --git a/files/en-us/web/api/biquadfilternode/biquadfilternode/index.html b/files/en-us/web/api/biquadfilternode/biquadfilternode/index.html index a86580ee7548ab8..280fac37640f619 100644 --- a/files/en-us/web/api/biquadfilternode/biquadfilternode/index.html +++ b/files/en-us/web/api/biquadfilternode/biquadfilternode/index.html @@ -134,6 +134,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.BiquadFilterNode.BiquadFilterNode")}}

      diff --git a/files/en-us/web/api/biquadfilternode/detune/index.html b/files/en-us/web/api/biquadfilternode/detune/index.html index 12c7c92f67c43be..963f4d5927b8f12 100644 --- a/files/en-us/web/api/biquadfilternode/detune/index.html +++ b/files/en-us/web/api/biquadfilternode/detune/index.html @@ -82,7 +82,6 @@

      Browser compatibility

      -

      {{Compat("api.BiquadFilterNode.detune")}}

      diff --git a/files/en-us/web/api/biquadfilternode/frequency/index.html b/files/en-us/web/api/biquadfilternode/frequency/index.html index ff31869ea208d2f..5abf2d70343a371 100644 --- a/files/en-us/web/api/biquadfilternode/frequency/index.html +++ b/files/en-us/web/api/biquadfilternode/frequency/index.html @@ -82,7 +82,6 @@

      Browser compatibility

      -

      {{Compat("api.BiquadFilterNode.frequency")}}

      diff --git a/files/en-us/web/api/biquadfilternode/gain/index.html b/files/en-us/web/api/biquadfilternode/gain/index.html index 057bd30a6a1a738..b09a126cd7a3bca 100644 --- a/files/en-us/web/api/biquadfilternode/gain/index.html +++ b/files/en-us/web/api/biquadfilternode/gain/index.html @@ -85,7 +85,6 @@

      Browser compatibility

      -

      {{Compat("api.BiquadFilterNode.gain")}}

      diff --git a/files/en-us/web/api/biquadfilternode/getfrequencyresponse/index.html b/files/en-us/web/api/biquadfilternode/getfrequencyresponse/index.html index 2e60825e2f622fa..2b6e54498b9424a 100644 --- a/files/en-us/web/api/biquadfilternode/getfrequencyresponse/index.html +++ b/files/en-us/web/api/biquadfilternode/getfrequencyresponse/index.html @@ -110,7 +110,6 @@

      Browser compatibility

      -

      {{Compat("api.BiquadFilterNode.getFrequencyResponse")}}

      diff --git a/files/en-us/web/api/biquadfilternode/index.html b/files/en-us/web/api/biquadfilternode/index.html index 87e3c8819a73af8..3e7dfe2f444bcf4 100644 --- a/files/en-us/web/api/biquadfilternode/index.html +++ b/files/en-us/web/api/biquadfilternode/index.html @@ -172,7 +172,6 @@

      Browser compatibility

      -

      {{Compat("api.BiquadFilterNode")}}

      diff --git a/files/en-us/web/api/biquadfilternode/q/index.html b/files/en-us/web/api/biquadfilternode/q/index.html index bb9ade7cccbe412..bdcd3542518ad83 100644 --- a/files/en-us/web/api/biquadfilternode/q/index.html +++ b/files/en-us/web/api/biquadfilternode/q/index.html @@ -87,7 +87,6 @@

      Browser compatibility

      -

      {{Compat("api.BiquadFilterNode.Q")}}

      diff --git a/files/en-us/web/api/biquadfilternode/type/index.html b/files/en-us/web/api/biquadfilternode/type/index.html index 5af9697d7c242ea..62c1badb5ed22ff 100644 --- a/files/en-us/web/api/biquadfilternode/type/index.html +++ b/files/en-us/web/api/biquadfilternode/type/index.html @@ -147,7 +147,6 @@

      Browser compatibility

      -

      {{Compat("api.BiquadFilterNode.type")}}

      diff --git a/files/en-us/web/api/blob/arraybuffer/index.html b/files/en-us/web/api/blob/arraybuffer/index.html index 300f5d521a9cdf3..f2cfeb68acbc499 100644 --- a/files/en-us/web/api/blob/arraybuffer/index.html +++ b/files/en-us/web/api/blob/arraybuffer/index.html @@ -61,8 +61,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Blob.arrayBuffer")}}

      See also

      diff --git a/files/en-us/web/api/blob/blob/index.html b/files/en-us/web/api/blob/blob/index.html index 337578a95f7dd3d..6b922c9b9632069 100644 --- a/files/en-us/web/api/blob/blob/index.html +++ b/files/en-us/web/api/blob/blob/index.html @@ -65,8 +65,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Blob.Blob")}}

      See also

      diff --git a/files/en-us/web/api/blob/index.html b/files/en-us/web/api/blob/index.html index 3a8f156d94f2d62..0da97a52e8ebba6 100644 --- a/files/en-us/web/api/blob/index.html +++ b/files/en-us/web/api/blob/index.html @@ -139,8 +139,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Blob")}}

      See also

      diff --git a/files/en-us/web/api/blob/size/index.html b/files/en-us/web/api/blob/size/index.html index e21624a9bb866c3..68549cf3c2186e0 100644 --- a/files/en-us/web/api/blob/size/index.html +++ b/files/en-us/web/api/blob/size/index.html @@ -60,7 +60,6 @@

      Browser compatibility

      -

      {{Compat("api.Blob.size")}}

      diff --git a/files/en-us/web/api/blob/stream/index.html b/files/en-us/web/api/blob/stream/index.html index c6deb8740bfb37b..68724d197f42ded 100644 --- a/files/en-us/web/api/blob/stream/index.html +++ b/files/en-us/web/api/blob/stream/index.html @@ -58,8 +58,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Blob.stream")}}

      See also

      diff --git a/files/en-us/web/api/blob/text/index.html b/files/en-us/web/api/blob/text/index.html index b2ebafb370fc9ce..1586cf2cf8fd1e0 100644 --- a/files/en-us/web/api/blob/text/index.html +++ b/files/en-us/web/api/blob/text/index.html @@ -65,8 +65,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Blob.text")}}

      See also

      diff --git a/files/en-us/web/api/blob/type/index.html b/files/en-us/web/api/blob/type/index.html index dfc96584ef610fe..398e2381e310399 100644 --- a/files/en-us/web/api/blob/type/index.html +++ b/files/en-us/web/api/blob/type/index.html @@ -70,7 +70,6 @@

      Browser compatibility

      -

      {{Compat("api.Blob.type")}}

      diff --git a/files/en-us/web/api/blobbuilder/index.html b/files/en-us/web/api/blobbuilder/index.html index 00c2fed7a55bae3..917644015341277 100644 --- a/files/en-us/web/api/blobbuilder/index.html +++ b/files/en-us/web/api/blobbuilder/index.html @@ -51,7 +51,6 @@

      append()

        in Blob data ); - void append(   in String data, [optional] in String endings @@ -112,8 +111,6 @@
      Return value

      Browser compatibility

      - -

      {{Compat("api.BlobBuilder")}}

      See also

      diff --git a/files/en-us/web/api/blobevent/blobevent/index.html b/files/en-us/web/api/blobevent/blobevent/index.html index 7105f44982727b2..0cf21d87081ad73 100644 --- a/files/en-us/web/api/blobevent/blobevent/index.html +++ b/files/en-us/web/api/blobevent/blobevent/index.html @@ -50,8 +50,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BlobEvent.BlobEvent")}}

      See also

      diff --git a/files/en-us/web/api/blobevent/data/index.html b/files/en-us/web/api/blobevent/data/index.html index 57e42c400f32ed4..0f2b79db4d83752 100644 --- a/files/en-us/web/api/blobevent/data/index.html +++ b/files/en-us/web/api/blobevent/data/index.html @@ -38,8 +38,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BlobEvent.data")}}

      See also

      diff --git a/files/en-us/web/api/blobevent/index.html b/files/en-us/web/api/blobevent/index.html index 07b818c7b9e75cc..2627acfcba8963b 100644 --- a/files/en-us/web/api/blobevent/index.html +++ b/files/en-us/web/api/blobevent/index.html @@ -36,7 +36,6 @@

      Properties

      A {{domxref("DOMHighResTimeStamp")}} indicating the difference between the timestamp of the first chunk in data and the timestamp of the first chunk in the first BlobEvent produced by this recorder. Note that the timecode in the first produced BlobEvent does not need to be zero.
      -

      Methods

      No specific method; inherits methods from its parent {{domxref("Event")}}.

      @@ -60,8 +59,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BlobEvent")}}

      See also

      diff --git a/files/en-us/web/api/blobevent/timecode/index.html b/files/en-us/web/api/blobevent/timecode/index.html index ee1d5e7a4e3b8f2..166d12942a1a55c 100644 --- a/files/en-us/web/api/blobevent/timecode/index.html +++ b/files/en-us/web/api/blobevent/timecode/index.html @@ -42,6 +42,5 @@

      Browser Compatibility

      -

      {{Compat("api.BlobEvent.timecode")}}

      diff --git a/files/en-us/web/api/bluetooth/getavailability/index.html b/files/en-us/web/api/bluetooth/getavailability/index.html index c5e179e0afac719..00e3ae764e14da5 100644 --- a/files/en-us/web/api/bluetooth/getavailability/index.html +++ b/files/en-us/web/api/bluetooth/getavailability/index.html @@ -64,6 +64,5 @@

      Browser compatibility

      -

      {{Compat("api.Bluetooth.getAvailability")}}

      diff --git a/files/en-us/web/api/bluetooth/getdevices/index.html b/files/en-us/web/api/bluetooth/getdevices/index.html index 3e053e6e225d9d8..bdfd86c8bf6198a 100644 --- a/files/en-us/web/api/bluetooth/getdevices/index.html +++ b/files/en-us/web/api/bluetooth/getdevices/index.html @@ -53,6 +53,5 @@

      Browser compatibility

      -

      {{Compat("api.Bluetooth.getDevices")}}

      diff --git a/files/en-us/web/api/bluetooth/index.html b/files/en-us/web/api/bluetooth/index.html index 366135c33cf8520..2f40a5650e0aac3 100644 --- a/files/en-us/web/api/bluetooth/index.html +++ b/files/en-us/web/api/bluetooth/index.html @@ -74,6 +74,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Bluetooth")}}

      diff --git a/files/en-us/web/api/bluetooth/onavailabilitychanged/index.html b/files/en-us/web/api/bluetooth/onavailabilitychanged/index.html index ad2a02abea4f11f..f7e8412f85905c2 100644 --- a/files/en-us/web/api/bluetooth/onavailabilitychanged/index.html +++ b/files/en-us/web/api/bluetooth/onavailabilitychanged/index.html @@ -38,8 +38,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Bluetooth.onavailabilitychanged")}}

      See also

      diff --git a/files/en-us/web/api/bluetooth/referringdevice/index.html b/files/en-us/web/api/bluetooth/referringdevice/index.html index 54b1ff2ca96dffa..8ff5f6576f6b597 100644 --- a/files/en-us/web/api/bluetooth/referringdevice/index.html +++ b/files/en-us/web/api/bluetooth/referringdevice/index.html @@ -40,6 +40,5 @@

      Browser compatibility

      -

      {{Compat("api.Bluetooth.referringDevice")}}

      diff --git a/files/en-us/web/api/bluetooth/requestdevice/index.html b/files/en-us/web/api/bluetooth/requestdevice/index.html index a81e5ddb2327a8b..168a72cfecad58a 100644 --- a/files/en-us/web/api/bluetooth/requestdevice/index.html +++ b/files/en-us/web/api/bluetooth/requestdevice/index.html @@ -100,6 +100,5 @@

      Browser compatibility

      -

      {{Compat("api.Bluetooth.requestDevice")}}

      diff --git a/files/en-us/web/api/bluetoothadvertisingdata/appearance/index.html b/files/en-us/web/api/bluetoothadvertisingdata/appearance/index.html index 5be3d32b8a21707..292c3f799d87841 100644 --- a/files/en-us/web/api/bluetoothadvertisingdata/appearance/index.html +++ b/files/en-us/web/api/bluetoothadvertisingdata/appearance/index.html @@ -23,6 +23,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothAdvertisingData.appearance")}}

      diff --git a/files/en-us/web/api/bluetoothadvertisingdata/index.html b/files/en-us/web/api/bluetoothadvertisingdata/index.html index 0f11885e2881eb3..dfb583d0a53c126 100644 --- a/files/en-us/web/api/bluetoothadvertisingdata/index.html +++ b/files/en-us/web/api/bluetoothadvertisingdata/index.html @@ -46,6 +46,4 @@

      Methods

      Browser compatibility

      - -

      {{Compat("api.BluetoothAdvertisingData")}}

      diff --git a/files/en-us/web/api/bluetoothadvertisingdata/manufacturerdata/index.html b/files/en-us/web/api/bluetoothadvertisingdata/manufacturerdata/index.html index 86427bccd164a9d..2078cc803929acd 100644 --- a/files/en-us/web/api/bluetoothadvertisingdata/manufacturerdata/index.html +++ b/files/en-us/web/api/bluetoothadvertisingdata/manufacturerdata/index.html @@ -23,6 +23,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothAdvertisingData.manufacturerData")}}

      diff --git a/files/en-us/web/api/bluetoothadvertisingdata/rssi/index.html b/files/en-us/web/api/bluetoothadvertisingdata/rssi/index.html index 5f9232e79ab176b..c90bd4f05303fda 100644 --- a/files/en-us/web/api/bluetoothadvertisingdata/rssi/index.html +++ b/files/en-us/web/api/bluetoothadvertisingdata/rssi/index.html @@ -23,6 +23,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothAdvertisingData.rssi")}}

      diff --git a/files/en-us/web/api/bluetoothadvertisingdata/servicedata/index.html b/files/en-us/web/api/bluetoothadvertisingdata/servicedata/index.html index fb61a86efd2fcef..f4c4234eadc9259 100644 --- a/files/en-us/web/api/bluetoothadvertisingdata/servicedata/index.html +++ b/files/en-us/web/api/bluetoothadvertisingdata/servicedata/index.html @@ -23,6 +23,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothAdvertisingData.serviceData")}}

      diff --git a/files/en-us/web/api/bluetoothadvertisingdata/txpower/index.html b/files/en-us/web/api/bluetoothadvertisingdata/txpower/index.html index 1746e7483598bc4..78be562aca88501 100644 --- a/files/en-us/web/api/bluetoothadvertisingdata/txpower/index.html +++ b/files/en-us/web/api/bluetoothadvertisingdata/txpower/index.html @@ -23,6 +23,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothAdvertisingData.txPower")}}

      diff --git a/files/en-us/web/api/bluetoothcharacteristicproperties/authenticatedsignedwrites/index.html b/files/en-us/web/api/bluetoothcharacteristicproperties/authenticatedsignedwrites/index.html index 08ecd93177d5cb2..892f0c989d7ea1d 100644 --- a/files/en-us/web/api/bluetoothcharacteristicproperties/authenticatedsignedwrites/index.html +++ b/files/en-us/web/api/bluetoothcharacteristicproperties/authenticatedsignedwrites/index.html @@ -43,6 +43,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothCharacteristicProperties.authenticatedSignedWrites")}}

      diff --git a/files/en-us/web/api/bluetoothcharacteristicproperties/broadcast/index.html b/files/en-us/web/api/bluetoothcharacteristicproperties/broadcast/index.html index 09a553b5dd75f49..0821e0d44c72646 100644 --- a/files/en-us/web/api/bluetoothcharacteristicproperties/broadcast/index.html +++ b/files/en-us/web/api/bluetoothcharacteristicproperties/broadcast/index.html @@ -43,6 +43,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothCharacteristicProperties.broadcast")}}

      diff --git a/files/en-us/web/api/bluetoothcharacteristicproperties/index.html b/files/en-us/web/api/bluetoothcharacteristicproperties/index.html index 8939f96869f3922..1f4b240041f3ca3 100644 --- a/files/en-us/web/api/bluetoothcharacteristicproperties/index.html +++ b/files/en-us/web/api/bluetoothcharacteristicproperties/index.html @@ -77,6 +77,5 @@

      Browser Compatibility

      -

      {{Compat("api.BluetoothCharacteristicProperties")}}

      diff --git a/files/en-us/web/api/bluetoothcharacteristicproperties/indicate/index.html b/files/en-us/web/api/bluetoothcharacteristicproperties/indicate/index.html index df90f9926ccbc63..e41da3c657667e1 100644 --- a/files/en-us/web/api/bluetoothcharacteristicproperties/indicate/index.html +++ b/files/en-us/web/api/bluetoothcharacteristicproperties/indicate/index.html @@ -43,6 +43,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothCharacteristicProperties.indicate")}}

      diff --git a/files/en-us/web/api/bluetoothcharacteristicproperties/notify/index.html b/files/en-us/web/api/bluetoothcharacteristicproperties/notify/index.html index e7f639a679c620b..8488e53665cf423 100644 --- a/files/en-us/web/api/bluetoothcharacteristicproperties/notify/index.html +++ b/files/en-us/web/api/bluetoothcharacteristicproperties/notify/index.html @@ -43,6 +43,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothCharacteristicProperties.notify")}}

      diff --git a/files/en-us/web/api/bluetoothcharacteristicproperties/read/index.html b/files/en-us/web/api/bluetoothcharacteristicproperties/read/index.html index 4b752095fc370d2..abe9043310d02de 100644 --- a/files/en-us/web/api/bluetoothcharacteristicproperties/read/index.html +++ b/files/en-us/web/api/bluetoothcharacteristicproperties/read/index.html @@ -43,6 +43,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothCharacteristicProperties.read")}}

      diff --git a/files/en-us/web/api/bluetoothcharacteristicproperties/reliablewrite/index.html b/files/en-us/web/api/bluetoothcharacteristicproperties/reliablewrite/index.html index bc8740e56b4f0f5..a5b162c5f561826 100644 --- a/files/en-us/web/api/bluetoothcharacteristicproperties/reliablewrite/index.html +++ b/files/en-us/web/api/bluetoothcharacteristicproperties/reliablewrite/index.html @@ -44,6 +44,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothCharacteristicProperties.reliableWrite")}}

      diff --git a/files/en-us/web/api/bluetoothcharacteristicproperties/writableauxiliar/index.html b/files/en-us/web/api/bluetoothcharacteristicproperties/writableauxiliar/index.html index 9edbb39fa50367f..7e004ae59e17ebd 100644 --- a/files/en-us/web/api/bluetoothcharacteristicproperties/writableauxiliar/index.html +++ b/files/en-us/web/api/bluetoothcharacteristicproperties/writableauxiliar/index.html @@ -43,6 +43,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothCharacteristicProperties.writableAuxiliaries")}}

      diff --git a/files/en-us/web/api/bluetoothcharacteristicproperties/write/index.html b/files/en-us/web/api/bluetoothcharacteristicproperties/write/index.html index 755f65a7d8d1651..c4a78ad7c52c5a9 100644 --- a/files/en-us/web/api/bluetoothcharacteristicproperties/write/index.html +++ b/files/en-us/web/api/bluetoothcharacteristicproperties/write/index.html @@ -43,8 +43,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothCharacteristicProperties.write")}}

      null

      diff --git a/files/en-us/web/api/bluetoothcharacteristicproperties/writewithoutrespponse/index.html b/files/en-us/web/api/bluetoothcharacteristicproperties/writewithoutrespponse/index.html index a830a32476a74cc..950b7dd37fd04e2 100644 --- a/files/en-us/web/api/bluetoothcharacteristicproperties/writewithoutrespponse/index.html +++ b/files/en-us/web/api/bluetoothcharacteristicproperties/writewithoutrespponse/index.html @@ -43,6 +43,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothCharacteristicProperties.writeWithoutResponse")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/addata/index.html b/files/en-us/web/api/bluetoothdevice/addata/index.html index 725d32cf33f1c12..a6de94e11297cb9 100644 --- a/files/en-us/web/api/bluetoothdevice/addata/index.html +++ b/files/en-us/web/api/bluetoothdevice/addata/index.html @@ -28,6 +28,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothDevice.adData")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/connectgatt/index.html b/files/en-us/web/api/bluetoothdevice/connectgatt/index.html index 16c313d94e1d824..5dc91847e44bad0 100644 --- a/files/en-us/web/api/bluetoothdevice/connectgatt/index.html +++ b/files/en-us/web/api/bluetoothdevice/connectgatt/index.html @@ -30,6 +30,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothDevice.connectGATT")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/deviceclass/index.html b/files/en-us/web/api/bluetoothdevice/deviceclass/index.html index e447f63761d9750..682629af9f34051 100644 --- a/files/en-us/web/api/bluetoothdevice/deviceclass/index.html +++ b/files/en-us/web/api/bluetoothdevice/deviceclass/index.html @@ -28,6 +28,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothDevice.deviceClass")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/gatt/index.html b/files/en-us/web/api/bluetoothdevice/gatt/index.html index a29d69ee969d741..bb9fe8f0d351672 100644 --- a/files/en-us/web/api/bluetoothdevice/gatt/index.html +++ b/files/en-us/web/api/bluetoothdevice/gatt/index.html @@ -42,6 +42,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothDevice.gatt")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/gattserver/index.html b/files/en-us/web/api/bluetoothdevice/gattserver/index.html index ea2c3d54596dc36..fcdb2e41fbf828c 100644 --- a/files/en-us/web/api/bluetoothdevice/gattserver/index.html +++ b/files/en-us/web/api/bluetoothdevice/gattserver/index.html @@ -27,6 +27,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothDevice.gattServer")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/id/index.html b/files/en-us/web/api/bluetoothdevice/id/index.html index cd79721bd0d8685..4bc78b03175496e 100644 --- a/files/en-us/web/api/bluetoothdevice/id/index.html +++ b/files/en-us/web/api/bluetoothdevice/id/index.html @@ -43,6 +43,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothDevice.id")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/index.html b/files/en-us/web/api/bluetoothdevice/index.html index 339d15d9a2b642e..1d59a3a0405b65c 100644 --- a/files/en-us/web/api/bluetoothdevice/index.html +++ b/files/en-us/web/api/bluetoothdevice/index.html @@ -106,6 +106,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothDevice")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/name/index.html b/files/en-us/web/api/bluetoothdevice/name/index.html index 951a603da791702..5d6b48e62fec8cf 100644 --- a/files/en-us/web/api/bluetoothdevice/name/index.html +++ b/files/en-us/web/api/bluetoothdevice/name/index.html @@ -46,6 +46,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothDevice.name")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/paired/index.html b/files/en-us/web/api/bluetoothdevice/paired/index.html index d8e33e32a020472..bff5cdb8e1f36ae 100644 --- a/files/en-us/web/api/bluetoothdevice/paired/index.html +++ b/files/en-us/web/api/bluetoothdevice/paired/index.html @@ -29,6 +29,4 @@

      Returns

      Browser compatibility

      - -

      {{Compat("api.BluetoothDevice.paired")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/productid/index.html b/files/en-us/web/api/bluetoothdevice/productid/index.html index d29b766497e05c7..3c86a5be7b1c741 100644 --- a/files/en-us/web/api/bluetoothdevice/productid/index.html +++ b/files/en-us/web/api/bluetoothdevice/productid/index.html @@ -28,6 +28,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothDevice.productID")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/productversion/index.html b/files/en-us/web/api/bluetoothdevice/productversion/index.html index af142c242790d49..ed0c2b2576c322e 100644 --- a/files/en-us/web/api/bluetoothdevice/productversion/index.html +++ b/files/en-us/web/api/bluetoothdevice/productversion/index.html @@ -28,6 +28,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothDevice.productVersion")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/uuids/index.html b/files/en-us/web/api/bluetoothdevice/uuids/index.html index acae3b298764da8..9d05f1c942fd623 100644 --- a/files/en-us/web/api/bluetoothdevice/uuids/index.html +++ b/files/en-us/web/api/bluetoothdevice/uuids/index.html @@ -28,6 +28,4 @@

      Returns

      Browser compatibility

      - -

      {{Compat("api.BluetoothDevice.uuids")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/vendorid/index.html b/files/en-us/web/api/bluetoothdevice/vendorid/index.html index 3b451a3a2af5fe7..a1ced652162c93d 100644 --- a/files/en-us/web/api/bluetoothdevice/vendorid/index.html +++ b/files/en-us/web/api/bluetoothdevice/vendorid/index.html @@ -27,6 +27,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothDevice.vendorID")}}

      diff --git a/files/en-us/web/api/bluetoothdevice/vendoridsource/index.html b/files/en-us/web/api/bluetoothdevice/vendoridsource/index.html index 58b855a1857f875..7bd3e9fb44580cb 100644 --- a/files/en-us/web/api/bluetoothdevice/vendoridsource/index.html +++ b/files/en-us/web/api/bluetoothdevice/vendoridsource/index.html @@ -27,6 +27,5 @@

      Browser compatibility

      -

      {{Compat("api.BluetoothDevice.vendorIDSource")}}

      diff --git a/files/en-us/web/api/bluetoothremotegattcharacteristic/getdescriptor/index.html b/files/en-us/web/api/bluetoothremotegattcharacteristic/getdescriptor/index.html index fcd0ec4e2d2da9a..0c5cc675b8adc06 100644 --- a/files/en-us/web/api/bluetoothremotegattcharacteristic/getdescriptor/index.html +++ b/files/en-us/web/api/bluetoothremotegattcharacteristic/getdescriptor/index.html @@ -42,8 +42,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTCharacteristic.getDescriptor")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattcharacteristic/getdescriptors/index.html b/files/en-us/web/api/bluetoothremotegattcharacteristic/getdescriptors/index.html index 9099c87e17e3a89..667392bac5cebd1 100644 --- a/files/en-us/web/api/bluetoothremotegattcharacteristic/getdescriptors/index.html +++ b/files/en-us/web/api/bluetoothremotegattcharacteristic/getdescriptors/index.html @@ -42,8 +42,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTCharacteristic.getDescriptors")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattcharacteristic/index.html b/files/en-us/web/api/bluetoothremotegattcharacteristic/index.html index 9fa382554337741..93eab254f2e0901 100644 --- a/files/en-us/web/api/bluetoothremotegattcharacteristic/index.html +++ b/files/en-us/web/api/bluetoothremotegattcharacteristic/index.html @@ -81,6 +81,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTCharacteristic")}}

      diff --git a/files/en-us/web/api/bluetoothremotegattcharacteristic/properties/index.html b/files/en-us/web/api/bluetoothremotegattcharacteristic/properties/index.html index 17e56834c8cbd6e..4ad0b35026c32b2 100644 --- a/files/en-us/web/api/bluetoothremotegattcharacteristic/properties/index.html +++ b/files/en-us/web/api/bluetoothremotegattcharacteristic/properties/index.html @@ -42,8 +42,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTCharacteristic.properties")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattcharacteristic/readvalue/index.html b/files/en-us/web/api/bluetoothremotegattcharacteristic/readvalue/index.html index 5f0dd3969d5ed5d..523c44afadd9f48 100644 --- a/files/en-us/web/api/bluetoothremotegattcharacteristic/readvalue/index.html +++ b/files/en-us/web/api/bluetoothremotegattcharacteristic/readvalue/index.html @@ -42,8 +42,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTCharacteristic.readValue")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattcharacteristic/service/index.html b/files/en-us/web/api/bluetoothremotegattcharacteristic/service/index.html index b406bc03c09bbd6..26b762647d09e8c 100644 --- a/files/en-us/web/api/bluetoothremotegattcharacteristic/service/index.html +++ b/files/en-us/web/api/bluetoothremotegattcharacteristic/service/index.html @@ -42,8 +42,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTCharacteristic.service")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattcharacteristic/startnotifications/index.html b/files/en-us/web/api/bluetoothremotegattcharacteristic/startnotifications/index.html index ecba2253f632f20..c5333c574198383 100644 --- a/files/en-us/web/api/bluetoothremotegattcharacteristic/startnotifications/index.html +++ b/files/en-us/web/api/bluetoothremotegattcharacteristic/startnotifications/index.html @@ -42,8 +42,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTCharacteristic.startNotifications")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattcharacteristic/stopnotifications/index.html b/files/en-us/web/api/bluetoothremotegattcharacteristic/stopnotifications/index.html index fe1e3daddbe11c3..12ccb0a2dca163d 100644 --- a/files/en-us/web/api/bluetoothremotegattcharacteristic/stopnotifications/index.html +++ b/files/en-us/web/api/bluetoothremotegattcharacteristic/stopnotifications/index.html @@ -42,8 +42,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTCharacteristic.stopNotifications")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattcharacteristic/uuid/index.html b/files/en-us/web/api/bluetoothremotegattcharacteristic/uuid/index.html index c3a887c37f00576..267d479b835f385 100644 --- a/files/en-us/web/api/bluetoothremotegattcharacteristic/uuid/index.html +++ b/files/en-us/web/api/bluetoothremotegattcharacteristic/uuid/index.html @@ -43,8 +43,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTCharacteristic.uuid")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattcharacteristic/value/index.html b/files/en-us/web/api/bluetoothremotegattcharacteristic/value/index.html index a6f1634a7f53b04..78bb61f77e611cd 100644 --- a/files/en-us/web/api/bluetoothremotegattcharacteristic/value/index.html +++ b/files/en-us/web/api/bluetoothremotegattcharacteristic/value/index.html @@ -42,8 +42,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTCharacteristic.value")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattcharacteristic/writevalue/index.html b/files/en-us/web/api/bluetoothremotegattcharacteristic/writevalue/index.html index 8a63a6f5f1552b7..2ff8d5c7f1549f8 100644 --- a/files/en-us/web/api/bluetoothremotegattcharacteristic/writevalue/index.html +++ b/files/en-us/web/api/bluetoothremotegattcharacteristic/writevalue/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTCharacteristic.writeValue")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattdescriptor/characteristic/index.html b/files/en-us/web/api/bluetoothremotegattdescriptor/characteristic/index.html index 86bf2f095c8e63c..0375ca4c49ed292 100644 --- a/files/en-us/web/api/bluetoothremotegattdescriptor/characteristic/index.html +++ b/files/en-us/web/api/bluetoothremotegattdescriptor/characteristic/index.html @@ -45,6 +45,5 @@

      Browser Compatibility

      -

      {{Compat("api.BluetoothRemoteGATTDescriptor.characteristic")}}

      diff --git a/files/en-us/web/api/bluetoothremotegattdescriptor/index.html b/files/en-us/web/api/bluetoothremotegattdescriptor/index.html index a2c9ccbd83e884a..f98ba447ceaeda6 100644 --- a/files/en-us/web/api/bluetoothremotegattdescriptor/index.html +++ b/files/en-us/web/api/bluetoothremotegattdescriptor/index.html @@ -67,6 +67,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTDescriptor")}}

      diff --git a/files/en-us/web/api/bluetoothremotegattdescriptor/readvalue/index.html b/files/en-us/web/api/bluetoothremotegattdescriptor/readvalue/index.html index 9b64cff18d36c07..7ec65e3dfd18f4a 100644 --- a/files/en-us/web/api/bluetoothremotegattdescriptor/readvalue/index.html +++ b/files/en-us/web/api/bluetoothremotegattdescriptor/readvalue/index.html @@ -45,6 +45,5 @@

      Browser Compatibility

      -

      {{Compat("api.BluetoothRemoteGATTDescriptor.readValue")}}

      diff --git a/files/en-us/web/api/bluetoothremotegattdescriptor/uuid/index.html b/files/en-us/web/api/bluetoothremotegattdescriptor/uuid/index.html index e5806be0c44a5e5..7bdb31f4bbac60d 100644 --- a/files/en-us/web/api/bluetoothremotegattdescriptor/uuid/index.html +++ b/files/en-us/web/api/bluetoothremotegattdescriptor/uuid/index.html @@ -44,6 +44,5 @@

      Browser Compatibility

      -

      {{Compat("api.BluetoothRemoteGATTDescriptor.uuid")}}

      diff --git a/files/en-us/web/api/bluetoothremotegattdescriptor/value/index.html b/files/en-us/web/api/bluetoothremotegattdescriptor/value/index.html index d78c3cc8a88f673..c82a42915b3fac3 100644 --- a/files/en-us/web/api/bluetoothremotegattdescriptor/value/index.html +++ b/files/en-us/web/api/bluetoothremotegattdescriptor/value/index.html @@ -45,6 +45,5 @@

      Browser Compatibility

      -

      {{Compat("api.BluetoothRemoteGATTDescriptor.value")}}

      diff --git a/files/en-us/web/api/bluetoothremotegattdescriptor/writevalue/index.html b/files/en-us/web/api/bluetoothremotegattdescriptor/writevalue/index.html index 920526c0bf3b173..41770b02b420ee5 100644 --- a/files/en-us/web/api/bluetoothremotegattdescriptor/writevalue/index.html +++ b/files/en-us/web/api/bluetoothremotegattdescriptor/writevalue/index.html @@ -52,6 +52,5 @@

      Browser Compatibility

      -

      {{Compat("api.BluetoothRemoteGATTDescriptor.writeValue")}}

      diff --git a/files/en-us/web/api/bluetoothremotegattserver/connect/index.html b/files/en-us/web/api/bluetoothremotegattserver/connect/index.html index 0e469c9486eab75..899daa240d3c7df 100644 --- a/files/en-us/web/api/bluetoothremotegattserver/connect/index.html +++ b/files/en-us/web/api/bluetoothremotegattserver/connect/index.html @@ -47,8 +47,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTServer.connect")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattserver/connected/index.html b/files/en-us/web/api/bluetoothremotegattserver/connected/index.html index 37f6605face2965..e2ab25d1368a6de 100644 --- a/files/en-us/web/api/bluetoothremotegattserver/connected/index.html +++ b/files/en-us/web/api/bluetoothremotegattserver/connected/index.html @@ -37,8 +37,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTServer.connected")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattserver/device/index.html b/files/en-us/web/api/bluetoothremotegattserver/device/index.html index 1092f02e5e48c34..c177f0a37c49550 100644 --- a/files/en-us/web/api/bluetoothremotegattserver/device/index.html +++ b/files/en-us/web/api/bluetoothremotegattserver/device/index.html @@ -36,8 +36,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTServer.device")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattserver/disconnect/index.html b/files/en-us/web/api/bluetoothremotegattserver/disconnect/index.html index 9e8e26bd357e985..0ba6a371e9432f7 100644 --- a/files/en-us/web/api/bluetoothremotegattserver/disconnect/index.html +++ b/files/en-us/web/api/bluetoothremotegattserver/disconnect/index.html @@ -46,8 +46,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTServer.disconnect")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattserver/getprimaryservice/index.html b/files/en-us/web/api/bluetoothremotegattserver/getprimaryservice/index.html index bdb4396d531223c..b2e8e2b278149f3 100644 --- a/files/en-us/web/api/bluetoothremotegattserver/getprimaryservice/index.html +++ b/files/en-us/web/api/bluetoothremotegattserver/getprimaryservice/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTServer.getPrimaryService")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattserver/getprimaryservices/index.html b/files/en-us/web/api/bluetoothremotegattserver/getprimaryservices/index.html index bc4bb4a6fcf6a96..37fa9e501942a3f 100644 --- a/files/en-us/web/api/bluetoothremotegattserver/getprimaryservices/index.html +++ b/files/en-us/web/api/bluetoothremotegattserver/getprimaryservices/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTServer.getPrimaryServices")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattserver/index.html b/files/en-us/web/api/bluetoothremotegattserver/index.html index 571552bd9ebf489..47ac764af99e925 100644 --- a/files/en-us/web/api/bluetoothremotegattserver/index.html +++ b/files/en-us/web/api/bluetoothremotegattserver/index.html @@ -71,8 +71,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTServer")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattservice/device/index.html b/files/en-us/web/api/bluetoothremotegattservice/device/index.html index 44521a78bf5bc58..e0b5d3dde5dbfdc 100644 --- a/files/en-us/web/api/bluetoothremotegattservice/device/index.html +++ b/files/en-us/web/api/bluetoothremotegattservice/device/index.html @@ -42,8 +42,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTService.device")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattservice/getcharacteristic/index.html b/files/en-us/web/api/bluetoothremotegattservice/getcharacteristic/index.html index cbb3a9ae6a57c29..33d3836133d23ed 100644 --- a/files/en-us/web/api/bluetoothremotegattservice/getcharacteristic/index.html +++ b/files/en-us/web/api/bluetoothremotegattservice/getcharacteristic/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTService.getCharacteristic")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattservice/getcharacteristics/index.html b/files/en-us/web/api/bluetoothremotegattservice/getcharacteristics/index.html index 1c753ced21d9113..1ad5afcd780f482 100644 --- a/files/en-us/web/api/bluetoothremotegattservice/getcharacteristics/index.html +++ b/files/en-us/web/api/bluetoothremotegattservice/getcharacteristics/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTService.getCharacteristics")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattservice/getincludedservice/index.html b/files/en-us/web/api/bluetoothremotegattservice/getincludedservice/index.html index 7381f525fef878a..1c6b5216388fc05 100644 --- a/files/en-us/web/api/bluetoothremotegattservice/getincludedservice/index.html +++ b/files/en-us/web/api/bluetoothremotegattservice/getincludedservice/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTService.getIncludedService")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattservice/getincludedservices/index.html b/files/en-us/web/api/bluetoothremotegattservice/getincludedservices/index.html index ae3ed441c8331b0..ba3f675a65b3c95 100644 --- a/files/en-us/web/api/bluetoothremotegattservice/getincludedservices/index.html +++ b/files/en-us/web/api/bluetoothremotegattservice/getincludedservices/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTService.getIncludedServices")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattservice/index.html b/files/en-us/web/api/bluetoothremotegattservice/index.html index 69684c48c665b10..7e71ae4629174e0 100644 --- a/files/en-us/web/api/bluetoothremotegattservice/index.html +++ b/files/en-us/web/api/bluetoothremotegattservice/index.html @@ -74,8 +74,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTService")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattservice/isprimary/index.html b/files/en-us/web/api/bluetoothremotegattservice/isprimary/index.html index c8093751d47279e..eebadf6057dddbe 100644 --- a/files/en-us/web/api/bluetoothremotegattservice/isprimary/index.html +++ b/files/en-us/web/api/bluetoothremotegattservice/isprimary/index.html @@ -42,8 +42,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTService.isPrimary")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/bluetoothremotegattservice/uuid/index.html b/files/en-us/web/api/bluetoothremotegattservice/uuid/index.html index 78337af86d66187..846c8237abbb3d5 100644 --- a/files/en-us/web/api/bluetoothremotegattservice/uuid/index.html +++ b/files/en-us/web/api/bluetoothremotegattservice/uuid/index.html @@ -42,8 +42,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BluetoothRemoteGATTService.uuid")}}

      {{APIRef("Web Bluetooth")}}
      diff --git a/files/en-us/web/api/body/arraybuffer/index.html b/files/en-us/web/api/body/arraybuffer/index.html index 826ddf3a2edfa5a..b6fca710a90854b 100644 --- a/files/en-us/web/api/body/arraybuffer/index.html +++ b/files/en-us/web/api/body/arraybuffer/index.html @@ -94,8 +94,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Body.arrayBuffer")}}

      See also

      diff --git a/files/en-us/web/api/body/blob/index.html b/files/en-us/web/api/body/blob/index.html index ff00e45e84ea708..061ffbd898cf88a 100644 --- a/files/en-us/web/api/body/blob/index.html +++ b/files/en-us/web/api/body/blob/index.html @@ -65,8 +65,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Body.blob")}}

      See also

      diff --git a/files/en-us/web/api/body/body/index.html b/files/en-us/web/api/body/body/index.html index d5b91d041428770..a8f4fe50e44ae03 100644 --- a/files/en-us/web/api/body/body/index.html +++ b/files/en-us/web/api/body/body/index.html @@ -80,8 +80,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Body.body")}}

      See also

      diff --git a/files/en-us/web/api/body/bodyused/index.html b/files/en-us/web/api/body/bodyused/index.html index e9746028cb018da..d31d3ee3da5fa51 100644 --- a/files/en-us/web/api/body/bodyused/index.html +++ b/files/en-us/web/api/body/bodyused/index.html @@ -67,8 +67,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Body.bodyUsed")}}

      See also

      diff --git a/files/en-us/web/api/body/formdata/index.html b/files/en-us/web/api/body/formdata/index.html index 5349d5ff4d0876c..7bb7990c6b514bb 100644 --- a/files/en-us/web/api/body/formdata/index.html +++ b/files/en-us/web/api/body/formdata/index.html @@ -58,8 +58,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Body.formData")}}

      See also

      diff --git a/files/en-us/web/api/body/index.html b/files/en-us/web/api/body/index.html index 8b8ac1c4fbc134b..6acf5287321ba7b 100644 --- a/files/en-us/web/api/body/index.html +++ b/files/en-us/web/api/body/index.html @@ -81,8 +81,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Body")}}

      See also

      diff --git a/files/en-us/web/api/body/json/index.html b/files/en-us/web/api/body/json/index.html index 7d6e8af2b22d8d4..dca522f2cd277cd 100644 --- a/files/en-us/web/api/body/json/index.html +++ b/files/en-us/web/api/body/json/index.html @@ -77,8 +77,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Body.json")}}

      See also

      diff --git a/files/en-us/web/api/body/text/index.html b/files/en-us/web/api/body/text/index.html index 619f9742db5729b..fd85df9ba2f7303 100644 --- a/files/en-us/web/api/body/text/index.html +++ b/files/en-us/web/api/body/text/index.html @@ -76,8 +76,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Body.text")}}

      See also

      diff --git a/files/en-us/web/api/broadcast_channel_api/index.html b/files/en-us/web/api/broadcast_channel_api/index.html index ecb6946faa8fd47..b5af09c05383b13 100644 --- a/files/en-us/web/api/broadcast_channel_api/index.html +++ b/files/en-us/web/api/broadcast_channel_api/index.html @@ -81,8 +81,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BroadcastChannel")}}

      See also

      diff --git a/files/en-us/web/api/broadcastchannel/broadcastchannel/index.html b/files/en-us/web/api/broadcastchannel/broadcastchannel/index.html index 63a60318cbb4d13..2a6d054cc56e5a2 100644 --- a/files/en-us/web/api/broadcastchannel/broadcastchannel/index.html +++ b/files/en-us/web/api/broadcastchannel/broadcastchannel/index.html @@ -54,8 +54,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BroadcastChannel.BroadcastChannel")}}

      See also

      diff --git a/files/en-us/web/api/broadcastchannel/close/index.html b/files/en-us/web/api/broadcastchannel/close/index.html index e7d7535042e8d72..f98488d40ee82cd 100644 --- a/files/en-us/web/api/broadcastchannel/close/index.html +++ b/files/en-us/web/api/broadcastchannel/close/index.html @@ -51,8 +51,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BroadcastChannel.close")}}

      See also

      diff --git a/files/en-us/web/api/broadcastchannel/index.html b/files/en-us/web/api/broadcastchannel/index.html index 5b64012b520c88a..46008bc40cb9206 100644 --- a/files/en-us/web/api/broadcastchannel/index.html +++ b/files/en-us/web/api/broadcastchannel/index.html @@ -81,8 +81,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BroadcastChannel")}}

      See also

      diff --git a/files/en-us/web/api/broadcastchannel/message_event/index.html b/files/en-us/web/api/broadcastchannel/message_event/index.html index 0bff2467cb3ebf8..6f1ff00b3a8544e 100644 --- a/files/en-us/web/api/broadcastchannel/message_event/index.html +++ b/files/en-us/web/api/broadcastchannel/message_event/index.html @@ -158,8 +158,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BroadcastChannel.message_event")}}

      See also

      diff --git a/files/en-us/web/api/broadcastchannel/messageerror_event/index.html b/files/en-us/web/api/broadcastchannel/messageerror_event/index.html index cc8bc91bd07393d..592e4cbb623a79d 100644 --- a/files/en-us/web/api/broadcastchannel/messageerror_event/index.html +++ b/files/en-us/web/api/broadcastchannel/messageerror_event/index.html @@ -73,8 +73,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BroadcastChannel.messageerror_event")}}

      See also

      diff --git a/files/en-us/web/api/broadcastchannel/name/index.html b/files/en-us/web/api/broadcastchannel/name/index.html index fc1906939104079..37f4565717d1aa0 100644 --- a/files/en-us/web/api/broadcastchannel/name/index.html +++ b/files/en-us/web/api/broadcastchannel/name/index.html @@ -53,8 +53,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BroadcastChannel.name")}}

      See also

      diff --git a/files/en-us/web/api/broadcastchannel/onmessage/index.html b/files/en-us/web/api/broadcastchannel/onmessage/index.html index 0351fc52dc214c8..380feedd714a5a3 100644 --- a/files/en-us/web/api/broadcastchannel/onmessage/index.html +++ b/files/en-us/web/api/broadcastchannel/onmessage/index.html @@ -52,8 +52,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BroadcastChannel.onmessage")}}

      See also

      diff --git a/files/en-us/web/api/broadcastchannel/onmessageerror/index.html b/files/en-us/web/api/broadcastchannel/onmessageerror/index.html index 91cf8d1c0970889..271c1e19ae9a97d 100644 --- a/files/en-us/web/api/broadcastchannel/onmessageerror/index.html +++ b/files/en-us/web/api/broadcastchannel/onmessageerror/index.html @@ -40,7 +40,6 @@

      Browser compatibility

      -

      {{Compat("api.BroadcastChannel.onmessageerror")}}

      diff --git a/files/en-us/web/api/broadcastchannel/postmessage/index.html b/files/en-us/web/api/broadcastchannel/postmessage/index.html index 8f629702a2b2d14..aa3563485adaf35 100644 --- a/files/en-us/web/api/broadcastchannel/postmessage/index.html +++ b/files/en-us/web/api/broadcastchannel/postmessage/index.html @@ -40,8 +40,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.BroadcastChannel.postMessage")}}

      See also

      diff --git a/files/en-us/web/api/budgetservice/index.html b/files/en-us/web/api/budgetservice/index.html index ec8a55c0188fc88..74cbaae88457652 100644 --- a/files/en-us/web/api/budgetservice/index.html +++ b/files/en-us/web/api/budgetservice/index.html @@ -31,6 +31,5 @@

      Browser Compatibility

      -

      {{Compat("api.BudgetService")}}

      diff --git a/files/en-us/web/api/budgetservice/reserve/index.html b/files/en-us/web/api/budgetservice/reserve/index.html index fecf79f5fd576d2..89210bc1fc41e1a 100644 --- a/files/en-us/web/api/budgetservice/reserve/index.html +++ b/files/en-us/web/api/budgetservice/reserve/index.html @@ -33,6 +33,5 @@

      Browser Compatibility

      -

      {{Compat("api.BudgetService.reserve")}}

      diff --git a/files/en-us/web/api/bytelengthqueuingstrategy/bytelengthqueuingstrategy/index.html b/files/en-us/web/api/bytelengthqueuingstrategy/bytelengthqueuingstrategy/index.html index ee240928570eb02..3fbe9ca5b56d7c4 100644 --- a/files/en-us/web/api/bytelengthqueuingstrategy/bytelengthqueuingstrategy/index.html +++ b/files/en-us/web/api/bytelengthqueuingstrategy/bytelengthqueuingstrategy/index.html @@ -69,6 +69,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ByteLengthQueuingStrategy.ByteLengthQueuingStrategy")}}

      diff --git a/files/en-us/web/api/bytelengthqueuingstrategy/index.html b/files/en-us/web/api/bytelengthqueuingstrategy/index.html index 5ee38cc0ec8713d..0ce56c32d86a419 100644 --- a/files/en-us/web/api/bytelengthqueuingstrategy/index.html +++ b/files/en-us/web/api/bytelengthqueuingstrategy/index.html @@ -70,6 +70,5 @@

      Browser Compatibility

      -

      {{Compat("api.ByteLengthQueuingStrategy")}}

      diff --git a/files/en-us/web/api/bytelengthqueuingstrategy/size/index.html b/files/en-us/web/api/bytelengthqueuingstrategy/size/index.html index 3ea693d6fd42808..3a36bb881b11160 100644 --- a/files/en-us/web/api/bytelengthqueuingstrategy/size/index.html +++ b/files/en-us/web/api/bytelengthqueuingstrategy/size/index.html @@ -66,6 +66,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ByteLengthQueuingStrategy.size")}}

      diff --git a/files/en-us/web/api/cache/add/index.html b/files/en-us/web/api/cache/add/index.html index 1ccd69684541d97..41d01011747cb44 100644 --- a/files/en-us/web/api/cache/add/index.html +++ b/files/en-us/web/api/cache/add/index.html @@ -101,7 +101,6 @@

      Browser compatibility

      -

      {{Compat("api.Cache.add")}}

      diff --git a/files/en-us/web/api/cache/addall/index.html b/files/en-us/web/api/cache/addall/index.html index daf51cedabaf30d..a1906f6e3dc296e 100644 --- a/files/en-us/web/api/cache/addall/index.html +++ b/files/en-us/web/api/cache/addall/index.html @@ -105,7 +105,6 @@

      Browser compatibility

      -

      {{Compat("api.Cache.addAll")}}

      diff --git a/files/en-us/web/api/cache/delete/index.html b/files/en-us/web/api/cache/delete/index.html index ffbfb6c2f9f63d8..b12d86aedd43b3d 100644 --- a/files/en-us/web/api/cache/delete/index.html +++ b/files/en-us/web/api/cache/delete/index.html @@ -73,7 +73,6 @@

      Browser compatibility

      -

      {{Compat("api.Cache.delete")}}

      diff --git a/files/en-us/web/api/cache/index.html b/files/en-us/web/api/cache/index.html index defb997be4b1731..1c468916c4f4e31 100644 --- a/files/en-us/web/api/cache/index.html +++ b/files/en-us/web/api/cache/index.html @@ -177,7 +177,6 @@

      Browser compatibility

      -

      {{Compat("api.Cache")}}

      diff --git a/files/en-us/web/api/cache/keys/index.html b/files/en-us/web/api/cache/keys/index.html index e18cc3ad6ffab24..916eca1e1191235 100644 --- a/files/en-us/web/api/cache/keys/index.html +++ b/files/en-us/web/api/cache/keys/index.html @@ -79,7 +79,6 @@

      Browser compatibility

      -

      {{Compat("api.Cache.keys")}}

      diff --git a/files/en-us/web/api/cache/match/index.html b/files/en-us/web/api/cache/match/index.html index 4ae244c3326fe51..113d979afa5f799 100644 --- a/files/en-us/web/api/cache/match/index.html +++ b/files/en-us/web/api/cache/match/index.html @@ -89,7 +89,6 @@

      Browser compatibility

      -

      {{Compat("api.Cache.match")}}

      diff --git a/files/en-us/web/api/cache/matchall/index.html b/files/en-us/web/api/cache/matchall/index.html index ad05959f561f05e..4397611befdebb9 100644 --- a/files/en-us/web/api/cache/matchall/index.html +++ b/files/en-us/web/api/cache/matchall/index.html @@ -76,7 +76,6 @@

      Browser compatibility

      -

      {{Compat("api.Cache.matchAll")}}

      diff --git a/files/en-us/web/api/cache/put/index.html b/files/en-us/web/api/cache/put/index.html index cf395ec397e1b46..ec588b82d711d4c 100644 --- a/files/en-us/web/api/cache/put/index.html +++ b/files/en-us/web/api/cache/put/index.html @@ -102,8 +102,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Cache.put")}}

      See also

      diff --git a/files/en-us/web/api/cachestorage/delete/index.html b/files/en-us/web/api/cachestorage/delete/index.html index 239d541ce6e6377..39375c518e35bc9 100644 --- a/files/en-us/web/api/cachestorage/delete/index.html +++ b/files/en-us/web/api/cachestorage/delete/index.html @@ -72,8 +72,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CacheStorage.delete")}}

      See also

      diff --git a/files/en-us/web/api/cachestorage/has/index.html b/files/en-us/web/api/cachestorage/has/index.html index 90d3dc4e47e72e5..38d9d48ffc2ad3c 100644 --- a/files/en-us/web/api/cachestorage/has/index.html +++ b/files/en-us/web/api/cachestorage/has/index.html @@ -70,8 +70,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CacheStorage.has")}}

      See also

      diff --git a/files/en-us/web/api/cachestorage/index.html b/files/en-us/web/api/cachestorage/index.html index 9a5416139ff4ed2..c36fd618052fd7a 100644 --- a/files/en-us/web/api/cachestorage/index.html +++ b/files/en-us/web/api/cachestorage/index.html @@ -182,8 +182,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CacheStorage")}}

      See also

      diff --git a/files/en-us/web/api/cachestorage/keys/index.html b/files/en-us/web/api/cachestorage/keys/index.html index 20f2a3b527f6c17..36f483f31e6021b 100644 --- a/files/en-us/web/api/cachestorage/keys/index.html +++ b/files/en-us/web/api/cachestorage/keys/index.html @@ -70,8 +70,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CacheStorage.keys")}}

      See also

      diff --git a/files/en-us/web/api/cachestorage/match/index.html b/files/en-us/web/api/cachestorage/match/index.html index 0c9283f42bed792..bf35432c362277f 100644 --- a/files/en-us/web/api/cachestorage/match/index.html +++ b/files/en-us/web/api/cachestorage/match/index.html @@ -103,8 +103,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CacheStorage.match")}}

      See also

      diff --git a/files/en-us/web/api/cachestorage/open/index.html b/files/en-us/web/api/cachestorage/open/index.html index 7d0d01d34474736..6f95dc666ecda90 100644 --- a/files/en-us/web/api/cachestorage/open/index.html +++ b/files/en-us/web/api/cachestorage/open/index.html @@ -81,8 +81,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CacheStorage.open")}}

      See also

      diff --git a/files/en-us/web/api/canvas_api/tutorial/pixel_manipulation_with_canvas/index.html b/files/en-us/web/api/canvas_api/tutorial/pixel_manipulation_with_canvas/index.html index 534f62d08c35002..1df6df043fc86dd 100644 --- a/files/en-us/web/api/canvas_api/tutorial/pixel_manipulation_with_canvas/index.html +++ b/files/en-us/web/api/canvas_api/tutorial/pixel_manipulation_with_canvas/index.html @@ -121,7 +121,6 @@

      A color picker

      var hoveredColor = document.getElementById('hovered-color'); var selectedColor = document.getElementById('selected-color'); - function pick(event, destination) {   var x = event.layerX;   var y = event.layerY; diff --git a/files/en-us/web/api/canvascapturemediastreamtrack/canvas/index.html b/files/en-us/web/api/canvascapturemediastreamtrack/canvas/index.html index a89b89833c1bcac..5e8e443a5b1d61e 100644 --- a/files/en-us/web/api/canvascapturemediastreamtrack/canvas/index.html +++ b/files/en-us/web/api/canvascapturemediastreamtrack/canvas/index.html @@ -63,7 +63,6 @@

      Browser compatibility

      -

      {{Compat("api.CanvasCaptureMediaStreamTrack.canvas")}}

      diff --git a/files/en-us/web/api/canvascapturemediastreamtrack/index.html b/files/en-us/web/api/canvascapturemediastreamtrack/index.html index 7cc72a2f89393c6..fa38e74cd3a1a51 100644 --- a/files/en-us/web/api/canvascapturemediastreamtrack/index.html +++ b/files/en-us/web/api/canvascapturemediastreamtrack/index.html @@ -58,7 +58,6 @@

      Browser compatibility

      -

      {{Compat("api.CanvasCaptureMediaStreamTrack")}}

      diff --git a/files/en-us/web/api/canvascapturemediastreamtrack/requestframe/index.html b/files/en-us/web/api/canvascapturemediastreamtrack/requestframe/index.html index dd6e60646c5d13c..d98f6a2cdcb4ee3 100644 --- a/files/en-us/web/api/canvascapturemediastreamtrack/requestframe/index.html +++ b/files/en-us/web/api/canvascapturemediastreamtrack/requestframe/index.html @@ -64,8 +64,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasCaptureMediaStreamTrack.requestFrame")}}

      See also

      diff --git a/files/en-us/web/api/canvasgradient/addcolorstop/index.html b/files/en-us/web/api/canvasgradient/addcolorstop/index.html index 19dc8e237d567e9..d1eb3c397290c07 100644 --- a/files/en-us/web/api/canvasgradient/addcolorstop/index.html +++ b/files/en-us/web/api/canvasgradient/addcolorstop/index.html @@ -74,8 +74,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasGradient.addColorStop")}}

      See also

      diff --git a/files/en-us/web/api/canvasgradient/index.html b/files/en-us/web/api/canvasgradient/index.html index 9e21ba7c61a1fe7..9a4dff7e8894e49 100644 --- a/files/en-us/web/api/canvasgradient/index.html +++ b/files/en-us/web/api/canvasgradient/index.html @@ -45,8 +45,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasGradient")}}

      See also

      diff --git a/files/en-us/web/api/canvaspattern/index.html b/files/en-us/web/api/canvaspattern/index.html index 3e75051f38f7879..08b0d74992b33b2 100644 --- a/files/en-us/web/api/canvaspattern/index.html +++ b/files/en-us/web/api/canvaspattern/index.html @@ -49,7 +49,6 @@

      Browser compatibility

      -

      {{Compat("api.CanvasPattern")}}

      diff --git a/files/en-us/web/api/canvaspattern/settransform/index.html b/files/en-us/web/api/canvaspattern/settransform/index.html index b23363b5875399e..b74804f4f223bd9 100644 --- a/files/en-us/web/api/canvaspattern/settransform/index.html +++ b/files/en-us/web/api/canvaspattern/settransform/index.html @@ -132,8 +132,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasPattern.setTransform")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/addhitregion/index.html b/files/en-us/web/api/canvasrenderingcontext2d/addhitregion/index.html index e177c7583a98614..240e2abefeab83d 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/addhitregion/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/addhitregion/index.html @@ -158,8 +158,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.addHitRegion")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/arc/index.html b/files/en-us/web/api/canvasrenderingcontext2d/arc/index.html index 794a06e819d0b72..5f0643ff4ae1ae1 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/arc/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/arc/index.html @@ -123,8 +123,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.arc")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/arcto/index.html b/files/en-us/web/api/canvasrenderingcontext2d/arcto/index.html index 5740738d8cec991..a93bc6a66d06e63 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/arcto/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/arcto/index.html @@ -212,7 +212,6 @@

      JavaScript

        ctx.stroke(); } - let t0 = 0; let rr = 0; // the radius that changes over time let a  = 0; // angle @@ -254,8 +253,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.arcTo")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/beginpath/index.html b/files/en-us/web/api/canvasrenderingcontext2d/beginpath/index.html index 7dad1272222a0ef..d9762493feffde5 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/beginpath/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/beginpath/index.html @@ -77,8 +77,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.beginPath")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/beziercurveto/index.html b/files/en-us/web/api/canvasrenderingcontext2d/beziercurveto/index.html index d3c6aa2fee32e9f..20d6053f7e4d832 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/beziercurveto/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/beziercurveto/index.html @@ -127,8 +127,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.bezierCurveTo")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/canvas/index.html b/files/en-us/web/api/canvasrenderingcontext2d/canvas/index.html index 53d7cad884d9e1a..924a3f12e301ba0 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/canvas/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/canvas/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.canvas")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/clearhitregions/index.html b/files/en-us/web/api/canvasrenderingcontext2d/clearhitregions/index.html index 4dd060033026ced..971b31ececb46a4 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/clearhitregions/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/clearhitregions/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.clearHitRegions")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/clearrect/index.html b/files/en-us/web/api/canvasrenderingcontext2d/clearrect/index.html index 90fd32d2cab1506..ee6c782b92d51b4 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/clearrect/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/clearrect/index.html @@ -103,8 +103,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.clearRect")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/clip/index.html b/files/en-us/web/api/canvasrenderingcontext2d/clip/index.html index 2e7d2b910c050b2..4c6847e8413cdf9 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/clip/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/clip/index.html @@ -154,8 +154,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.clip")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/closepath/index.html b/files/en-us/web/api/canvasrenderingcontext2d/closepath/index.html index 6c911ed61b5fbd9..36cf2cda4e4f0d0 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/closepath/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/closepath/index.html @@ -103,8 +103,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.closePath")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/createimagedata/index.html b/files/en-us/web/api/canvasrenderingcontext2d/createimagedata/index.html index b2d83fbe4261f53..0cb157f74fae30a 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/createimagedata/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/createimagedata/index.html @@ -119,8 +119,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.createImageData")}}

      Gecko-specific notes

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/createlineargradient/index.html b/files/en-us/web/api/canvasrenderingcontext2d/createlineargradient/index.html index e942faa4bc6c0bc..4f91f64564a29ce 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/createlineargradient/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/createlineargradient/index.html @@ -102,8 +102,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.createLinearGradient")}}

      Gecko-specific notes

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/createpattern/index.html b/files/en-us/web/api/canvasrenderingcontext2d/createpattern/index.html index d3e639eff4a04d2..b835145fd6023c5 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/createpattern/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/createpattern/index.html @@ -135,8 +135,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.createPattern")}}

      Gecko-specific notes

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/createradialgradient/index.html b/files/en-us/web/api/canvasrenderingcontext2d/createradialgradient/index.html index 8e7d78b91b436a4..9bfe26d32adcfc2 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/createradialgradient/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/createradialgradient/index.html @@ -104,8 +104,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.createRadialGradient")}}

      Gecko-specific notes

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/currenttransform/index.html b/files/en-us/web/api/canvasrenderingcontext2d/currenttransform/index.html index 7a2234e572b1c3a..f096fa5abba788b 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/currenttransform/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/currenttransform/index.html @@ -56,8 +56,6 @@

      Result

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.currentTransform")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/direction/index.html b/files/en-us/web/api/canvasrenderingcontext2d/direction/index.html index fefed4afea887f4..c8b6040174e03dd 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/direction/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/direction/index.html @@ -78,8 +78,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.direction")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/drawfocusifneeded/index.html b/files/en-us/web/api/canvasrenderingcontext2d/drawfocusifneeded/index.html index 1f06f82aca74673..6a5e252cf651090 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/drawfocusifneeded/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/drawfocusifneeded/index.html @@ -126,8 +126,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.drawFocusIfNeeded")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/drawimage/index.html b/files/en-us/web/api/canvasrenderingcontext2d/drawimage/index.html index 774fba6b6b628cd..65d4cc3c18952a9 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/drawimage/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/drawimage/index.html @@ -149,8 +149,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.drawImage")}}

      Gecko-specific notes

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/drawwidgetasonscreen/index.html b/files/en-us/web/api/canvasrenderingcontext2d/drawwidgetasonscreen/index.html index 2bb88e521da23d1..f7e3cd7eebe4a11 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/drawwidgetasonscreen/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/drawwidgetasonscreen/index.html @@ -33,8 +33,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.drawWidgetAsOnScreen")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/drawwindow/index.html b/files/en-us/web/api/canvasrenderingcontext2d/drawwindow/index.html index b6bd766b743f6bc..c82f05c660dea55 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/drawwindow/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/drawwindow/index.html @@ -102,8 +102,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.drawWindow")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/ellipse/index.html b/files/en-us/web/api/canvasrenderingcontext2d/ellipse/index.html index 7ca7398f1265a7d..39b6f35451ab92b 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/ellipse/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/ellipse/index.html @@ -126,8 +126,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.ellipse")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/fill/index.html b/files/en-us/web/api/canvasrenderingcontext2d/fill/index.html index 1deea3fe379185c..432522b9ef834ef 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/fill/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/fill/index.html @@ -108,8 +108,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.fill")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/fillrect/index.html b/files/en-us/web/api/canvasrenderingcontext2d/fillrect/index.html index abe8e910a93c959..47a23f3c2c42ab4 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/fillrect/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/fillrect/index.html @@ -86,8 +86,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.fillRect")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/fillstyle/index.html b/files/en-us/web/api/canvasrenderingcontext2d/fillstyle/index.html index 4ba4427449fe400..fa5402ee3c55a95 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/fillstyle/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/fillstyle/index.html @@ -103,8 +103,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.fillStyle")}}

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/filltext/index.html b/files/en-us/web/api/canvasrenderingcontext2d/filltext/index.html index 37222fdc1b90e8f..b2befc8de85b506 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/filltext/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/filltext/index.html @@ -123,8 +123,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.fillText")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/filter/index.html b/files/en-us/web/api/canvasrenderingcontext2d/filter/index.html index f36d1d377a38fb9..311db51c3b181bc 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/filter/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/filter/index.html @@ -133,8 +133,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.filter")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/font/index.html b/files/en-us/web/api/canvasrenderingcontext2d/font/index.html index dbf68b89baca405..57f0d5381e841b7 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/font/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/font/index.html @@ -77,8 +77,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.font")}}

      Gecko-specific notes

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/getimagedata/index.html b/files/en-us/web/api/canvasrenderingcontext2d/getimagedata/index.html index 6c5932f3694f3b4..ae88c173b758d94 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/getimagedata/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/getimagedata/index.html @@ -106,8 +106,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.getImageData")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/getlinedash/index.html b/files/en-us/web/api/canvasrenderingcontext2d/getlinedash/index.html index 695e0cf1d81cc1e..2875232f9d8e854 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/getlinedash/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/getlinedash/index.html @@ -71,8 +71,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.getLineDash")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/gettransform/index.html b/files/en-us/web/api/canvasrenderingcontext2d/gettransform/index.html index 8d078eb195b6139..6c5f0f620241c52 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/gettransform/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/gettransform/index.html @@ -89,8 +89,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.getTransform")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/globalalpha/index.html b/files/en-us/web/api/canvasrenderingcontext2d/globalalpha/index.html index 33e445d43dd3134..8a9282dfec00d19 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/globalalpha/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/globalalpha/index.html @@ -113,8 +113,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.globalAlpha")}}

      Gecko-specific notes

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/globalcompositeoperation/index.html b/files/en-us/web/api/canvasrenderingcontext2d/globalcompositeoperation/index.html index e94f7a2f36b0716..466d4ea2ef6a96a 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/globalcompositeoperation/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/globalcompositeoperation/index.html @@ -79,8 +79,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.globalCompositeOperation")}}

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/imagesmoothingenabled/index.html b/files/en-us/web/api/canvasrenderingcontext2d/imagesmoothingenabled/index.html index 75c23eee91c126c..1cb6eb00cd68e07 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/imagesmoothingenabled/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/imagesmoothingenabled/index.html @@ -90,8 +90,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.imageSmoothingEnabled")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/imagesmoothingquality/index.html b/files/en-us/web/api/canvasrenderingcontext2d/imagesmoothingquality/index.html index 59465a06445c478..9f96520d348f27d 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/imagesmoothingquality/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/imagesmoothingquality/index.html @@ -83,8 +83,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.imageSmoothingQuality")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/index.html b/files/en-us/web/api/canvasrenderingcontext2d/index.html index c528af465ec1d24..1f09f9b01192b3d 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/index.html @@ -348,7 +348,6 @@

      WebKit only

      Intended for HD backing stores, but removed from canvas specifications.
      -

      Gecko only

      Prefixed APIs

      @@ -409,7 +408,6 @@

      Browser compatibility

      -

      {{Compat("api.CanvasRenderingContext2D")}}

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/ispointinpath/index.html b/files/en-us/web/api/canvasrenderingcontext2d/ispointinpath/index.html index e8c1a8d4ea5b136..d4b81c286f94ac5 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/ispointinpath/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/ispointinpath/index.html @@ -130,8 +130,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.isPointInPath")}}

      Gecko-specific note

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/ispointinstroke/index.html b/files/en-us/web/api/canvasrenderingcontext2d/ispointinstroke/index.html index 660a64ebbf5c749..1a43d66174a242b 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/ispointinstroke/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/ispointinstroke/index.html @@ -125,8 +125,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.isPointInStroke")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/linecap/index.html b/files/en-us/web/api/canvasrenderingcontext2d/linecap/index.html index 4e616e655955c69..38bf78e0c7b4d81 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/linecap/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/linecap/index.html @@ -116,8 +116,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.lineCap")}}

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/linedashoffset/index.html b/files/en-us/web/api/canvasrenderingcontext2d/linedashoffset/index.html index a6e5576886dbff4..278f475c54d01df 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/linedashoffset/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/linedashoffset/index.html @@ -118,8 +118,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.lineDashOffset")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/linejoin/index.html b/files/en-us/web/api/canvasrenderingcontext2d/linejoin/index.html index cffdbb7cbb5ed1e..e1277bd92727ce4 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/linejoin/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/linejoin/index.html @@ -113,8 +113,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.lineJoin")}}

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/lineto/index.html b/files/en-us/web/api/canvasrenderingcontext2d/lineto/index.html index 08b29092b066881..0ff34778d6feb93 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/lineto/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/lineto/index.html @@ -104,8 +104,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.lineTo")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/linewidth/index.html b/files/en-us/web/api/canvasrenderingcontext2d/linewidth/index.html index bf556491632dacf..9756a02a70bb4b0 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/linewidth/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/linewidth/index.html @@ -79,8 +79,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.lineWidth")}}

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/measuretext/index.html b/files/en-us/web/api/canvasrenderingcontext2d/measuretext/index.html index 53ec6efcf4757e2..3b2aada45660cd5 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/measuretext/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/measuretext/index.html @@ -62,8 +62,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.measureText")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/miterlimit/index.html b/files/en-us/web/api/canvasrenderingcontext2d/miterlimit/index.html index cef7e843904fcf3..aef9fad36d83c97 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/miterlimit/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/miterlimit/index.html @@ -96,8 +96,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.miterLimit")}}

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/moveto/index.html b/files/en-us/web/api/canvasrenderingcontext2d/moveto/index.html index bac7c9583841d2b..8ec8fe4fcf6cd44 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/moveto/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/moveto/index.html @@ -75,8 +75,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.moveTo")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/putimagedata/index.html b/files/en-us/web/api/canvasrenderingcontext2d/putimagedata/index.html index 94da75120abf423..9db00185a849158 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/putimagedata/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/putimagedata/index.html @@ -151,8 +151,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.putImageData")}}

      Gecko-specific notes

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/quadraticcurveto/index.html b/files/en-us/web/api/canvasrenderingcontext2d/quadraticcurveto/index.html index f8d21945552789a..71e085a3384f13e 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/quadraticcurveto/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/quadraticcurveto/index.html @@ -117,8 +117,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.quadraticCurveTo")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/rect/index.html b/files/en-us/web/api/canvasrenderingcontext2d/rect/index.html index 497a0f8f4019221..5c6d5605661fa2b 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/rect/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/rect/index.html @@ -82,8 +82,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.rect")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/removehitregion/index.html b/files/en-us/web/api/canvasrenderingcontext2d/removehitregion/index.html index 3e6845a6ce0cdf3..ea07c8eeba3b2d2 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/removehitregion/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/removehitregion/index.html @@ -54,8 +54,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.removeHitRegion")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/resettransform/index.html b/files/en-us/web/api/canvasrenderingcontext2d/resettransform/index.html index 9c38690906d6014..a8e4a87fbc57a01 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/resettransform/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/resettransform/index.html @@ -104,8 +104,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.resetTransform")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/restore/index.html b/files/en-us/web/api/canvasrenderingcontext2d/restore/index.html index 377ec7ebe20a091..00fc81a29c373d1 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/restore/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/restore/index.html @@ -69,8 +69,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.restore")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/rotate/index.html b/files/en-us/web/api/canvasrenderingcontext2d/rotate/index.html index b1c24fe9742fe47..1dc2b7598bfb1d7 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/rotate/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/rotate/index.html @@ -129,8 +129,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.rotate")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/save/index.html b/files/en-us/web/api/canvasrenderingcontext2d/save/index.html index 93285ac2f45eea8..06ae617a50e8321 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/save/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/save/index.html @@ -78,8 +78,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.save")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/scale/index.html b/files/en-us/web/api/canvasrenderingcontext2d/scale/index.html index 29d62e3c4aea696..154ae4f276463fa 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/scale/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/scale/index.html @@ -112,8 +112,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.scale")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/scrollpathintoview/index.html b/files/en-us/web/api/canvasrenderingcontext2d/scrollpathintoview/index.html index 9a260c034e92132..e3e0b21fa273457 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/scrollpathintoview/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/scrollpathintoview/index.html @@ -112,8 +112,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.scrollPathIntoView")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/setlinedash/index.html b/files/en-us/web/api/canvasrenderingcontext2d/setlinedash/index.html index 89e41aeeb202cb2..c2519e43d9f6ba1 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/setlinedash/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/setlinedash/index.html @@ -130,8 +130,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.setLineDash")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/settransform/index.html b/files/en-us/web/api/canvasrenderingcontext2d/settransform/index.html index d2c79f068ef325f..2476f57f07094b7 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/settransform/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/settransform/index.html @@ -127,8 +127,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.setTransform")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/shadowblur/index.html b/files/en-us/web/api/canvasrenderingcontext2d/shadowblur/index.html index 3b26908a6f0688b..dd7f9f1bd060080 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/shadowblur/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/shadowblur/index.html @@ -74,8 +74,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.shadowBlur")}}

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/shadowcolor/index.html b/files/en-us/web/api/canvasrenderingcontext2d/shadowcolor/index.html index d5482e768c94477..6bc52b7f6ae8ec7 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/shadowcolor/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/shadowcolor/index.html @@ -114,8 +114,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.shadowColor")}}

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/shadowoffsetx/index.html b/files/en-us/web/api/canvasrenderingcontext2d/shadowoffsetx/index.html index d597be6bc9a8ce0..e832433fd207c9e 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/shadowoffsetx/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/shadowoffsetx/index.html @@ -75,8 +75,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.shadowOffsetX")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/shadowoffsety/index.html b/files/en-us/web/api/canvasrenderingcontext2d/shadowoffsety/index.html index 327c351681e4ed4..97fa1a0477387f7 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/shadowoffsety/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/shadowoffsety/index.html @@ -75,8 +75,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.shadowOffsetY")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/stroke/index.html b/files/en-us/web/api/canvasrenderingcontext2d/stroke/index.html index 615f0968816aa21..5edbf57a48af41b 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/stroke/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/stroke/index.html @@ -144,8 +144,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.stroke")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/strokerect/index.html b/files/en-us/web/api/canvasrenderingcontext2d/strokerect/index.html index e5866fe3779eaac..c5336ac8713dcd6 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/strokerect/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/strokerect/index.html @@ -102,8 +102,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.strokeRect")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/strokestyle/index.html b/files/en-us/web/api/canvasrenderingcontext2d/strokestyle/index.html index b47f9b5ea81f995..bbc1d7925ccbfa2 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/strokestyle/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/strokestyle/index.html @@ -104,8 +104,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.strokeStyle")}}

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/stroketext/index.html b/files/en-us/web/api/canvasrenderingcontext2d/stroketext/index.html index 70a09e8b56d3586..0ace899cb37b464 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/stroketext/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/stroketext/index.html @@ -48,7 +48,6 @@

      Return value

      {{jsxref("undefined")}}.

      -

      Examples

      Drawing text outlines

      @@ -122,8 +121,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.strokeText")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/textalign/index.html b/files/en-us/web/api/canvasrenderingcontext2d/textalign/index.html index 6a7801c18f238da..1a3b492dc1a68b7 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/textalign/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/textalign/index.html @@ -124,8 +124,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.textAlign")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/textbaseline/index.html b/files/en-us/web/api/canvasrenderingcontext2d/textbaseline/index.html index 13a650c1182cbc7..d45c09b752c92ee 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/textbaseline/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/textbaseline/index.html @@ -92,8 +92,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.textBaseline")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/transform/index.html b/files/en-us/web/api/canvasrenderingcontext2d/transform/index.html index 6af845473b2ff96..12332adffe84312 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/transform/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/transform/index.html @@ -83,8 +83,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.transform")}}

      See also

      diff --git a/files/en-us/web/api/canvasrenderingcontext2d/translate/index.html b/files/en-us/web/api/canvasrenderingcontext2d/translate/index.html index 9e526b76e27b7bf..980dec229010680 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/translate/index.html +++ b/files/en-us/web/api/canvasrenderingcontext2d/translate/index.html @@ -86,8 +86,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CanvasRenderingContext2D.translate")}}

      See also

      diff --git a/files/en-us/web/api/cdatasection/index.html b/files/en-us/web/api/cdatasection/index.html index 56684bcbf12cefd..981b76f9f5ca131 100644 --- a/files/en-us/web/api/cdatasection/index.html +++ b/files/en-us/web/api/cdatasection/index.html @@ -80,6 +80,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CDATASection")}}

      diff --git a/files/en-us/web/api/channel_messaging_api/index.html b/files/en-us/web/api/channel_messaging_api/index.html index b125ccdf4070449..a8f9b1d10c3290b 100644 --- a/files/en-us/web/api/channel_messaging_api/index.html +++ b/files/en-us/web/api/channel_messaging_api/index.html @@ -65,8 +65,6 @@

      Browser compatibility

      MessageChannel

      - -

      {{Compat("api.MessageChannel", 0)}}

      MessagePort

      diff --git a/files/en-us/web/api/channel_messaging_api/using_channel_messaging/index.html b/files/en-us/web/api/channel_messaging_api/using_channel_messaging/index.html index e6d3f1d87949f2e..bc67f99f5c8dad2 100644 --- a/files/en-us/web/api/channel_messaging_api/using_channel_messaging/index.html +++ b/files/en-us/web/api/channel_messaging_api/using_channel_messaging/index.html @@ -153,8 +153,6 @@

      Browser compatibility

      MessageChannel

      - -

      {{Compat("api.MessageChannel", 0)}}

      MessagePort

      @@ -163,7 +161,6 @@

      MessagePort

      {{Compat("api.MessagePort", 0)}}

      -

      See also

        diff --git a/files/en-us/web/api/channelmergernode/index.html b/files/en-us/web/api/channelmergernode/index.html index de032a272eb7b05..f7fa1ae0e3a772f 100644 --- a/files/en-us/web/api/channelmergernode/index.html +++ b/files/en-us/web/api/channelmergernode/index.html @@ -83,7 +83,6 @@

        Browser compatibility

        -

        {{Compat("api.ChannelMergerNode")}}

        diff --git a/files/en-us/web/api/channelsplitternode/channelsplitternode/index.html b/files/en-us/web/api/channelsplitternode/channelsplitternode/index.html index 6a08048f6d76b3c..abd127e5fc70789 100644 --- a/files/en-us/web/api/channelsplitternode/channelsplitternode/index.html +++ b/files/en-us/web/api/channelsplitternode/channelsplitternode/index.html @@ -67,6 +67,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.ChannelSplitterNode.ChannelSplitterNode")}}

        diff --git a/files/en-us/web/api/channelsplitternode/index.html b/files/en-us/web/api/channelsplitternode/index.html index 14e0db189d7f8b7..fdb1cfae1d94bbd 100644 --- a/files/en-us/web/api/channelsplitternode/index.html +++ b/files/en-us/web/api/channelsplitternode/index.html @@ -84,7 +84,6 @@

        Browser compatibility

        -

        {{Compat("api.ChannelSplitterNode")}}

        diff --git a/files/en-us/web/api/childnode/after/index.html b/files/en-us/web/api/childnode/after/index.html index 06203e06ca29c29..776f19f4ce50fcf 100644 --- a/files/en-us/web/api/childnode/after/index.html +++ b/files/en-us/web/api/childnode/after/index.html @@ -136,8 +136,6 @@

        Another polyfill

         }; })(Element); - - /* minified: @@ -167,8 +165,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.ChildNode.after")}}

        See also

        diff --git a/files/en-us/web/api/childnode/before/index.html b/files/en-us/web/api/childnode/before/index.html index def0e9dcb54ca4f..060050052c14075 100644 --- a/files/en-us/web/api/childnode/before/index.html +++ b/files/en-us/web/api/childnode/before/index.html @@ -126,8 +126,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.ChildNode.before")}}

        See also

        diff --git a/files/en-us/web/api/childnode/index.html b/files/en-us/web/api/childnode/index.html index 781b5093332e7d1..477b0fc5056816f 100644 --- a/files/en-us/web/api/childnode/index.html +++ b/files/en-us/web/api/childnode/index.html @@ -61,8 +61,6 @@

        Polyfill

        Browser compatibility

        - -

        {{Compat("api.ChildNode")}}

        See also

        diff --git a/files/en-us/web/api/childnode/remove/index.html b/files/en-us/web/api/childnode/remove/index.html index eff01e9b1fe3126..5c7f68ad765a91b 100644 --- a/files/en-us/web/api/childnode/remove/index.html +++ b/files/en-us/web/api/childnode/remove/index.html @@ -81,8 +81,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.ChildNode.remove")}}

        See also

        diff --git a/files/en-us/web/api/childnode/replacewith/index.html b/files/en-us/web/api/childnode/replacewith/index.html index 4f72849e62d77a6..4d652f3e6cb8463 100644 --- a/files/en-us/web/api/childnode/replacewith/index.html +++ b/files/en-us/web/api/childnode/replacewith/index.html @@ -105,8 +105,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.ChildNode.replaceWith")}}

        See also

        diff --git a/files/en-us/web/api/client/frametype/index.html b/files/en-us/web/api/client/frametype/index.html index a5304bb465028f7..4452d9d80dd1e92 100644 --- a/files/en-us/web/api/client/frametype/index.html +++ b/files/en-us/web/api/client/frametype/index.html @@ -46,6 +46,5 @@

        Browser compatibility

        -

        {{Compat("api.Client.frameType")}}

        diff --git a/files/en-us/web/api/client/id/index.html b/files/en-us/web/api/client/id/index.html index 73a27e9879afb0c..51a7ada90c8585d 100644 --- a/files/en-us/web/api/client/id/index.html +++ b/files/en-us/web/api/client/id/index.html @@ -46,6 +46,5 @@

        Browser compatibility

        -

        {{Compat("api.Client.id")}}

        diff --git a/files/en-us/web/api/client/index.html b/files/en-us/web/api/client/index.html index 7e4066df674ecfd..c706109c5c47794 100644 --- a/files/en-us/web/api/client/index.html +++ b/files/en-us/web/api/client/index.html @@ -53,8 +53,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Client")}}

        See also

        diff --git a/files/en-us/web/api/client/postmessage/index.html b/files/en-us/web/api/client/postmessage/index.html index 94ebaf780f5a15e..70e3f3dcd5c3fa2 100644 --- a/files/en-us/web/api/client/postmessage/index.html +++ b/files/en-us/web/api/client/postmessage/index.html @@ -89,6 +89,5 @@

        Browser compatibility

        -

        {{Compat("api.Client.postMessage")}}

        diff --git a/files/en-us/web/api/client/type/index.html b/files/en-us/web/api/client/type/index.html index e6884ef021a07b1..c71160a30c78210 100644 --- a/files/en-us/web/api/client/type/index.html +++ b/files/en-us/web/api/client/type/index.html @@ -69,6 +69,5 @@

        Browser compatibility

        -

        {{Compat("api.Client.type")}}

        diff --git a/files/en-us/web/api/client/url/index.html b/files/en-us/web/api/client/url/index.html index 828a52e9c962351..e082b7eaed704bf 100644 --- a/files/en-us/web/api/client/url/index.html +++ b/files/en-us/web/api/client/url/index.html @@ -64,6 +64,5 @@

        Browser compatibility

        -

        {{Compat("api.Client.url")}}

        diff --git a/files/en-us/web/api/clients/claim/index.html b/files/en-us/web/api/clients/claim/index.html index 313976a0c05781d..bdc59c0e7eae428 100644 --- a/files/en-us/web/api/clients/claim/index.html +++ b/files/en-us/web/api/clients/claim/index.html @@ -59,7 +59,6 @@

        Browser compatibility

        -

        {{Compat("api.Clients.claim")}}

        diff --git a/files/en-us/web/api/clients/get/index.html b/files/en-us/web/api/clients/get/index.html index c57625a77d7bbe4..f9b66379ace4eef 100644 --- a/files/en-us/web/api/clients/get/index.html +++ b/files/en-us/web/api/clients/get/index.html @@ -58,6 +58,5 @@

        Browser compatibility

        -

        {{Compat("api.Clients.get")}}

        diff --git a/files/en-us/web/api/clients/index.html b/files/en-us/web/api/clients/index.html index cf8b35dab536b9c..ef6cc37441a6219 100644 --- a/files/en-us/web/api/clients/index.html +++ b/files/en-us/web/api/clients/index.html @@ -86,7 +86,6 @@

        Browser compatibility

        -

        {{Compat("api.Clients")}}

        diff --git a/files/en-us/web/api/clients/matchall/index.html b/files/en-us/web/api/clients/matchall/index.html index 348a6ae59c81589..7184846b2e9304d 100644 --- a/files/en-us/web/api/clients/matchall/index.html +++ b/files/en-us/web/api/clients/matchall/index.html @@ -68,6 +68,5 @@

        Browser compatibility

        -

        {{Compat("api.Clients.matchAll")}}

        diff --git a/files/en-us/web/api/clients/openwindow/index.html b/files/en-us/web/api/clients/openwindow/index.html index 327f10b6e17f607..642e71f578e10ab 100644 --- a/files/en-us/web/api/clients/openwindow/index.html +++ b/files/en-us/web/api/clients/openwindow/index.html @@ -85,6 +85,5 @@

        Browser compatibility

        -

        {{Compat("api.Clients.openWindow")}}

        diff --git a/files/en-us/web/api/clipboard/index.html b/files/en-us/web/api/clipboard/index.html index 5e7b20a7883abc7..44abe3421953708 100644 --- a/files/en-us/web/api/clipboard/index.html +++ b/files/en-us/web/api/clipboard/index.html @@ -79,8 +79,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Clipboard")}}

        See also

        diff --git a/files/en-us/web/api/clipboard/read/index.html b/files/en-us/web/api/clipboard/read/index.html index f324d6417d1ec54..0d85675e8bfb3ca 100644 --- a/files/en-us/web/api/clipboard/read/index.html +++ b/files/en-us/web/api/clipboard/read/index.html @@ -87,8 +87,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Clipboard.read")}}

        See also

        diff --git a/files/en-us/web/api/clipboard/readtext/index.html b/files/en-us/web/api/clipboard/readtext/index.html index d5bc73748e7e816..088958c518a3071 100644 --- a/files/en-us/web/api/clipboard/readtext/index.html +++ b/files/en-us/web/api/clipboard/readtext/index.html @@ -61,8 +61,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Clipboard.readText")}}

        See also

        diff --git a/files/en-us/web/api/clipboard/write/index.html b/files/en-us/web/api/clipboard/write/index.html index 191f5d1e43e04cc..284db0b54926f4d 100644 --- a/files/en-us/web/api/clipboard/write/index.html +++ b/files/en-us/web/api/clipboard/write/index.html @@ -94,8 +94,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Clipboard.write")}}

        See also

        diff --git a/files/en-us/web/api/clipboard/writetext/index.html b/files/en-us/web/api/clipboard/writetext/index.html index 03444383f375d42..54be09b51b1926c 100644 --- a/files/en-us/web/api/clipboard/writetext/index.html +++ b/files/en-us/web/api/clipboard/writetext/index.html @@ -71,8 +71,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Clipboard.writeText")}}

        See also

        diff --git a/files/en-us/web/api/clipboard_api/index.html b/files/en-us/web/api/clipboard_api/index.html index f078e5b9ffeb258..9f3138eed713fb4 100644 --- a/files/en-us/web/api/clipboard_api/index.html +++ b/files/en-us/web/api/clipboard_api/index.html @@ -66,8 +66,6 @@

        Browser compatibility

        Clipboard

        - -

        {{Compat("api.Clipboard")}}

        ClipboardEvent

        @@ -78,8 +76,6 @@

        ClipboardEvent

        ClipboardItem

        - -

        {{Compat("api.ClipboardItem")}}

        See also

        diff --git a/files/en-us/web/api/clipboardevent/clipboarddata/index.html b/files/en-us/web/api/clipboardevent/clipboarddata/index.html index bf5160977772dac..1fd65058049591d 100644 --- a/files/en-us/web/api/clipboardevent/clipboarddata/index.html +++ b/files/en-us/web/api/clipboardevent/clipboarddata/index.html @@ -49,8 +49,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.ClipboardEvent.clipboardData")}}

        See also

        diff --git a/files/en-us/web/api/clipboardevent/clipboardevent/index.html b/files/en-us/web/api/clipboardevent/clipboardevent/index.html index fd64481cee3bae3..0a347e35b3f9786 100644 --- a/files/en-us/web/api/clipboardevent/clipboardevent/index.html +++ b/files/en-us/web/api/clipboardevent/clipboardevent/index.html @@ -60,8 +60,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.ClipboardEvent.ClipboardEvent")}}

        See also

        diff --git a/files/en-us/web/api/clipboardevent/index.html b/files/en-us/web/api/clipboardevent/index.html index ddba9d9adfe973c..987b2dd70ca4967 100644 --- a/files/en-us/web/api/clipboardevent/index.html +++ b/files/en-us/web/api/clipboardevent/index.html @@ -57,8 +57,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.ClipboardEvent")}}

        See also

        diff --git a/files/en-us/web/api/clipboarditem/clipboarditem/index.html b/files/en-us/web/api/clipboarditem/clipboarditem/index.html index 4e5a629bb7130a4..189131742a4a1cc 100644 --- a/files/en-us/web/api/clipboarditem/clipboarditem/index.html +++ b/files/en-us/web/api/clipboarditem/clipboarditem/index.html @@ -80,8 +80,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.ClipboardItem.ClipboardItem")}}

        See also

        diff --git a/files/en-us/web/api/clipboarditem/gettype/index.html b/files/en-us/web/api/clipboarditem/gettype/index.html index ce1ab30c3f0b67a..07acf9cd57a51c9 100644 --- a/files/en-us/web/api/clipboarditem/gettype/index.html +++ b/files/en-us/web/api/clipboarditem/gettype/index.html @@ -81,8 +81,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.ClipboardItem.getType")}}

        See also

        diff --git a/files/en-us/web/api/clipboarditem/index.html b/files/en-us/web/api/clipboarditem/index.html index bcb00817ce8ebad..ac22246aff17d2c 100644 --- a/files/en-us/web/api/clipboarditem/index.html +++ b/files/en-us/web/api/clipboarditem/index.html @@ -119,8 +119,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.ClipboardItem")}}

        diff --git a/files/en-us/web/api/clipboarditem/types/index.html b/files/en-us/web/api/clipboarditem/types/index.html index 004c0472bf8458d..bca0b144af58779 100644 --- a/files/en-us/web/api/clipboarditem/types/index.html +++ b/files/en-us/web/api/clipboarditem/types/index.html @@ -68,8 +68,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.ClipboardItem.types")}}

        See also

        diff --git a/files/en-us/web/api/closeevent/closeevent/index.html b/files/en-us/web/api/closeevent/closeevent/index.html index bfb53e7dc8a1d69..c2475ad6c72f456 100644 --- a/files/en-us/web/api/closeevent/closeevent/index.html +++ b/files/en-us/web/api/closeevent/closeevent/index.html @@ -59,8 +59,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.CloseEvent.CloseEvent")}}

        See also

        diff --git a/files/en-us/web/api/closeevent/index.html b/files/en-us/web/api/closeevent/index.html index c15f03e70ad342f..24c6990ea25c2ed 100644 --- a/files/en-us/web/api/closeevent/index.html +++ b/files/en-us/web/api/closeevent/index.html @@ -178,8 +178,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.CloseEvent")}}

        See also

        diff --git a/files/en-us/web/api/closeevent/initcloseevent/index.html b/files/en-us/web/api/closeevent/initcloseevent/index.html index 6336b557ee4fa81..cb2b70879f9d760 100644 --- a/files/en-us/web/api/closeevent/initcloseevent/index.html +++ b/files/en-us/web/api/closeevent/initcloseevent/index.html @@ -42,8 +42,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.CloseEvent.initCloseEvent")}}

        See Also

        diff --git a/files/en-us/web/api/comment/comment/index.html b/files/en-us/web/api/comment/comment/index.html index 5a215e8a6055b0e..4141844142a1720 100644 --- a/files/en-us/web/api/comment/comment/index.html +++ b/files/en-us/web/api/comment/comment/index.html @@ -40,8 +40,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Comment.Comment")}}

        diff --git a/files/en-us/web/api/comment/index.html b/files/en-us/web/api/comment/index.html index a21828d085f14de..7ffd2bdc2a5b646 100644 --- a/files/en-us/web/api/comment/index.html +++ b/files/en-us/web/api/comment/index.html @@ -61,8 +61,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Comment")}}

        See also

        diff --git a/files/en-us/web/api/compositionevent/compositionevent/index.html b/files/en-us/web/api/compositionevent/compositionevent/index.html index 2e31846bd84df41..07f7cda41fe6067 100644 --- a/files/en-us/web/api/compositionevent/compositionevent/index.html +++ b/files/en-us/web/api/compositionevent/compositionevent/index.html @@ -58,7 +58,6 @@

        Browser compatibility

        -

        {{Compat("api.CompositionEvent.CompositionEvent")}}

        diff --git a/files/en-us/web/api/compositionevent/data/index.html b/files/en-us/web/api/compositionevent/data/index.html index 0faac166a65e92d..54b2d1302df5029 100644 --- a/files/en-us/web/api/compositionevent/data/index.html +++ b/files/en-us/web/api/compositionevent/data/index.html @@ -47,8 +47,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.CompositionEvent.data")}}

        See also

        diff --git a/files/en-us/web/api/compositionevent/index.html b/files/en-us/web/api/compositionevent/index.html index 9d2c6d01a33896f..4b46609ae485fb5 100644 --- a/files/en-us/web/api/compositionevent/index.html +++ b/files/en-us/web/api/compositionevent/index.html @@ -65,8 +65,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.CompositionEvent")}}

        See also

        diff --git a/files/en-us/web/api/compositionevent/initcompositionevent/index.html b/files/en-us/web/api/compositionevent/initcompositionevent/index.html index cb01f97836c6e5b..ccd9efdb73925b7 100644 --- a/files/en-us/web/api/compositionevent/initcompositionevent/index.html +++ b/files/en-us/web/api/compositionevent/initcompositionevent/index.html @@ -59,8 +59,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.CompositionEvent.initCompositionEvent")}}

        See also

        diff --git a/files/en-us/web/api/compositionevent/locale/index.html b/files/en-us/web/api/compositionevent/locale/index.html index f76cb36115c4483..55eddafffdc396e 100644 --- a/files/en-us/web/api/compositionevent/locale/index.html +++ b/files/en-us/web/api/compositionevent/locale/index.html @@ -42,8 +42,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.CompositionEvent.locale")}}

        See also

        diff --git a/files/en-us/web/api/console/assert/index.html b/files/en-us/web/api/console/assert/index.html index 8ccc36572e8632a..2379226cca9e64a 100644 --- a/files/en-us/web/api/console/assert/index.html +++ b/files/en-us/web/api/console/assert/index.html @@ -95,6 +95,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Console.assert")}}

        diff --git a/files/en-us/web/api/console/clear/index.html b/files/en-us/web/api/console/clear/index.html index 7899e103259e7df..25ee2bc3e7a257d 100644 --- a/files/en-us/web/api/console/clear/index.html +++ b/files/en-us/web/api/console/clear/index.html @@ -39,6 +39,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Console.clear")}}

        diff --git a/files/en-us/web/api/console/count/index.html b/files/en-us/web/api/console/count/index.html index 215b6a21e1fe6e0..87d07c22996971b 100644 --- a/files/en-us/web/api/console/count/index.html +++ b/files/en-us/web/api/console/count/index.html @@ -79,7 +79,6 @@

        Examples

        We're now maintaining separate counts based only on the value of label.

        -

        Specifications

    @@ -101,6 +100,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console.count")}}

    diff --git a/files/en-us/web/api/console/countreset/index.html b/files/en-us/web/api/console/countreset/index.html index 244852802c9e8d3..55af374c9d6c5ac 100644 --- a/files/en-us/web/api/console/countreset/index.html +++ b/files/en-us/web/api/console/countreset/index.html @@ -107,6 +107,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console.countReset")}}

    diff --git a/files/en-us/web/api/console/debug/index.html b/files/en-us/web/api/console/debug/index.html index 7654af86bf2b394..e96ebfe598b2a77 100644 --- a/files/en-us/web/api/console/debug/index.html +++ b/files/en-us/web/api/console/debug/index.html @@ -62,6 +62,5 @@

    Browser compatibility

    -

    {{Compat("api.Console.debug")}}

    diff --git a/files/en-us/web/api/console/dir/index.html b/files/en-us/web/api/console/dir/index.html index 0c3108fb13ef042..21cdda035adc953 100644 --- a/files/en-us/web/api/console/dir/index.html +++ b/files/en-us/web/api/console/dir/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console.dir")}}

    See also

    diff --git a/files/en-us/web/api/console/dirxml/index.html b/files/en-us/web/api/console/dirxml/index.html index 0471f3829e77df7..33bedd79be483eb 100644 --- a/files/en-us/web/api/console/dirxml/index.html +++ b/files/en-us/web/api/console/dirxml/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console.dirxml")}}

    See also

    diff --git a/files/en-us/web/api/console/error/index.html b/files/en-us/web/api/console/error/index.html index ee8e282b8ae11d2..46ce571b2f5e567 100644 --- a/files/en-us/web/api/console/error/index.html +++ b/files/en-us/web/api/console/error/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.Console.error")}}

    diff --git a/files/en-us/web/api/console/group/index.html b/files/en-us/web/api/console/group/index.html index b0436667d202f07..139ba5e8159562e 100644 --- a/files/en-us/web/api/console/group/index.html +++ b/files/en-us/web/api/console/group/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console.group")}}

    See also

    diff --git a/files/en-us/web/api/console/groupcollapsed/index.html b/files/en-us/web/api/console/groupcollapsed/index.html index b293dee10e5c6c6..367dd30242ede2f 100644 --- a/files/en-us/web/api/console/groupcollapsed/index.html +++ b/files/en-us/web/api/console/groupcollapsed/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console.groupCollapsed")}}

    See also

    diff --git a/files/en-us/web/api/console/groupend/index.html b/files/en-us/web/api/console/groupend/index.html index 95dfc7ceb55e5a0..fe388b9da48a943 100644 --- a/files/en-us/web/api/console/groupend/index.html +++ b/files/en-us/web/api/console/groupend/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console.groupEnd")}}

    See also

    diff --git a/files/en-us/web/api/console/index.html b/files/en-us/web/api/console/index.html index d1487991805d122..442acabf6636874 100644 --- a/files/en-us/web/api/console/index.html +++ b/files/en-us/web/api/console/index.html @@ -263,8 +263,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console")}}

    Notes

    diff --git a/files/en-us/web/api/console/info/index.html b/files/en-us/web/api/console/info/index.html index 4d1de1f98732277..0350c880f6fcee1 100644 --- a/files/en-us/web/api/console/info/index.html +++ b/files/en-us/web/api/console/info/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console.info")}}

    See also

    diff --git a/files/en-us/web/api/console/log/index.html b/files/en-us/web/api/console/log/index.html index 54eefdfbcd1eab4..8a516a51e4502e1 100644 --- a/files/en-us/web/api/console/log/index.html +++ b/files/en-us/web/api/console/log/index.html @@ -86,8 +86,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console.log")}}

    See also

    diff --git a/files/en-us/web/api/console/profile/index.html b/files/en-us/web/api/console/profile/index.html index 8fb35d69cf2736c..aa33be9c5c1a860 100644 --- a/files/en-us/web/api/console/profile/index.html +++ b/files/en-us/web/api/console/profile/index.html @@ -36,8 +36,6 @@

    Parameters

    Browser compatibility

    - -

    {{Compat("api.Console.profile")}}

    See also

    diff --git a/files/en-us/web/api/console/profileend/index.html b/files/en-us/web/api/console/profileend/index.html index 2c90f785b5e98a1..9a3cd92d26cb1d1 100644 --- a/files/en-us/web/api/console/profileend/index.html +++ b/files/en-us/web/api/console/profileend/index.html @@ -44,8 +44,6 @@

    Parameters

    Browser compatibility

    - -

    {{Compat("api.Console.profileEnd")}}

    See also

    diff --git a/files/en-us/web/api/console/table/index.html b/files/en-us/web/api/console/table/index.html index 00ffe90a553c3bf..1825348f185383d 100644 --- a/files/en-us/web/api/console/table/index.html +++ b/files/en-us/web/api/console/table/index.html @@ -144,6 +144,5 @@

    Browser compatibility

    -

    {{Compat("api.Console.table")}}

    diff --git a/files/en-us/web/api/console/time/index.html b/files/en-us/web/api/console/time/index.html index 1c30ae4c4197439..43ffce55672846d 100644 --- a/files/en-us/web/api/console/time/index.html +++ b/files/en-us/web/api/console/time/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console.time")}}

    See also

    diff --git a/files/en-us/web/api/console/timeend/index.html b/files/en-us/web/api/console/timeend/index.html index a606f8cc7c8c00e..7f6241d66b1a6a3 100644 --- a/files/en-us/web/api/console/timeend/index.html +++ b/files/en-us/web/api/console/timeend/index.html @@ -43,8 +43,6 @@

    Examples

    timerresult.png

    - -

    Notice that the timer's name is displayed when the timer value is logged using timeLog() and again when it's stopped. In addition, the call to timeEnd() has the additional information, "timer ended" to make it obvious that the timer is no longer tracking time.

    Specifications

    @@ -70,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.Console.timeEnd")}}

    diff --git a/files/en-us/web/api/console/timelog/index.html b/files/en-us/web/api/console/timelog/index.html index c8fa912a1c35f9c..e5ca59ad1866b22 100644 --- a/files/en-us/web/api/console/timelog/index.html +++ b/files/en-us/web/api/console/timelog/index.html @@ -88,7 +88,6 @@

    Browser compatibility

    -

    {{Compat("api.Console.timeLog")}}

    diff --git a/files/en-us/web/api/console/timestamp/index.html b/files/en-us/web/api/console/timestamp/index.html index e7e680a563d58f0..c736960f5e1e167 100644 --- a/files/en-us/web/api/console/timestamp/index.html +++ b/files/en-us/web/api/console/timestamp/index.html @@ -32,8 +32,6 @@

    Parameters

    Browser compatibility

    - -

    {{Compat("api.Console.timeStamp")}}

    See also

    diff --git a/files/en-us/web/api/console/trace/index.html b/files/en-us/web/api/console/trace/index.html index a054b70ef8e8447..ee7c00431dd00d9 100644 --- a/files/en-us/web/api/console/trace/index.html +++ b/files/en-us/web/api/console/trace/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console.trace")}}

    See also

    diff --git a/files/en-us/web/api/console/warn/index.html b/files/en-us/web/api/console/warn/index.html index fbaef3675c3cd87..30b49efa0874ffb 100644 --- a/files/en-us/web/api/console/warn/index.html +++ b/files/en-us/web/api/console/warn/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console.warn")}}

    See also

    diff --git a/files/en-us/web/api/console_api/index.html b/files/en-us/web/api/console_api/index.html index 4ab2a642d5a31f9..c718a1eea14cb31 100644 --- a/files/en-us/web/api/console_api/index.html +++ b/files/en-us/web/api/console_api/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Console")}}

    See also

    diff --git a/files/en-us/web/api/constantsourcenode/constantsourcenode/index.html b/files/en-us/web/api/constantsourcenode/constantsourcenode/index.html index 505e2a940bea75b..18c9b1af0542df0 100644 --- a/files/en-us/web/api/constantsourcenode/constantsourcenode/index.html +++ b/files/en-us/web/api/constantsourcenode/constantsourcenode/index.html @@ -62,6 +62,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ConstantSourceNode.ConstantSourceNode")}}

    diff --git a/files/en-us/web/api/constantsourcenode/index.html b/files/en-us/web/api/constantsourcenode/index.html index 81f954800194826..1f8957d866671ca 100644 --- a/files/en-us/web/api/constantsourcenode/index.html +++ b/files/en-us/web/api/constantsourcenode/index.html @@ -118,7 +118,6 @@

    Browser compatibility

    -

    {{Compat("api.ConstantSourceNode")}}

    diff --git a/files/en-us/web/api/constantsourcenode/offset/index.html b/files/en-us/web/api/constantsourcenode/offset/index.html index 6dfa98406099246..56ebfb6c9252ae2 100644 --- a/files/en-us/web/api/constantsourcenode/offset/index.html +++ b/files/en-us/web/api/constantsourcenode/offset/index.html @@ -78,7 +78,6 @@

    Browser compatibility

    -

    {{Compat("api.ConstantSourceNode.offset")}}

    diff --git a/files/en-us/web/api/constrainboolean/index.html b/files/en-us/web/api/constrainboolean/index.html index 2df5f312087f9bd..120c6a72fba1014 100644 --- a/files/en-us/web/api/constrainboolean/index.html +++ b/files/en-us/web/api/constrainboolean/index.html @@ -50,18 +50,10 @@

    Specifications

    Technically, ConstrainBoolean is actually based on an intermediary dictionary named ConstrainBooleanParameters, which adds exact and ideal to the simple Boolean type. However, for the sake of documentation clarity, the intermediate type (present only because of quirks in {{Glossary("WebIDL")}} syntax) is ignored here.

    - - -

    Browser compatibility

    - -

    {{Compat("api.ConstrainBoolean")}}

    - - -

    See also

      diff --git a/files/en-us/web/api/constraindomstring/index.html b/files/en-us/web/api/constraindomstring/index.html index 1f2d84fba735d6c..11c0a2c084ca515 100644 --- a/files/en-us/web/api/constraindomstring/index.html +++ b/files/en-us/web/api/constraindomstring/index.html @@ -58,8 +58,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ConstrainDOMString")}}

      See also

      diff --git a/files/en-us/web/api/constraindouble/index.html b/files/en-us/web/api/constraindouble/index.html index 946cb5f24059613..77b1c9414e50600 100644 --- a/files/en-us/web/api/constraindouble/index.html +++ b/files/en-us/web/api/constraindouble/index.html @@ -50,8 +50,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ConstrainDouble")}}

      See also

      diff --git a/files/en-us/web/api/constrainulong/index.html b/files/en-us/web/api/constrainulong/index.html index 774a0bfcbed3512..551bbf8c3f82dd6 100644 --- a/files/en-us/web/api/constrainulong/index.html +++ b/files/en-us/web/api/constrainulong/index.html @@ -51,8 +51,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ConstrainULong")}}

      See also

      diff --git a/files/en-us/web/api/contact_picker_api/index.html b/files/en-us/web/api/contact_picker_api/index.html index c679e2093987676..6e93624df87939a 100644 --- a/files/en-us/web/api/contact_picker_api/index.html +++ b/files/en-us/web/api/contact_picker_api/index.html @@ -113,8 +113,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ContactsManager")}}

      See also:

      diff --git a/files/en-us/web/api/contactsmanager/getproperties/index.html b/files/en-us/web/api/contactsmanager/getproperties/index.html index 4d7e746250d2c74..4c1b1b625a44bfe 100644 --- a/files/en-us/web/api/contactsmanager/getproperties/index.html +++ b/files/en-us/web/api/contactsmanager/getproperties/index.html @@ -82,6 +82,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ContactsManager.getProperties")}}

      diff --git a/files/en-us/web/api/contactsmanager/index.html b/files/en-us/web/api/contactsmanager/index.html index 809c44728bcd862..734617a3cdd4f4f 100644 --- a/files/en-us/web/api/contactsmanager/index.html +++ b/files/en-us/web/api/contactsmanager/index.html @@ -95,8 +95,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ContactsManager")}}

      See also:

      diff --git a/files/en-us/web/api/contactsmanager/select/index.html b/files/en-us/web/api/contactsmanager/select/index.html index fe982288918eeab..b1123d925ec46b8 100644 --- a/files/en-us/web/api/contactsmanager/select/index.html +++ b/files/en-us/web/api/contactsmanager/select/index.html @@ -92,6 +92,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ContactsManager.select")}}

      diff --git a/files/en-us/web/api/content_index_api/index.html b/files/en-us/web/api/content_index_api/index.html index 1cf576f63a3ac42..b07d84cfa7522bb 100644 --- a/files/en-us/web/api/content_index_api/index.html +++ b/files/en-us/web/api/content_index_api/index.html @@ -32,7 +32,6 @@

      Interfaces

      {{domxref("ContentIndex")}}
      The ContentIndex interface provides functionality to register content available offline.
      -
      {{domxref("ContentIndexEvent")}}
      The ContentIndexEvent interface of the {{domxref('Content Index API')}} defines the object used to represent the {{Event('contentdelete')}} event.
      @@ -213,8 +212,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ContentIndex")}}

      See also:

      diff --git a/files/en-us/web/api/contentindex/add/index.html b/files/en-us/web/api/contentindex/add/index.html index f9b64673e8c5d25..ae1f2463bdba631 100644 --- a/files/en-us/web/api/contentindex/add/index.html +++ b/files/en-us/web/api/contentindex/add/index.html @@ -137,8 +137,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ContentIndex.add")}}

      See also:

      diff --git a/files/en-us/web/api/contentindex/delete/index.html b/files/en-us/web/api/contentindex/delete/index.html index 952ef33da14635b..d8cd1782f4e2371 100644 --- a/files/en-us/web/api/contentindex/delete/index.html +++ b/files/en-us/web/api/contentindex/delete/index.html @@ -78,8 +78,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ContentIndex.delete")}}

      See also:

      diff --git a/files/en-us/web/api/contentindex/getall/index.html b/files/en-us/web/api/contentindex/getall/index.html index a7a99385106502d..4976b2ba8c5ca00 100644 --- a/files/en-us/web/api/contentindex/getall/index.html +++ b/files/en-us/web/api/contentindex/getall/index.html @@ -124,8 +124,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ContentIndex.getAll")}}

      See also:

      diff --git a/files/en-us/web/api/contentindex/index.html b/files/en-us/web/api/contentindex/index.html index 63d6b42a86cd0be..5a5c792ca966fda 100644 --- a/files/en-us/web/api/contentindex/index.html +++ b/files/en-us/web/api/contentindex/index.html @@ -175,8 +175,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ContentIndex")}}

      See also:

      diff --git a/files/en-us/web/api/contentindexevent/contentindexevent/index.html b/files/en-us/web/api/contentindexevent/contentindexevent/index.html index 55ec3db7cf88647..09de107361d8c72 100644 --- a/files/en-us/web/api/contentindexevent/contentindexevent/index.html +++ b/files/en-us/web/api/contentindexevent/contentindexevent/index.html @@ -68,8 +68,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ContentIndexEvent.ContentIndexEvent")}}

      See also:

      diff --git a/files/en-us/web/api/contentindexevent/id/index.html b/files/en-us/web/api/contentindexevent/id/index.html index e17402eac98fb6e..2e1583413c28fe0 100644 --- a/files/en-us/web/api/contentindexevent/id/index.html +++ b/files/en-us/web/api/contentindexevent/id/index.html @@ -55,8 +55,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ContentIndexEvent.id")}}

      See also:

      diff --git a/files/en-us/web/api/contentindexevent/index.html b/files/en-us/web/api/contentindexevent/index.html index f4c42c668b84321..b2ae6775bd6167e 100644 --- a/files/en-us/web/api/contentindexevent/index.html +++ b/files/en-us/web/api/contentindexevent/index.html @@ -33,7 +33,6 @@

      Properties

      A {{jsxref('String')}} which identifies the deleted content index via it's id.
      -

      Methods

      While ContentIndexEvent offers no methods of its own, it inherits any specified by its parent interface, {{domxref("ExtendableEvent")}}.

      @@ -42,7 +41,6 @@

      Examples

      This example shows the {{domxref('ServiceWorker','sevice worker')}} script listening for the {{domxref('ContentIndexEvent', 'contentdelete')}} event and logs the removed content index id.

      -
      self.addEventListener('contentdelete', (event) => {
         console.log(event.id);
       
      @@ -70,8 +68,6 @@ 

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ContentIndexEvent")}}

      See also:

      diff --git a/files/en-us/web/api/convolvernode/buffer/index.html b/files/en-us/web/api/convolvernode/buffer/index.html index 6a5ab213283817e..d4acc9cf4abe700 100644 --- a/files/en-us/web/api/convolvernode/buffer/index.html +++ b/files/en-us/web/api/convolvernode/buffer/index.html @@ -81,7 +81,6 @@

      Browser compatibility

      -

      {{Compat("api.ConvolverNode.buffer")}}

      diff --git a/files/en-us/web/api/convolvernode/convolvernode/index.html b/files/en-us/web/api/convolvernode/convolvernode/index.html index 9bce5be67a59e2f..b7da1cfeaca982e 100644 --- a/files/en-us/web/api/convolvernode/convolvernode/index.html +++ b/files/en-us/web/api/convolvernode/convolvernode/index.html @@ -75,6 +75,5 @@

      Browser Compatibility

      -

      {{Compat("api.ConvolverNode.ConvolverNode")}}

      diff --git a/files/en-us/web/api/convolvernode/index.html b/files/en-us/web/api/convolvernode/index.html index d2342dfed7aeb10..d98bf8dc381bcac 100644 --- a/files/en-us/web/api/convolvernode/index.html +++ b/files/en-us/web/api/convolvernode/index.html @@ -71,8 +71,6 @@

      ConvolverNode Example

      Note: You will need to find an impulse response to complete the example below. See this Codepen for an applied example.

      - -
      let audioCtx = new window.AudioContext();
       
       async function createReverb() {
      @@ -95,8 +93,6 @@ 

      ConvolverNode Example

      reverb.connect(audioCtx.destination);
      - -

      Specifications

    @@ -118,7 +114,6 @@

    Browser compatibility

    -

    {{Compat("api.ConvolverNode")}}

    diff --git a/files/en-us/web/api/convolvernode/normalize/index.html b/files/en-us/web/api/convolvernode/normalize/index.html index f20bcfb189e15a6..0dd90c67686a862 100644 --- a/files/en-us/web/api/convolvernode/normalize/index.html +++ b/files/en-us/web/api/convolvernode/normalize/index.html @@ -78,7 +78,6 @@

    Browser compatibility

    -

    {{Compat("api.ConvolverNode.normalize")}}

    diff --git a/files/en-us/web/api/countqueuingstrategy/countqueuingstrategy/index.html b/files/en-us/web/api/countqueuingstrategy/countqueuingstrategy/index.html index 1f32797ae011aa4..98de100e7f2aed9 100644 --- a/files/en-us/web/api/countqueuingstrategy/countqueuingstrategy/index.html +++ b/files/en-us/web/api/countqueuingstrategy/countqueuingstrategy/index.html @@ -70,6 +70,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CountQueuingStrategy.CountQueuingStrategy")}}

    diff --git a/files/en-us/web/api/countqueuingstrategy/index.html b/files/en-us/web/api/countqueuingstrategy/index.html index 13eacb1f8bf10dd..645d535e74d88e7 100644 --- a/files/en-us/web/api/countqueuingstrategy/index.html +++ b/files/en-us/web/api/countqueuingstrategy/index.html @@ -72,6 +72,5 @@

    Browser Compatibility

    -

    {{Compat("api.CountQueuingStrategy")}}

    diff --git a/files/en-us/web/api/countqueuingstrategy/size/index.html b/files/en-us/web/api/countqueuingstrategy/size/index.html index 4df181093a538ab..110637766384eb1 100644 --- a/files/en-us/web/api/countqueuingstrategy/size/index.html +++ b/files/en-us/web/api/countqueuingstrategy/size/index.html @@ -64,6 +64,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CountQueuingStrategy.size")}}

    diff --git a/files/en-us/web/api/crashreportbody/index.html b/files/en-us/web/api/crashreportbody/index.html index db9b065d0c115a5..54d97b6f484829f 100644 --- a/files/en-us/web/api/crashreportbody/index.html +++ b/files/en-us/web/api/crashreportbody/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CrashReportBody")}}

    See also

    diff --git a/files/en-us/web/api/credential/id/index.html b/files/en-us/web/api/credential/id/index.html index c2a3c61ed1a5c7f..b65850e91779387 100644 --- a/files/en-us/web/api/credential/id/index.html +++ b/files/en-us/web/api/credential/id/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Credential.id")}}

    diff --git a/files/en-us/web/api/credential/index.html b/files/en-us/web/api/credential/index.html index 1da27d74629d08c..cdec2a1c687552c 100644 --- a/files/en-us/web/api/credential/index.html +++ b/files/en-us/web/api/credential/index.html @@ -71,6 +71,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Credential")}}

    diff --git a/files/en-us/web/api/credential/name/index.html b/files/en-us/web/api/credential/name/index.html index 848b57e97e7e604..c913ac2a1d4fce3 100644 --- a/files/en-us/web/api/credential/name/index.html +++ b/files/en-us/web/api/credential/name/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Credential.name")}}

    diff --git a/files/en-us/web/api/credential/type/index.html b/files/en-us/web/api/credential/type/index.html index 872c820406364b9..1af87a4f906a9ce 100644 --- a/files/en-us/web/api/credential/type/index.html +++ b/files/en-us/web/api/credential/type/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Credential.type")}}

    diff --git a/files/en-us/web/api/credentialscontainer/create/index.html b/files/en-us/web/api/credentialscontainer/create/index.html index 5ffb47f5fc879a5..64789aa3cb7e03d 100644 --- a/files/en-us/web/api/credentialscontainer/create/index.html +++ b/files/en-us/web/api/credentialscontainer/create/index.html @@ -79,6 +79,5 @@

    Browser compatibility

    -

    {{Compat("api.CredentialsContainer.create")}}

    diff --git a/files/en-us/web/api/credentialscontainer/get/index.html b/files/en-us/web/api/credentialscontainer/get/index.html index e12a6698f199dde..2850e630dd0d8cb 100644 --- a/files/en-us/web/api/credentialscontainer/get/index.html +++ b/files/en-us/web/api/credentialscontainer/get/index.html @@ -77,7 +77,6 @@

    Browser compatibility

    -

    {{Compat("api.CredentialsContainer.get")}}

    See also

    diff --git a/files/en-us/web/api/credentialscontainer/index.html b/files/en-us/web/api/credentialscontainer/index.html index 741090dc1c88d95..afa493689ed6eaa 100644 --- a/files/en-us/web/api/credentialscontainer/index.html +++ b/files/en-us/web/api/credentialscontainer/index.html @@ -66,6 +66,5 @@

    Browser compatibility

    -

    {{Compat("api.CredentialsContainer")}}

    diff --git a/files/en-us/web/api/credentialscontainer/preventsilentaccess/index.html b/files/en-us/web/api/credentialscontainer/preventsilentaccess/index.html index 5f123bef2a0ad1e..de03cdd773b5bc6 100644 --- a/files/en-us/web/api/credentialscontainer/preventsilentaccess/index.html +++ b/files/en-us/web/api/credentialscontainer/preventsilentaccess/index.html @@ -49,6 +49,5 @@

    Browser compatibility

    -

    {{Compat("api.CredentialsContainer.preventSilentAccess")}}

    diff --git a/files/en-us/web/api/credentialscontainer/store/index.html b/files/en-us/web/api/credentialscontainer/store/index.html index 98c2a14eaa65eb0..bc37935c2325360 100644 --- a/files/en-us/web/api/credentialscontainer/store/index.html +++ b/files/en-us/web/api/credentialscontainer/store/index.html @@ -76,6 +76,5 @@

    Browser compatibility

    -

    {{Compat("api.CredentialsContainer.store")}}

    diff --git a/files/en-us/web/api/crypto/getrandomvalues/index.html b/files/en-us/web/api/crypto/getrandomvalues/index.html index c514ad750902596..ced190720b395a2 100644 --- a/files/en-us/web/api/crypto/getrandomvalues/index.html +++ b/files/en-us/web/api/crypto/getrandomvalues/index.html @@ -88,8 +88,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Crypto.getRandomValues")}}

    See also

    diff --git a/files/en-us/web/api/crypto/index.html b/files/en-us/web/api/crypto/index.html index d8d33023b891187..acc9623441c7083 100644 --- a/files/en-us/web/api/crypto/index.html +++ b/files/en-us/web/api/crypto/index.html @@ -68,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.Crypto")}}

    diff --git a/files/en-us/web/api/crypto/subtle/index.html b/files/en-us/web/api/crypto/subtle/index.html index da0cd6da27fcd9e..544cf3112d30bef 100644 --- a/files/en-us/web/api/crypto/subtle/index.html +++ b/files/en-us/web/api/crypto/subtle/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Crypto.subtle")}}

    See also

    diff --git a/files/en-us/web/api/cryptokey/index.html b/files/en-us/web/api/cryptokey/index.html index af758e9596edbaa..e69477f98e1f864 100644 --- a/files/en-us/web/api/cryptokey/index.html +++ b/files/en-us/web/api/cryptokey/index.html @@ -109,8 +109,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CryptoKey")}}

    See also

    diff --git a/files/en-us/web/api/cryptokeypair/index.html b/files/en-us/web/api/cryptokeypair/index.html index 30a6c0e273a3ae5..33d7137c10d39f8 100644 --- a/files/en-us/web/api/cryptokeypair/index.html +++ b/files/en-us/web/api/cryptokeypair/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CryptoKeyPair")}}

    See also

    diff --git a/files/en-us/web/api/css/escape/index.html b/files/en-us/web/api/css/escape/index.html index 6cc04a072a88fef..dd26d0d8d33a3e2 100644 --- a/files/en-us/web/api/css/escape/index.html +++ b/files/en-us/web/api/css/escape/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSS.escape")}}

    See also

    diff --git a/files/en-us/web/api/css/factory_functions/index.html b/files/en-us/web/api/css/factory_functions/index.html index 000d5e19d84b8e5..c088d38b777114f 100644 --- a/files/en-us/web/api/css/factory_functions/index.html +++ b/files/en-us/web/api/css/factory_functions/index.html @@ -95,8 +95,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSS")}}

    See also

    diff --git a/files/en-us/web/api/css/index.html b/files/en-us/web/api/css/index.html index 48812c13dc46086..7d7dafd4529c3b3 100644 --- a/files/en-us/web/api/css/index.html +++ b/files/en-us/web/api/css/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSS", 1)}}

    See Also

    diff --git a/files/en-us/web/api/css/paintworklet/index.html b/files/en-us/web/api/css/paintworklet/index.html index e8c40fcdd87b895..6cc55a6946ed1c2 100644 --- a/files/en-us/web/api/css/paintworklet/index.html +++ b/files/en-us/web/api/css/paintworklet/index.html @@ -54,12 +54,8 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSS.paintWorklet")}}

    - -

    See Also

      diff --git a/files/en-us/web/api/css/registerproperty/index.html b/files/en-us/web/api/css/registerproperty/index.html index 5c2cf1a0b54d9fe..9d7204fa8442f4d 100644 --- a/files/en-us/web/api/css/registerproperty/index.html +++ b/files/en-us/web/api/css/registerproperty/index.html @@ -35,7 +35,6 @@

      Return value

      undefined.

      -

      Exceptions

      @@ -113,8 +112,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CSS.registerProperty", 1)}}

      See also

      diff --git a/files/en-us/web/api/css/supports/index.html b/files/en-us/web/api/css/supports/index.html index bbe8da9db6a455e..a7a28e5d40c9e74 100644 --- a/files/en-us/web/api/css/supports/index.html +++ b/files/en-us/web/api/css/supports/index.html @@ -73,8 +73,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.CSS.supports")}}

      See also

      diff --git a/files/en-us/web/api/css_counter_styles/index.html b/files/en-us/web/api/css_counter_styles/index.html index 269da8e3e809c1a..20b67da7eca39b3 100644 --- a/files/en-us/web/api/css_counter_styles/index.html +++ b/files/en-us/web/api/css_counter_styles/index.html @@ -41,7 +41,6 @@

      CSSCounterStyleRule interfac
      -

      {{Compat("api.CSSCounterStyleRule")}}

    diff --git a/files/en-us/web/api/css_font_loading_api/index.html b/files/en-us/web/api/css_font_loading_api/index.html index 60068d1223eca99..9c828a29c25cb9e 100644 --- a/files/en-us/web/api/css_font_loading_api/index.html +++ b/files/en-us/web/api/css_font_loading_api/index.html @@ -57,7 +57,6 @@

    FontFace interface

    -

    {{Compat("api.FontFace")}}

    diff --git a/files/en-us/web/api/css_painting_api/guide/index.html b/files/en-us/web/api/css_painting_api/guide/index.html index 6fc87ad34daff87..a343125afef037e 100644 --- a/files/en-us/web/api/css_painting_api/guide/index.html +++ b/files/en-us/web/api/css_painting_api/guide/index.html @@ -439,7 +439,6 @@

    Passing parameters

    const strokeType = args[0].toString(); const strokeWidth = parseInt(args[1]); - // set the stroke width if ( strokeWidth ) { ctx.lineWidth = strokeWidth; diff --git a/files/en-us/web/api/css_painting_api/index.html b/files/en-us/web/api/css_painting_api/index.html index 8cc105fb73f77cb..dab36b61a433611 100644 --- a/files/en-us/web/api/css_painting_api/index.html +++ b/files/en-us/web/api/css_painting_api/index.html @@ -90,7 +90,6 @@

    Examples

    ctx.strokeStyle = 'none'; } - ctx.beginPath(); ctx.moveTo( x, y ); ctx.lineTo( blockWidth, y ); diff --git a/files/en-us/web/api/css_properties_and_values_api/index.html b/files/en-us/web/api/css_properties_and_values_api/index.html index 9c38ede45854981..281942095b89feb 100644 --- a/files/en-us/web/api/css_properties_and_values_api/index.html +++ b/files/en-us/web/api/css_properties_and_values_api/index.html @@ -15,7 +15,6 @@

    Interfaces

    Defines how a browser should parse a {{cssxref('--*', 'CSS custom properties')}}. Access this interface through {{cssxref('@property')}} at-rule in CSS.
    -

    Examples

    The following uses {{domxref('CSS.registerProperty')}} in JavaScript to type a {{cssxref('--*', 'CSS custom properties')}}, --my-color, as a color, give it a default value, and not allow it to inherit its value:

    diff --git a/files/en-us/web/api/cssconditionrule/index.html b/files/en-us/web/api/cssconditionrule/index.html index da8991b42466caf..43ed25f0510ab0e 100644 --- a/files/en-us/web/api/cssconditionrule/index.html +++ b/files/en-us/web/api/cssconditionrule/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSConditionRule")}}

    See also

    diff --git a/files/en-us/web/api/csscounterstylerule/index.html b/files/en-us/web/api/csscounterstylerule/index.html index 88c99993be6350a..877e7c75816829c 100644 --- a/files/en-us/web/api/csscounterstylerule/index.html +++ b/files/en-us/web/api/csscounterstylerule/index.html @@ -73,7 +73,6 @@

    Browser compatibility

    -

    {{Compat("api.CSSCounterStyleRule")}}

    diff --git a/files/en-us/web/api/cssgroupingrule/index.html b/files/en-us/web/api/cssgroupingrule/index.html index 4ff1e2e64fc20cb..5c984ef9c74525d 100644 --- a/files/en-us/web/api/cssgroupingrule/index.html +++ b/files/en-us/web/api/cssgroupingrule/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSGroupingRule")}}

    See also

    diff --git a/files/en-us/web/api/cssimagevalue/index.html b/files/en-us/web/api/cssimagevalue/index.html index 2441cc5843aa05f..7bcb602770d56f0 100644 --- a/files/en-us/web/api/cssimagevalue/index.html +++ b/files/en-us/web/api/cssimagevalue/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSImageValue")}}

    See Also

    diff --git a/files/en-us/web/api/csskeyframerule/index.html b/files/en-us/web/api/csskeyframerule/index.html index 41d03b0ba45a6aa..958147410cbc21a 100644 --- a/files/en-us/web/api/csskeyframerule/index.html +++ b/files/en-us/web/api/csskeyframerule/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSKeyframeRule")}}

    See also

    diff --git a/files/en-us/web/api/csskeyframesrule/index.html b/files/en-us/web/api/csskeyframesrule/index.html index 79d4f978567a501..5e9ab1c49da6bc8 100644 --- a/files/en-us/web/api/csskeyframesrule/index.html +++ b/files/en-us/web/api/csskeyframesrule/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSKeyframesRule")}}

    See also

    diff --git a/files/en-us/web/api/csskeywordvalue/csskeywordvalue/index.html b/files/en-us/web/api/csskeywordvalue/csskeywordvalue/index.html index 51c0d431f4d19ce..4cb101cbd3d24df 100644 --- a/files/en-us/web/api/csskeywordvalue/csskeywordvalue/index.html +++ b/files/en-us/web/api/csskeywordvalue/csskeywordvalue/index.html @@ -64,6 +64,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSKeywordValue.CSSKeywordValue")}}

    diff --git a/files/en-us/web/api/csskeywordvalue/index.html b/files/en-us/web/api/csskeywordvalue/index.html index 6cfdd06188e882f..4f54bdd1117c2ca 100644 --- a/files/en-us/web/api/csskeywordvalue/index.html +++ b/files/en-us/web/api/csskeywordvalue/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSKeywordValue")}}

    See Also

    diff --git a/files/en-us/web/api/csskeywordvalue/value/index.html b/files/en-us/web/api/csskeywordvalue/value/index.html index 7fc8ec8bf452665..9b48f8c56ed5aa9 100644 --- a/files/en-us/web/api/csskeywordvalue/value/index.html +++ b/files/en-us/web/api/csskeywordvalue/value/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSKeywordValue.value")}}

    diff --git a/files/en-us/web/api/cssmathinvert/cssmathinvert/index.html b/files/en-us/web/api/cssmathinvert/cssmathinvert/index.html index 19f8adf43355568..1649d941cb30194 100644 --- a/files/en-us/web/api/cssmathinvert/cssmathinvert/index.html +++ b/files/en-us/web/api/cssmathinvert/cssmathinvert/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathInvert.CSSMathInvert")}}

    diff --git a/files/en-us/web/api/cssmathinvert/index.html b/files/en-us/web/api/cssmathinvert/index.html index b8a4f8f4a03c0d3..f301077bf544974 100644 --- a/files/en-us/web/api/cssmathinvert/index.html +++ b/files/en-us/web/api/cssmathinvert/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathInvert")}}

    diff --git a/files/en-us/web/api/cssmathinvert/value/index.html b/files/en-us/web/api/cssmathinvert/value/index.html index 25aafe1e4798000..b71a3214a1c1a42 100644 --- a/files/en-us/web/api/cssmathinvert/value/index.html +++ b/files/en-us/web/api/cssmathinvert/value/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathInvert.value")}}

    diff --git a/files/en-us/web/api/cssmathmax/cssmathmax/index.html b/files/en-us/web/api/cssmathmax/cssmathmax/index.html index ebd3b063131b01c..47d68a87ea62d6e 100644 --- a/files/en-us/web/api/cssmathmax/cssmathmax/index.html +++ b/files/en-us/web/api/cssmathmax/cssmathmax/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathMax.CSSMathMax")}}

    diff --git a/files/en-us/web/api/cssmathmax/index.html b/files/en-us/web/api/cssmathmax/index.html index d1532ef80b61f4a..9b9574b5ab551c2 100644 --- a/files/en-us/web/api/cssmathmax/index.html +++ b/files/en-us/web/api/cssmathmax/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathMax")}}

    diff --git a/files/en-us/web/api/cssmathmax/values/index.html b/files/en-us/web/api/cssmathmax/values/index.html index a2232fbe6ecb9dc..e88ba22baac1b01 100644 --- a/files/en-us/web/api/cssmathmax/values/index.html +++ b/files/en-us/web/api/cssmathmax/values/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathMax.values")}}

    diff --git a/files/en-us/web/api/cssmathmin/cssmathmin/index.html b/files/en-us/web/api/cssmathmin/cssmathmin/index.html index 2cc2f2044343c89..96d6b06657de663 100644 --- a/files/en-us/web/api/cssmathmin/cssmathmin/index.html +++ b/files/en-us/web/api/cssmathmin/cssmathmin/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathMin.CSSMathMin")}}

    diff --git a/files/en-us/web/api/cssmathmin/index.html b/files/en-us/web/api/cssmathmin/index.html index 8f7882ede066688..daf27633fe9f6cd 100644 --- a/files/en-us/web/api/cssmathmin/index.html +++ b/files/en-us/web/api/cssmathmin/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathMin")}}

    diff --git a/files/en-us/web/api/cssmathmin/values/index.html b/files/en-us/web/api/cssmathmin/values/index.html index 2b278876c2509fb..921bcf53bb7c368 100644 --- a/files/en-us/web/api/cssmathmin/values/index.html +++ b/files/en-us/web/api/cssmathmin/values/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathMin.values")}}

    diff --git a/files/en-us/web/api/cssmathnegate/cssmathnegate/index.html b/files/en-us/web/api/cssmathnegate/cssmathnegate/index.html index 80eaf6462739acb..79d55fc58e0a67d 100644 --- a/files/en-us/web/api/cssmathnegate/cssmathnegate/index.html +++ b/files/en-us/web/api/cssmathnegate/cssmathnegate/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathNegate.CSSMathNegate")}}

    diff --git a/files/en-us/web/api/cssmathnegate/index.html b/files/en-us/web/api/cssmathnegate/index.html index 12dbe8c72c72fd1..3fb158504555cb3 100644 --- a/files/en-us/web/api/cssmathnegate/index.html +++ b/files/en-us/web/api/cssmathnegate/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathNegate")}}

    diff --git a/files/en-us/web/api/cssmathnegate/value/index.html b/files/en-us/web/api/cssmathnegate/value/index.html index 98b369d63b7a5ba..a526245804714c4 100644 --- a/files/en-us/web/api/cssmathnegate/value/index.html +++ b/files/en-us/web/api/cssmathnegate/value/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathNegate.value")}}

    diff --git a/files/en-us/web/api/cssmathproduct/cssmathproduct/index.html b/files/en-us/web/api/cssmathproduct/cssmathproduct/index.html index fe2d7dc50a9c213..cb9279480a032f7 100644 --- a/files/en-us/web/api/cssmathproduct/cssmathproduct/index.html +++ b/files/en-us/web/api/cssmathproduct/cssmathproduct/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathProduct.CSSMathProduct")}}

    diff --git a/files/en-us/web/api/cssmathproduct/index.html b/files/en-us/web/api/cssmathproduct/index.html index 5a40a54114cb83c..a24d6a22c57ef71 100644 --- a/files/en-us/web/api/cssmathproduct/index.html +++ b/files/en-us/web/api/cssmathproduct/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathProduct")}}

    diff --git a/files/en-us/web/api/cssmathproduct/values/index.html b/files/en-us/web/api/cssmathproduct/values/index.html index 4369dae34538a71..4e313574d6a1fc7 100644 --- a/files/en-us/web/api/cssmathproduct/values/index.html +++ b/files/en-us/web/api/cssmathproduct/values/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathProduct.values")}}

    diff --git a/files/en-us/web/api/cssmathsum/cssmathsum/index.html b/files/en-us/web/api/cssmathsum/cssmathsum/index.html index d8bf4945231ba27..8cb3de67c27dba3 100644 --- a/files/en-us/web/api/cssmathsum/cssmathsum/index.html +++ b/files/en-us/web/api/cssmathsum/cssmathsum/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathSum.CSSMathSum")}}

    diff --git a/files/en-us/web/api/cssmathsum/index.html b/files/en-us/web/api/cssmathsum/index.html index b0929b896633205..c38e5b587491a20 100644 --- a/files/en-us/web/api/cssmathsum/index.html +++ b/files/en-us/web/api/cssmathsum/index.html @@ -93,6 +93,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathSum")}}

    diff --git a/files/en-us/web/api/cssmathsum/values/index.html b/files/en-us/web/api/cssmathsum/values/index.html index 72d7441f16f20ed..a2e15ae50170295 100644 --- a/files/en-us/web/api/cssmathsum/values/index.html +++ b/files/en-us/web/api/cssmathsum/values/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathSum.values")}}

    diff --git a/files/en-us/web/api/cssmathvalue/index.html b/files/en-us/web/api/cssmathvalue/index.html index 17eab714666ba3b..2769be4961ae3b0 100644 --- a/files/en-us/web/api/cssmathvalue/index.html +++ b/files/en-us/web/api/cssmathvalue/index.html @@ -70,8 +70,6 @@

    Examples

    The CSSMathValue.operator returns 'sum' because styleMap.get('width').values[1].value ); is -20: adding a negative number.

    - -

    Specifications

    @@ -91,6 +89,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathValue")}}

    diff --git a/files/en-us/web/api/cssmathvalue/operator/index.html b/files/en-us/web/api/cssmathvalue/operator/index.html index d72d30ea551b9c4..a7dfe125f057c6a 100644 --- a/files/en-us/web/api/cssmathvalue/operator/index.html +++ b/files/en-us/web/api/cssmathvalue/operator/index.html @@ -108,6 +108,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMathValue.operator")}}

    diff --git a/files/en-us/web/api/cssmatrixcomponent/cssmatrixcomponent/index.html b/files/en-us/web/api/cssmatrixcomponent/cssmatrixcomponent/index.html index 982bacfd1eea9ce..70db9b7a05236b6 100644 --- a/files/en-us/web/api/cssmatrixcomponent/cssmatrixcomponent/index.html +++ b/files/en-us/web/api/cssmatrixcomponent/cssmatrixcomponent/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMatrixComponent.CSSMatrixComponent")}}

    diff --git a/files/en-us/web/api/cssmatrixcomponent/index.html b/files/en-us/web/api/cssmatrixcomponent/index.html index 579eb37a73caab0..f1dd859b916b97c 100644 --- a/files/en-us/web/api/cssmatrixcomponent/index.html +++ b/files/en-us/web/api/cssmatrixcomponent/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMatrixComponent")}}

    diff --git a/files/en-us/web/api/cssmatrixcomponent/matrix/index.html b/files/en-us/web/api/cssmatrixcomponent/matrix/index.html index a6a1800ce6ff4a6..8bff06690310536 100644 --- a/files/en-us/web/api/cssmatrixcomponent/matrix/index.html +++ b/files/en-us/web/api/cssmatrixcomponent/matrix/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMatrixComponent.matrix")}}

    diff --git a/files/en-us/web/api/cssmediarule/index.html b/files/en-us/web/api/cssmediarule/index.html index 5ff6440e3eea628..1b5e3a8309d6c5a 100644 --- a/files/en-us/web/api/cssmediarule/index.html +++ b/files/en-us/web/api/cssmediarule/index.html @@ -64,6 +64,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSMediaRule")}}

    diff --git a/files/en-us/web/api/cssnamespacerule/index.html b/files/en-us/web/api/cssnamespacerule/index.html index bea4afbca25282b..87b458e3746ebb2 100644 --- a/files/en-us/web/api/cssnamespacerule/index.html +++ b/files/en-us/web/api/cssnamespacerule/index.html @@ -36,7 +36,6 @@

    Methods

    As a {{ domxref("CSSRule") }}, CSSNamespaceRule also implements the methods of that interface. It has no specific methods:

    -

    Specifications

    @@ -58,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNamespaceRule")}}

    diff --git a/files/en-us/web/api/cssnamespacerule/namespaceuri/index.html b/files/en-us/web/api/cssnamespacerule/namespaceuri/index.html index 00166ed12ed3ae7..10c727c12122a87 100644 --- a/files/en-us/web/api/cssnamespacerule/namespaceuri/index.html +++ b/files/en-us/web/api/cssnamespacerule/namespaceuri/index.html @@ -40,6 +40,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNamespaceRule.namespaceURI")}}

    diff --git a/files/en-us/web/api/cssnamespacerule/prefix/index.html b/files/en-us/web/api/cssnamespacerule/prefix/index.html index e44ce1cc369cf7f..74d86b1bfa62d1a 100644 --- a/files/en-us/web/api/cssnamespacerule/prefix/index.html +++ b/files/en-us/web/api/cssnamespacerule/prefix/index.html @@ -40,6 +40,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNamespaceRule.prefix")}}

    diff --git a/files/en-us/web/api/cssnumericarray/index.html b/files/en-us/web/api/cssnumericarray/index.html index 7bc269b625a69b1..ac9dd91cd76c3a0 100644 --- a/files/en-us/web/api/cssnumericarray/index.html +++ b/files/en-us/web/api/cssnumericarray/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericArray")}}

    diff --git a/files/en-us/web/api/cssnumericarray/length/index.html b/files/en-us/web/api/cssnumericarray/length/index.html index c3bce99d2c4647a..7da0a656b477ffc 100644 --- a/files/en-us/web/api/cssnumericarray/length/index.html +++ b/files/en-us/web/api/cssnumericarray/length/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericArray.length")}}

    diff --git a/files/en-us/web/api/cssnumericvalue/add/index.html b/files/en-us/web/api/cssnumericvalue/add/index.html index bd6e9a41f528379..cddb21be4329fd5 100644 --- a/files/en-us/web/api/cssnumericvalue/add/index.html +++ b/files/en-us/web/api/cssnumericvalue/add/index.html @@ -62,6 +62,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue.add")}}

    diff --git a/files/en-us/web/api/cssnumericvalue/div/index.html b/files/en-us/web/api/cssnumericvalue/div/index.html index bf2172d58e9d9aa..943a8c4b0e3e58a 100644 --- a/files/en-us/web/api/cssnumericvalue/div/index.html +++ b/files/en-us/web/api/cssnumericvalue/div/index.html @@ -62,6 +62,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue.div")}}

    diff --git a/files/en-us/web/api/cssnumericvalue/equals/index.html b/files/en-us/web/api/cssnumericvalue/equals/index.html index 619948e20be4446..314316603cdded7 100644 --- a/files/en-us/web/api/cssnumericvalue/equals/index.html +++ b/files/en-us/web/api/cssnumericvalue/equals/index.html @@ -69,6 +69,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue.equals")}}

    diff --git a/files/en-us/web/api/cssnumericvalue/index.html b/files/en-us/web/api/cssnumericvalue/index.html index e897dbb68506e1a..96cc6fa29d6a7c7 100644 --- a/files/en-us/web/api/cssnumericvalue/index.html +++ b/files/en-us/web/api/cssnumericvalue/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue")}}

    See Also

    diff --git a/files/en-us/web/api/cssnumericvalue/max/index.html b/files/en-us/web/api/cssnumericvalue/max/index.html index 37a575d5daaaa65..8608c478b2f4887 100644 --- a/files/en-us/web/api/cssnumericvalue/max/index.html +++ b/files/en-us/web/api/cssnumericvalue/max/index.html @@ -66,6 +66,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue.max")}}

    diff --git a/files/en-us/web/api/cssnumericvalue/min/index.html b/files/en-us/web/api/cssnumericvalue/min/index.html index 4e5d6f40dbb82a6..64076aca233bb3a 100644 --- a/files/en-us/web/api/cssnumericvalue/min/index.html +++ b/files/en-us/web/api/cssnumericvalue/min/index.html @@ -66,6 +66,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue.min")}}

    diff --git a/files/en-us/web/api/cssnumericvalue/mul/index.html b/files/en-us/web/api/cssnumericvalue/mul/index.html index 4f29a13d79815a0..d42646b03401901 100644 --- a/files/en-us/web/api/cssnumericvalue/mul/index.html +++ b/files/en-us/web/api/cssnumericvalue/mul/index.html @@ -62,6 +62,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue.mul")}}

    diff --git a/files/en-us/web/api/cssnumericvalue/parse/index.html b/files/en-us/web/api/cssnumericvalue/parse/index.html index 5cb7e4b86de9623..36d34abc965f3e3 100644 --- a/files/en-us/web/api/cssnumericvalue/parse/index.html +++ b/files/en-us/web/api/cssnumericvalue/parse/index.html @@ -62,6 +62,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue.parse")}}

    diff --git a/files/en-us/web/api/cssnumericvalue/sub/index.html b/files/en-us/web/api/cssnumericvalue/sub/index.html index 2da93048aa76313..05716987a6c3d08 100644 --- a/files/en-us/web/api/cssnumericvalue/sub/index.html +++ b/files/en-us/web/api/cssnumericvalue/sub/index.html @@ -64,6 +64,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue.sub")}}

    diff --git a/files/en-us/web/api/cssnumericvalue/sum/index.html b/files/en-us/web/api/cssnumericvalue/sum/index.html index e177e64299d383e..f0dc108f82a2112 100644 --- a/files/en-us/web/api/cssnumericvalue/sum/index.html +++ b/files/en-us/web/api/cssnumericvalue/sum/index.html @@ -64,6 +64,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue.sub")}}

    diff --git a/files/en-us/web/api/cssnumericvalue/to/index.html b/files/en-us/web/api/cssnumericvalue/to/index.html index 4f21d396f877438..1f7fa73d0d2c44d 100644 --- a/files/en-us/web/api/cssnumericvalue/to/index.html +++ b/files/en-us/web/api/cssnumericvalue/to/index.html @@ -63,6 +63,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue.to")}}

    diff --git a/files/en-us/web/api/cssnumericvalue/tosum/index.html b/files/en-us/web/api/cssnumericvalue/tosum/index.html index e73f8f58854a0a6..591c6f245a77b2b 100644 --- a/files/en-us/web/api/cssnumericvalue/tosum/index.html +++ b/files/en-us/web/api/cssnumericvalue/tosum/index.html @@ -64,6 +64,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue.toSum")}}

    diff --git a/files/en-us/web/api/cssnumericvalue/type/index.html b/files/en-us/web/api/cssnumericvalue/type/index.html index b4ea4f3b579ac13..c37a682e8393cfa 100644 --- a/files/en-us/web/api/cssnumericvalue/type/index.html +++ b/files/en-us/web/api/cssnumericvalue/type/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSNumericValue.type")}}

    diff --git a/files/en-us/web/api/csspagerule/index.html b/files/en-us/web/api/csspagerule/index.html index 247203762917c33..b4e7db7492975b0 100644 --- a/files/en-us/web/api/csspagerule/index.html +++ b/files/en-us/web/api/csspagerule/index.html @@ -62,6 +62,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSPageRule")}}

    diff --git a/files/en-us/web/api/cssperspective/cssperspective/index.html b/files/en-us/web/api/cssperspective/cssperspective/index.html index af41c6b05c49a3e..745d61729f4a1f1 100644 --- a/files/en-us/web/api/cssperspective/cssperspective/index.html +++ b/files/en-us/web/api/cssperspective/cssperspective/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSPerspective.CSSPerspective")}}

    diff --git a/files/en-us/web/api/cssperspective/index.html b/files/en-us/web/api/cssperspective/index.html index 14b31acd48c2da5..5d701818789e48a 100644 --- a/files/en-us/web/api/cssperspective/index.html +++ b/files/en-us/web/api/cssperspective/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSPerspective")}}

    diff --git a/files/en-us/web/api/cssperspective/length/index.html b/files/en-us/web/api/cssperspective/length/index.html index b1e322397858454..6314e6cdc5c432f 100644 --- a/files/en-us/web/api/cssperspective/length/index.html +++ b/files/en-us/web/api/cssperspective/length/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSPerspective.length")}}

    diff --git a/files/en-us/web/api/csspositionvalue/csspositionvalue/index.html b/files/en-us/web/api/csspositionvalue/csspositionvalue/index.html index 80b0f43a43dde15..c4c4ab3cc4d5076 100644 --- a/files/en-us/web/api/csspositionvalue/csspositionvalue/index.html +++ b/files/en-us/web/api/csspositionvalue/csspositionvalue/index.html @@ -37,12 +37,8 @@

    Examples

    someDiv.attributeStyleMap.set('object-position', position); console.log(position.x.value, position.y.value); // 5 10 - -

    Browser compatibility

    - -

    {{Compat("api.CSSPositionValue.CSSPositionValue")}}

    See Also

    diff --git a/files/en-us/web/api/csspositionvalue/index.html b/files/en-us/web/api/csspositionvalue/index.html index 41ee42744b56c09..90912baacb907a2 100644 --- a/files/en-us/web/api/csspositionvalue/index.html +++ b/files/en-us/web/api/csspositionvalue/index.html @@ -60,11 +60,8 @@

    Examples

    {{EmbedLiveSample("Examples", 300, 300)}}

    -

    Browser compatibility

    - -

    {{Compat("api.CSSPositionValue")}}

    See Also

    diff --git a/files/en-us/web/api/csspositionvalue/x/index.html b/files/en-us/web/api/csspositionvalue/x/index.html index 1276e054d3ef561..a89e4edc7bca3a4 100644 --- a/files/en-us/web/api/csspositionvalue/x/index.html +++ b/files/en-us/web/api/csspositionvalue/x/index.html @@ -35,8 +35,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.CSSPositionValue.x")}}

    See Also

    diff --git a/files/en-us/web/api/csspositionvalue/y/index.html b/files/en-us/web/api/csspositionvalue/y/index.html index 6d595a9d07c4dc4..dfe5de4c72b02bc 100644 --- a/files/en-us/web/api/csspositionvalue/y/index.html +++ b/files/en-us/web/api/csspositionvalue/y/index.html @@ -35,8 +35,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.CSSPositionValue.y")}}

    See Also

    diff --git a/files/en-us/web/api/cssprimitivevalue/getcountervalue/index.html b/files/en-us/web/api/cssprimitivevalue/getcountervalue/index.html index a16b5a6de3d6067..f1d3a1beebb17bf 100644 --- a/files/en-us/web/api/cssprimitivevalue/getcountervalue/index.html +++ b/files/en-us/web/api/cssprimitivevalue/getcountervalue/index.html @@ -58,6 +58,5 @@

    Browser compatibility

    -

    {{Compat("api.CSSPrimitiveValue.getCounterValue")}}

    diff --git a/files/en-us/web/api/cssprimitivevalue/getfloatvalue/index.html b/files/en-us/web/api/cssprimitivevalue/getfloatvalue/index.html index dfcdd51c0a3632d..e0a526dce0bdebf 100644 --- a/files/en-us/web/api/cssprimitivevalue/getfloatvalue/index.html +++ b/files/en-us/web/api/cssprimitivevalue/getfloatvalue/index.html @@ -151,6 +151,5 @@

    Browser compatibility

    -

    {{Compat("api.CSSPrimitiveValue.getFloatValue")}}

    diff --git a/files/en-us/web/api/cssprimitivevalue/getrectvalue/index.html b/files/en-us/web/api/cssprimitivevalue/getrectvalue/index.html index be5b005780d54f4..f8c7b2395d3b369 100644 --- a/files/en-us/web/api/cssprimitivevalue/getrectvalue/index.html +++ b/files/en-us/web/api/cssprimitivevalue/getrectvalue/index.html @@ -63,6 +63,5 @@

    Browser compatibility

    -

    {{Compat("api.CSSPrimitiveValue.getRectValue")}}

    diff --git a/files/en-us/web/api/cssprimitivevalue/getrgbcolorvalue/index.html b/files/en-us/web/api/cssprimitivevalue/getrgbcolorvalue/index.html index f8cda64c908385f..3e6cf93b232fc12 100644 --- a/files/en-us/web/api/cssprimitivevalue/getrgbcolorvalue/index.html +++ b/files/en-us/web/api/cssprimitivevalue/getrgbcolorvalue/index.html @@ -63,6 +63,5 @@

    Browser compatibility

    -

    {{Compat("api.CSSPrimitiveValue.getRGBColorValue")}}

    diff --git a/files/en-us/web/api/cssprimitivevalue/getstringvalue/index.html b/files/en-us/web/api/cssprimitivevalue/getstringvalue/index.html index 3bc68d7fabf814c..de7ec05b6210563 100644 --- a/files/en-us/web/api/cssprimitivevalue/getstringvalue/index.html +++ b/files/en-us/web/api/cssprimitivevalue/getstringvalue/index.html @@ -63,6 +63,5 @@

    Browser compatibility

    -

    {{Compat("api.CSSPrimitiveValue.getStringValue")}}

    diff --git a/files/en-us/web/api/cssprimitivevalue/index.html b/files/en-us/web/api/cssprimitivevalue/index.html index a6a8d244fc36750..eb8fa81864ab8c1 100644 --- a/files/en-us/web/api/cssprimitivevalue/index.html +++ b/files/en-us/web/api/cssprimitivevalue/index.html @@ -181,7 +181,6 @@

    Browser compatibility

    -

    {{Compat("api.CSSPrimitiveValue")}}

    diff --git a/files/en-us/web/api/cssprimitivevalue/primitivetype/index.html b/files/en-us/web/api/cssprimitivevalue/primitivetype/index.html index daff51f1ac6f963..60b36966478fec4 100644 --- a/files/en-us/web/api/cssprimitivevalue/primitivetype/index.html +++ b/files/en-us/web/api/cssprimitivevalue/primitivetype/index.html @@ -163,7 +163,6 @@

    Browser compatibility

    -

    {{Compat("api.CSSPrimitiveValue.primitiveType")}}

    diff --git a/files/en-us/web/api/cssprimitivevalue/setfloatvalue/index.html b/files/en-us/web/api/cssprimitivevalue/setfloatvalue/index.html index 4b70491395c86ed..a1d7fb95b8428ae 100644 --- a/files/en-us/web/api/cssprimitivevalue/setfloatvalue/index.html +++ b/files/en-us/web/api/cssprimitivevalue/setfloatvalue/index.html @@ -149,6 +149,5 @@

    Browser compatibility

    -

    {{Compat("api.CSSPrimitiveValue.setFloatValue")}}

    diff --git a/files/en-us/web/api/cssprimitivevalue/setstringvalue/index.html b/files/en-us/web/api/cssprimitivevalue/setstringvalue/index.html index efa490a1a1d19d1..d5ea0b86c0ca04d 100644 --- a/files/en-us/web/api/cssprimitivevalue/setstringvalue/index.html +++ b/files/en-us/web/api/cssprimitivevalue/setstringvalue/index.html @@ -93,6 +93,5 @@

    Browser compatibility

    -

    {{Compat("api.CSSPrimitiveValue.setStringValue")}}

    diff --git a/files/en-us/web/api/csspropertyrule/initialvalue/index.html b/files/en-us/web/api/csspropertyrule/initialvalue/index.html index 8f1b26478936ef0..653357145d6d16c 100644 --- a/files/en-us/web/api/csspropertyrule/initialvalue/index.html +++ b/files/en-us/web/api/csspropertyrule/initialvalue/index.html @@ -29,7 +29,6 @@

    Examples

    Specifications

    -
    diff --git a/files/en-us/web/api/csspropertyrule/name/index.html b/files/en-us/web/api/csspropertyrule/name/index.html index 225d2840ff35346..64d7973feced911 100644 --- a/files/en-us/web/api/csspropertyrule/name/index.html +++ b/files/en-us/web/api/csspropertyrule/name/index.html @@ -29,7 +29,6 @@

    Examples

    Specifications

    -
    diff --git a/files/en-us/web/api/csspropertyrule/syntax/index.html b/files/en-us/web/api/csspropertyrule/syntax/index.html index b22162298279318..4a82fd1ae558816 100644 --- a/files/en-us/web/api/csspropertyrule/syntax/index.html +++ b/files/en-us/web/api/csspropertyrule/syntax/index.html @@ -29,7 +29,6 @@

    Examples

    Specifications

    -
    diff --git a/files/en-us/web/api/csspseudoelement/element/index.html b/files/en-us/web/api/csspseudoelement/element/index.html index c35ed9bc8fe4c7f..df3738928290c29 100644 --- a/files/en-us/web/api/csspseudoelement/element/index.html +++ b/files/en-us/web/api/csspseudoelement/element/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat('api.CSSPseudoElement.element')}}

    See also

    diff --git a/files/en-us/web/api/csspseudoelement/type/index.html b/files/en-us/web/api/csspseudoelement/type/index.html index afbc0cf7eccc2ca..5536bf85e1f4ea6 100644 --- a/files/en-us/web/api/csspseudoelement/type/index.html +++ b/files/en-us/web/api/csspseudoelement/type/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat('api.CSSPseudoElement.type')}}

    See also

    diff --git a/files/en-us/web/api/cssrotate/angle/index.html b/files/en-us/web/api/cssrotate/angle/index.html index eb93f860e6023ba..021e9cb12a9a274 100644 --- a/files/en-us/web/api/cssrotate/angle/index.html +++ b/files/en-us/web/api/cssrotate/angle/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSRotate.angle")}}

    diff --git a/files/en-us/web/api/cssrotate/cssrotate/index.html b/files/en-us/web/api/cssrotate/cssrotate/index.html index 03cf62780783b9a..faf24a1944c3925 100644 --- a/files/en-us/web/api/cssrotate/cssrotate/index.html +++ b/files/en-us/web/api/cssrotate/cssrotate/index.html @@ -60,6 +60,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSRotate.CSSRotate")}}

    diff --git a/files/en-us/web/api/cssrotate/index.html b/files/en-us/web/api/cssrotate/index.html index 37f2ded5c250797..ab49b291dee2a9a 100644 --- a/files/en-us/web/api/cssrotate/index.html +++ b/files/en-us/web/api/cssrotate/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSRotate")}}

    diff --git a/files/en-us/web/api/cssrotate/x/index.html b/files/en-us/web/api/cssrotate/x/index.html index 8d537c804389539..f1a49847f7860ed 100644 --- a/files/en-us/web/api/cssrotate/x/index.html +++ b/files/en-us/web/api/cssrotate/x/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSRotate.x")}}

    diff --git a/files/en-us/web/api/cssrotate/y/index.html b/files/en-us/web/api/cssrotate/y/index.html index e7d5faba3deda2a..bcd16f188f545d1 100644 --- a/files/en-us/web/api/cssrotate/y/index.html +++ b/files/en-us/web/api/cssrotate/y/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSRotate.y")}}

    diff --git a/files/en-us/web/api/cssrotate/z/index.html b/files/en-us/web/api/cssrotate/z/index.html index 47383b438ec852c..5a8ade104238b0b 100644 --- a/files/en-us/web/api/cssrotate/z/index.html +++ b/files/en-us/web/api/cssrotate/z/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSRotate.z")}}

    diff --git a/files/en-us/web/api/cssrule/csstext/index.html b/files/en-us/web/api/cssrule/csstext/index.html index cead6cc148ec6b3..9a4dd9935143837 100644 --- a/files/en-us/web/api/cssrule/csstext/index.html +++ b/files/en-us/web/api/cssrule/csstext/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSRule.cssText")}}

    diff --git a/files/en-us/web/api/cssrule/index.html b/files/en-us/web/api/cssrule/index.html index 91b4aad9131bce8..2fb71f04f1dbb60 100644 --- a/files/en-us/web/api/cssrule/index.html +++ b/files/en-us/web/api/cssrule/index.html @@ -198,7 +198,6 @@

    Browser compatibility

    -

    {{Compat("api.CSSRule")}}

    diff --git a/files/en-us/web/api/cssrule/parentstylesheet/index.html b/files/en-us/web/api/cssrule/parentstylesheet/index.html index a44ef9599df6f5a..36afc621b36e180 100644 --- a/files/en-us/web/api/cssrule/parentstylesheet/index.html +++ b/files/en-us/web/api/cssrule/parentstylesheet/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSRule.parentStyleSheet")}}

    diff --git a/files/en-us/web/api/cssrulelist/index.html b/files/en-us/web/api/cssrulelist/index.html index 7764b1ed98cb23a..4f91bb7bf0a4208 100644 --- a/files/en-us/web/api/cssrulelist/index.html +++ b/files/en-us/web/api/cssrulelist/index.html @@ -40,7 +40,6 @@

    CSSRuleList implementations

  • {{ domxref("CSSMozDocumentRule") }} property {{ domxref("CSSMozDocumentRule/cssRules", "cssRules") }}
  • -

    Specifications

    @@ -62,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSRuleList")}}

    diff --git a/files/en-us/web/api/cssscale/cssscale/index.html b/files/en-us/web/api/cssscale/cssscale/index.html index a785ed9fa747b17..84e35486ebb6da7 100644 --- a/files/en-us/web/api/cssscale/cssscale/index.html +++ b/files/en-us/web/api/cssscale/cssscale/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSScale.CSSScale")}}

    diff --git a/files/en-us/web/api/cssscale/index.html b/files/en-us/web/api/cssscale/index.html index 105e302c6f2ce6e..74982eebc21ff6b 100644 --- a/files/en-us/web/api/cssscale/index.html +++ b/files/en-us/web/api/cssscale/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSScale")}}

    diff --git a/files/en-us/web/api/cssscale/x/index.html b/files/en-us/web/api/cssscale/x/index.html index 7e606c9930319a4..5ae75103e0b8f02 100644 --- a/files/en-us/web/api/cssscale/x/index.html +++ b/files/en-us/web/api/cssscale/x/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSScale.x")}}

    diff --git a/files/en-us/web/api/cssscale/y/index.html b/files/en-us/web/api/cssscale/y/index.html index 5d991623465875b..fe1cfdcba959eed 100644 --- a/files/en-us/web/api/cssscale/y/index.html +++ b/files/en-us/web/api/cssscale/y/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSScale.y")}}

    diff --git a/files/en-us/web/api/cssscale/z/index.html b/files/en-us/web/api/cssscale/z/index.html index 71653e5bf190595..c06b1fd41d4bef5 100644 --- a/files/en-us/web/api/cssscale/z/index.html +++ b/files/en-us/web/api/cssscale/z/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSScale.z")}}

    diff --git a/files/en-us/web/api/cssskew/ax/index.html b/files/en-us/web/api/cssskew/ax/index.html index 44baac02f7734c2..770e8c645418b51 100644 --- a/files/en-us/web/api/cssskew/ax/index.html +++ b/files/en-us/web/api/cssskew/ax/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSSkew.ax")}}

    diff --git a/files/en-us/web/api/cssskew/ay/index.html b/files/en-us/web/api/cssskew/ay/index.html index 73d8426f3908188..16868ca386626c6 100644 --- a/files/en-us/web/api/cssskew/ay/index.html +++ b/files/en-us/web/api/cssskew/ay/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSSkew.ay")}}

    diff --git a/files/en-us/web/api/cssskew/cssskew/index.html b/files/en-us/web/api/cssskew/cssskew/index.html index b9519f9389d6c3d..efbc70eef652fad 100644 --- a/files/en-us/web/api/cssskew/cssskew/index.html +++ b/files/en-us/web/api/cssskew/cssskew/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSSkew.CSSSkew")}}

    diff --git a/files/en-us/web/api/cssskew/index.html b/files/en-us/web/api/cssskew/index.html index c872ba8d21912c6..6bc745377de4ac4 100644 --- a/files/en-us/web/api/cssskew/index.html +++ b/files/en-us/web/api/cssskew/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSSkew")}}

    diff --git a/files/en-us/web/api/cssskewx/ax/index.html b/files/en-us/web/api/cssskewx/ax/index.html index dd2e94bbc395cf6..d1ec56ebb5e9502 100644 --- a/files/en-us/web/api/cssskewx/ax/index.html +++ b/files/en-us/web/api/cssskewx/ax/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSSkewX.ax")}}

    diff --git a/files/en-us/web/api/cssskewx/cssskewx/index.html b/files/en-us/web/api/cssskewx/cssskewx/index.html index 650656a786ce4b4..9245db571032865 100644 --- a/files/en-us/web/api/cssskewx/cssskewx/index.html +++ b/files/en-us/web/api/cssskewx/cssskewx/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSSkewX.CSSSkewX")}}

    diff --git a/files/en-us/web/api/cssskewx/index.html b/files/en-us/web/api/cssskewx/index.html index fa3481200ad9c4e..00e6a4fba40169e 100644 --- a/files/en-us/web/api/cssskewx/index.html +++ b/files/en-us/web/api/cssskewx/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSSkewX")}}

    diff --git a/files/en-us/web/api/cssskewy/ay/index.html b/files/en-us/web/api/cssskewy/ay/index.html index f176a085622e22f..f544e8676caaf26 100644 --- a/files/en-us/web/api/cssskewy/ay/index.html +++ b/files/en-us/web/api/cssskewy/ay/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSSkewY.ay")}}

    diff --git a/files/en-us/web/api/cssskewy/cssskewy/index.html b/files/en-us/web/api/cssskewy/cssskewy/index.html index a9d19abb0e7ea8b..72ad106418ddca6 100644 --- a/files/en-us/web/api/cssskewy/cssskewy/index.html +++ b/files/en-us/web/api/cssskewy/cssskewy/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSSkewY.CSSSkewY")}}

    diff --git a/files/en-us/web/api/cssskewy/index.html b/files/en-us/web/api/cssskewy/index.html index 54e5bca774222f0..306831cd94aafea 100644 --- a/files/en-us/web/api/cssskewy/index.html +++ b/files/en-us/web/api/cssskewy/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSSkewY")}}

    diff --git a/files/en-us/web/api/cssstyledeclaration/csstext/index.html b/files/en-us/web/api/cssstyledeclaration/csstext/index.html index d3f37ba90ac0807..6d44377c19a74f4 100644 --- a/files/en-us/web/api/cssstyledeclaration/csstext/index.html +++ b/files/en-us/web/api/cssstyledeclaration/csstext/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleDeclaration.cssText")}}

    diff --git a/files/en-us/web/api/cssstyledeclaration/getpropertycssvalue/index.html b/files/en-us/web/api/cssstyledeclaration/getpropertycssvalue/index.html index 1cc2dbab6d204b1..e7d8862fff1c236 100644 --- a/files/en-us/web/api/cssstyledeclaration/getpropertycssvalue/index.html +++ b/files/en-us/web/api/cssstyledeclaration/getpropertycssvalue/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleDeclaration.getPropertyCSSValue")}}

    diff --git a/files/en-us/web/api/cssstyledeclaration/getpropertypriority/index.html b/files/en-us/web/api/cssstyledeclaration/getpropertypriority/index.html index 7e4170a625b586e..572c1a80d085fc3 100644 --- a/files/en-us/web/api/cssstyledeclaration/getpropertypriority/index.html +++ b/files/en-us/web/api/cssstyledeclaration/getpropertypriority/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleDeclaration.getPropertyPriority")}}

    diff --git a/files/en-us/web/api/cssstyledeclaration/getpropertyvalue/index.html b/files/en-us/web/api/cssstyledeclaration/getpropertyvalue/index.html index 8b44452583b6b8a..568d8bf6a516cf0 100644 --- a/files/en-us/web/api/cssstyledeclaration/getpropertyvalue/index.html +++ b/files/en-us/web/api/cssstyledeclaration/getpropertyvalue/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleDeclaration.getPropertyValue")}}

    diff --git a/files/en-us/web/api/cssstyledeclaration/index.html b/files/en-us/web/api/cssstyledeclaration/index.html index 1e5bcd8e3f6df7e..1c3fc811476c434 100644 --- a/files/en-us/web/api/cssstyledeclaration/index.html +++ b/files/en-us/web/api/cssstyledeclaration/index.html @@ -96,8 +96,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleDeclaration")}}

    See also

    diff --git a/files/en-us/web/api/cssstyledeclaration/item/index.html b/files/en-us/web/api/cssstyledeclaration/item/index.html index 08cd32c8bbbd797..06f9c2e17efd473 100644 --- a/files/en-us/web/api/cssstyledeclaration/item/index.html +++ b/files/en-us/web/api/cssstyledeclaration/item/index.html @@ -64,6 +64,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleDeclaration.item")}}

    diff --git a/files/en-us/web/api/cssstyledeclaration/length/index.html b/files/en-us/web/api/cssstyledeclaration/length/index.html index bd3e14f879a2f6a..62551a37e9057b1 100644 --- a/files/en-us/web/api/cssstyledeclaration/length/index.html +++ b/files/en-us/web/api/cssstyledeclaration/length/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleDeclaration.length")}}

    diff --git a/files/en-us/web/api/cssstyledeclaration/parentrule/index.html b/files/en-us/web/api/cssstyledeclaration/parentrule/index.html index 03db1cc3249f1f6..fdc411a93fb1f9b 100644 --- a/files/en-us/web/api/cssstyledeclaration/parentrule/index.html +++ b/files/en-us/web/api/cssstyledeclaration/parentrule/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleDeclaration.parentRule")}}

    diff --git a/files/en-us/web/api/cssstyledeclaration/removeproperty/index.html b/files/en-us/web/api/cssstyledeclaration/removeproperty/index.html index 82647204a45e9cf..cfce574c91f48c0 100644 --- a/files/en-us/web/api/cssstyledeclaration/removeproperty/index.html +++ b/files/en-us/web/api/cssstyledeclaration/removeproperty/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleDeclaration.removeProperty")}}

    diff --git a/files/en-us/web/api/cssstyledeclaration/setproperty/index.html b/files/en-us/web/api/cssstyledeclaration/setproperty/index.html index 9114d952ca34f33..8da5b1347c59193 100644 --- a/files/en-us/web/api/cssstyledeclaration/setproperty/index.html +++ b/files/en-us/web/api/cssstyledeclaration/setproperty/index.html @@ -191,6 +191,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleDeclaration.setProperty")}}

    diff --git a/files/en-us/web/api/cssstylerule/index.html b/files/en-us/web/api/cssstylerule/index.html index 4e931928a4a3f72..57ee71079043f3a 100644 --- a/files/en-us/web/api/cssstylerule/index.html +++ b/files/en-us/web/api/cssstylerule/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleRule")}}

    diff --git a/files/en-us/web/api/cssstylerule/selectortext/index.html b/files/en-us/web/api/cssstylerule/selectortext/index.html index b825101954f4a5c..5afe52072ecccab 100644 --- a/files/en-us/web/api/cssstylerule/selectortext/index.html +++ b/files/en-us/web/api/cssstylerule/selectortext/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.CSSStyleRule.selectorText")}}

    diff --git a/files/en-us/web/api/cssstylerule/style/index.html b/files/en-us/web/api/cssstylerule/style/index.html index 745e2707fe938a1..83fca29a2958187 100644 --- a/files/en-us/web/api/cssstylerule/style/index.html +++ b/files/en-us/web/api/cssstylerule/style/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleRule.style")}}

    diff --git a/files/en-us/web/api/cssstylerule/stylemap/index.html b/files/en-us/web/api/cssstylerule/stylemap/index.html index c12b99f0ea49ce6..1597d09bfe3f9e1 100644 --- a/files/en-us/web/api/cssstylerule/stylemap/index.html +++ b/files/en-us/web/api/cssstylerule/stylemap/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleRule.styleMap")}}

    diff --git a/files/en-us/web/api/cssstylesheet/addrule/index.html b/files/en-us/web/api/cssstylesheet/addrule/index.html index 3357282cf87346a..eccd2749c2d8bce 100644 --- a/files/en-us/web/api/cssstylesheet/addrule/index.html +++ b/files/en-us/web/api/cssstylesheet/addrule/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleSheet.addRule")}}

    See also

    diff --git a/files/en-us/web/api/cssstylesheet/cssrules/index.html b/files/en-us/web/api/cssstylesheet/cssrules/index.html index cc08c64554d7d6f..725e60fa827a454 100644 --- a/files/en-us/web/api/cssstylesheet/cssrules/index.html +++ b/files/en-us/web/api/cssstylesheet/cssrules/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleSheet.cssRules")}}

    See also

    diff --git a/files/en-us/web/api/cssstylesheet/deleterule/index.html b/files/en-us/web/api/cssstylesheet/deleterule/index.html index 4b51b7125f00e62..0fa204cd378dde4 100644 --- a/files/en-us/web/api/cssstylesheet/deleterule/index.html +++ b/files/en-us/web/api/cssstylesheet/deleterule/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleSheet.deleteRule")}}

    See also

    diff --git a/files/en-us/web/api/cssstylesheet/index.html b/files/en-us/web/api/cssstylesheet/index.html index b77c67e025cb969..4c0cf4531cf5ede 100644 --- a/files/en-us/web/api/cssstylesheet/index.html +++ b/files/en-us/web/api/cssstylesheet/index.html @@ -170,8 +170,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleSheet")}}

    See also

    diff --git a/files/en-us/web/api/cssstylesheet/insertrule/index.html b/files/en-us/web/api/cssstylesheet/insertrule/index.html index c9da928b0779330..c8835ee99283833 100644 --- a/files/en-us/web/api/cssstylesheet/insertrule/index.html +++ b/files/en-us/web/api/cssstylesheet/insertrule/index.html @@ -181,8 +181,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleSheet.insertRule")}}

    Legacy browser support

    diff --git a/files/en-us/web/api/cssstylesheet/ownerrule/index.html b/files/en-us/web/api/cssstylesheet/ownerrule/index.html index 28fa254b1791d7a..82148dfd585ca9e 100644 --- a/files/en-us/web/api/cssstylesheet/ownerrule/index.html +++ b/files/en-us/web/api/cssstylesheet/ownerrule/index.html @@ -71,8 +71,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleSheet.ownerRule")}}

    See also

    diff --git a/files/en-us/web/api/cssstylesheet/removerule/index.html b/files/en-us/web/api/cssstylesheet/removerule/index.html index 607c28581976415..a3124aa9a9fd107 100644 --- a/files/en-us/web/api/cssstylesheet/removerule/index.html +++ b/files/en-us/web/api/cssstylesheet/removerule/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleSheet.removeRule")}}

    See also

    diff --git a/files/en-us/web/api/cssstylesheet/rules/index.html b/files/en-us/web/api/cssstylesheet/rules/index.html index 988e3c84cf16d8b..cefe97abfa88104 100644 --- a/files/en-us/web/api/cssstylesheet/rules/index.html +++ b/files/en-us/web/api/cssstylesheet/rules/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleSheet.rules")}}

    See also

    diff --git a/files/en-us/web/api/cssstylevalue/index.html b/files/en-us/web/api/cssstylevalue/index.html index 94be4e8e2f028c5..1dde2745bc657bf 100644 --- a/files/en-us/web/api/cssstylevalue/index.html +++ b/files/en-us/web/api/cssstylevalue/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleValue")}}

    diff --git a/files/en-us/web/api/cssstylevalue/parse/index.html b/files/en-us/web/api/cssstylevalue/parse/index.html index 3a1f997b0348f13..53481c351607021 100644 --- a/files/en-us/web/api/cssstylevalue/parse/index.html +++ b/files/en-us/web/api/cssstylevalue/parse/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleValue.parse")}}

    See Also

    diff --git a/files/en-us/web/api/cssstylevalue/parseall/index.html b/files/en-us/web/api/cssstylevalue/parseall/index.html index 2bea27ae243ab74..37db0e4510f7d05 100644 --- a/files/en-us/web/api/cssstylevalue/parseall/index.html +++ b/files/en-us/web/api/cssstylevalue/parseall/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSStyleValue.parseAll")}}

    See Also

    diff --git a/files/en-us/web/api/csssupportsrule/index.html b/files/en-us/web/api/csssupportsrule/index.html index e7f01359a8e04cf..9b2670a879a777a 100644 --- a/files/en-us/web/api/csssupportsrule/index.html +++ b/files/en-us/web/api/csssupportsrule/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSSupportsRule")}}

    See also

    diff --git a/files/en-us/web/api/csstransformcomponent/index.html b/files/en-us/web/api/csstransformcomponent/index.html index 2fc59bc41f79c38..bb7999fa34f6a26 100644 --- a/files/en-us/web/api/csstransformcomponent/index.html +++ b/files/en-us/web/api/csstransformcomponent/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformComponent")}}

    diff --git a/files/en-us/web/api/csstransformcomponent/is2d/index.html b/files/en-us/web/api/csstransformcomponent/is2d/index.html index d8bb129aa2b7d9a..9304493f993bed7 100644 --- a/files/en-us/web/api/csstransformcomponent/is2d/index.html +++ b/files/en-us/web/api/csstransformcomponent/is2d/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformComponent.is2D")}}

    diff --git a/files/en-us/web/api/csstransformcomponent/tomatrix/index.html b/files/en-us/web/api/csstransformcomponent/tomatrix/index.html index 983cd6579b97b71..4b447c50b530e11 100644 --- a/files/en-us/web/api/csstransformcomponent/tomatrix/index.html +++ b/files/en-us/web/api/csstransformcomponent/tomatrix/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformComponent.toMatrix")}}

    diff --git a/files/en-us/web/api/csstransformcomponent/tostring/index.html b/files/en-us/web/api/csstransformcomponent/tostring/index.html index aa580fd297907e2..79a08949f2208c7 100644 --- a/files/en-us/web/api/csstransformcomponent/tostring/index.html +++ b/files/en-us/web/api/csstransformcomponent/tostring/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformComponent.toString")}}

    diff --git a/files/en-us/web/api/csstransformvalue/csstransformvalue/index.html b/files/en-us/web/api/csstransformvalue/csstransformvalue/index.html index 5b58b52d745b348..0f32ad4dd5421e4 100644 --- a/files/en-us/web/api/csstransformvalue/csstransformvalue/index.html +++ b/files/en-us/web/api/csstransformvalue/csstransformvalue/index.html @@ -60,6 +60,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformValue.CSSTransformValue")}}

    diff --git a/files/en-us/web/api/csstransformvalue/entries/index.html b/files/en-us/web/api/csstransformvalue/entries/index.html index 26b9b52f97fda38..49c6b4e23591095 100644 --- a/files/en-us/web/api/csstransformvalue/entries/index.html +++ b/files/en-us/web/api/csstransformvalue/entries/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformValue.entries")}}

    diff --git a/files/en-us/web/api/csstransformvalue/foreach/index.html b/files/en-us/web/api/csstransformvalue/foreach/index.html index 61c13803733ba2f..73d6bb1436d6165 100644 --- a/files/en-us/web/api/csstransformvalue/foreach/index.html +++ b/files/en-us/web/api/csstransformvalue/foreach/index.html @@ -68,6 +68,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformValue.forEach")}}

    diff --git a/files/en-us/web/api/csstransformvalue/index.html b/files/en-us/web/api/csstransformvalue/index.html index 7cddc0988851a17..053ff9196d30e69 100644 --- a/files/en-us/web/api/csstransformvalue/index.html +++ b/files/en-us/web/api/csstransformvalue/index.html @@ -88,6 +88,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformValue")}}

    diff --git a/files/en-us/web/api/csstransformvalue/is2d/index.html b/files/en-us/web/api/csstransformvalue/is2d/index.html index c94cb027a5edeb5..7085bac0107ad7e 100644 --- a/files/en-us/web/api/csstransformvalue/is2d/index.html +++ b/files/en-us/web/api/csstransformvalue/is2d/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformValue.is2D")}}

    diff --git a/files/en-us/web/api/csstransformvalue/keys/index.html b/files/en-us/web/api/csstransformvalue/keys/index.html index d02d7105315445a..42bdb5925d90e74 100644 --- a/files/en-us/web/api/csstransformvalue/keys/index.html +++ b/files/en-us/web/api/csstransformvalue/keys/index.html @@ -50,6 +50,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformValue.keys")}}

    diff --git a/files/en-us/web/api/csstransformvalue/length/index.html b/files/en-us/web/api/csstransformvalue/length/index.html index 6b7b23f6f64df6c..b55d2143c61cfa6 100644 --- a/files/en-us/web/api/csstransformvalue/length/index.html +++ b/files/en-us/web/api/csstransformvalue/length/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformValue.length")}}

    diff --git a/files/en-us/web/api/csstransformvalue/tomatrix/index.html b/files/en-us/web/api/csstransformvalue/tomatrix/index.html index 27c4a9c9df6b238..ec8e5f1d7eb6964 100644 --- a/files/en-us/web/api/csstransformvalue/tomatrix/index.html +++ b/files/en-us/web/api/csstransformvalue/tomatrix/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformValue.toMatrix")}}

    diff --git a/files/en-us/web/api/csstransformvalue/values/index.html b/files/en-us/web/api/csstransformvalue/values/index.html index db80fd29763823a..60585af20642249 100644 --- a/files/en-us/web/api/csstransformvalue/values/index.html +++ b/files/en-us/web/api/csstransformvalue/values/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTransformValue.values")}}

    diff --git a/files/en-us/web/api/csstranslate/csstranslate/index.html b/files/en-us/web/api/csstranslate/csstranslate/index.html index 45d2b0dc7edbbb8..9e58ccdbb1df9af 100644 --- a/files/en-us/web/api/csstranslate/csstranslate/index.html +++ b/files/en-us/web/api/csstranslate/csstranslate/index.html @@ -64,6 +64,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTranslate.CSSTranslate")}}

    diff --git a/files/en-us/web/api/csstranslate/index.html b/files/en-us/web/api/csstranslate/index.html index a94e4eb03c0bb21..e35ab69b801efda 100644 --- a/files/en-us/web/api/csstranslate/index.html +++ b/files/en-us/web/api/csstranslate/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTranslate")}}

    diff --git a/files/en-us/web/api/csstranslate/x/index.html b/files/en-us/web/api/csstranslate/x/index.html index 0e8ae81d653ca9b..bb1a84c14ccc183 100644 --- a/files/en-us/web/api/csstranslate/x/index.html +++ b/files/en-us/web/api/csstranslate/x/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTranslate.x")}}

    diff --git a/files/en-us/web/api/csstranslate/y/index.html b/files/en-us/web/api/csstranslate/y/index.html index 9d348580499cf1e..a367d615bb65943 100644 --- a/files/en-us/web/api/csstranslate/y/index.html +++ b/files/en-us/web/api/csstranslate/y/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTranslate.y")}}

    diff --git a/files/en-us/web/api/csstranslate/z/index.html b/files/en-us/web/api/csstranslate/z/index.html index 752959df433a01e..c09c2263e7f08f3 100644 --- a/files/en-us/web/api/csstranslate/z/index.html +++ b/files/en-us/web/api/csstranslate/z/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSTranslate.z")}}

    diff --git a/files/en-us/web/api/cssunitvalue/cssunitvalue/index.html b/files/en-us/web/api/cssunitvalue/cssunitvalue/index.html index c9c3ffccc7d2b44..319be89a9639caf 100644 --- a/files/en-us/web/api/cssunitvalue/cssunitvalue/index.html +++ b/files/en-us/web/api/cssunitvalue/cssunitvalue/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSUnitValue.CSSUnitValue")}}

    See Also

    diff --git a/files/en-us/web/api/cssunitvalue/index.html b/files/en-us/web/api/cssunitvalue/index.html index b3e179f38f170fb..d4e8163766afbd7 100644 --- a/files/en-us/web/api/cssunitvalue/index.html +++ b/files/en-us/web/api/cssunitvalue/index.html @@ -65,6 +65,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSUnitValue")}}

    diff --git a/files/en-us/web/api/cssunitvalue/unit/index.html b/files/en-us/web/api/cssunitvalue/unit/index.html index 9895b64d3b05c0e..0d3ad6758d96837 100644 --- a/files/en-us/web/api/cssunitvalue/unit/index.html +++ b/files/en-us/web/api/cssunitvalue/unit/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSUnitValue.unit")}}

    See Also

    diff --git a/files/en-us/web/api/cssunitvalue/value/index.html b/files/en-us/web/api/cssunitvalue/value/index.html index b0244a172d14004..5025ad6b53ed211 100644 --- a/files/en-us/web/api/cssunitvalue/value/index.html +++ b/files/en-us/web/api/cssunitvalue/value/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSUnitValue.value")}}

    See Also

    diff --git a/files/en-us/web/api/cssunparsedvalue/cssunparsedvalue/index.html b/files/en-us/web/api/cssunparsedvalue/cssunparsedvalue/index.html index e185021fe8719d4..59662c48380cd5e 100644 --- a/files/en-us/web/api/cssunparsedvalue/cssunparsedvalue/index.html +++ b/files/en-us/web/api/cssunparsedvalue/cssunparsedvalue/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSUnparsedValue.CSSUnparsedValue")}}

    See Also

    diff --git a/files/en-us/web/api/cssunparsedvalue/entries/index.html b/files/en-us/web/api/cssunparsedvalue/entries/index.html index 15013037fb62c9b..e40626b7c94e362 100644 --- a/files/en-us/web/api/cssunparsedvalue/entries/index.html +++ b/files/en-us/web/api/cssunparsedvalue/entries/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSUnparsedValue.entries")}}

    See Also

    diff --git a/files/en-us/web/api/cssunparsedvalue/foreach/index.html b/files/en-us/web/api/cssunparsedvalue/foreach/index.html index 093069e4aee2f50..8ddd600349fcb8b 100644 --- a/files/en-us/web/api/cssunparsedvalue/foreach/index.html +++ b/files/en-us/web/api/cssunparsedvalue/foreach/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSUnparsedValue.forEach")}}

    See Also

    diff --git a/files/en-us/web/api/cssunparsedvalue/index.html b/files/en-us/web/api/cssunparsedvalue/index.html index 1515a1642e3fd75..70d47c85c29d2a1 100644 --- a/files/en-us/web/api/cssunparsedvalue/index.html +++ b/files/en-us/web/api/cssunparsedvalue/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSUnparsedValue")}}

    See Also

    diff --git a/files/en-us/web/api/cssunparsedvalue/keys/index.html b/files/en-us/web/api/cssunparsedvalue/keys/index.html index 559713b97009289..ff3e342fb7c32f8 100644 --- a/files/en-us/web/api/cssunparsedvalue/keys/index.html +++ b/files/en-us/web/api/cssunparsedvalue/keys/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSUnparsedValue.keys")}}

    See Also

    diff --git a/files/en-us/web/api/cssunparsedvalue/length/index.html b/files/en-us/web/api/cssunparsedvalue/length/index.html index 819aa49c3f272d3..a918d79594c6262 100644 --- a/files/en-us/web/api/cssunparsedvalue/length/index.html +++ b/files/en-us/web/api/cssunparsedvalue/length/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSUnparsedValue.length")}}

    See Also

    diff --git a/files/en-us/web/api/cssunparsedvalue/values/index.html b/files/en-us/web/api/cssunparsedvalue/values/index.html index 9b127d2572b0bcd..676e949d9d112cf 100644 --- a/files/en-us/web/api/cssunparsedvalue/values/index.html +++ b/files/en-us/web/api/cssunparsedvalue/values/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSUnparsedValue.values")}}

    See Also

    diff --git a/files/en-us/web/api/cssvalue/csstext/index.html b/files/en-us/web/api/cssvalue/csstext/index.html index 1febb60ad93f918..d950c0f55a6cfff 100644 --- a/files/en-us/web/api/cssvalue/csstext/index.html +++ b/files/en-us/web/api/cssvalue/csstext/index.html @@ -49,7 +49,6 @@

    Browser compatibility

    -

    {{Compat("api.CSSValue.cssText")}}

    diff --git a/files/en-us/web/api/cssvalue/cssvaluetype/index.html b/files/en-us/web/api/cssvalue/cssvaluetype/index.html index 627678dd2f3f5fc..55ff8f072da06d6 100644 --- a/files/en-us/web/api/cssvalue/cssvaluetype/index.html +++ b/files/en-us/web/api/cssvalue/cssvaluetype/index.html @@ -75,6 +75,5 @@

    Browser compatibility

    -

    {{Compat("api.CSSValue.cssValueType")}}

    diff --git a/files/en-us/web/api/cssvalue/index.html b/files/en-us/web/api/cssvalue/index.html index a1d00be08eb8b81..ffb0317380729b3 100644 --- a/files/en-us/web/api/cssvalue/index.html +++ b/files/en-us/web/api/cssvalue/index.html @@ -69,7 +69,6 @@

    Browser compatibility

    -

    {{Compat("api.CSSValue")}}

    diff --git a/files/en-us/web/api/cssvaluelist/index.html b/files/en-us/web/api/cssvaluelist/index.html index 8567202e9abcdd8..d4a2cc8697f3c1b 100644 --- a/files/en-us/web/api/cssvaluelist/index.html +++ b/files/en-us/web/api/cssvaluelist/index.html @@ -56,7 +56,6 @@

    Browser compatibility

    -

    {{Compat("api.CSSValueList")}}

    diff --git a/files/en-us/web/api/cssvaluelist/item/index.html b/files/en-us/web/api/cssvaluelist/item/index.html index 91afcb1d0f3ad71..4174a143d594584 100644 --- a/files/en-us/web/api/cssvaluelist/item/index.html +++ b/files/en-us/web/api/cssvaluelist/item/index.html @@ -50,6 +50,5 @@

    Browser compatibility

    -

    {{Compat("api.CSSValueList.item")}}

    diff --git a/files/en-us/web/api/cssvaluelist/length/index.html b/files/en-us/web/api/cssvaluelist/length/index.html index 3f05a6df66a057d..f958c170b7d8dfa 100644 --- a/files/en-us/web/api/cssvaluelist/length/index.html +++ b/files/en-us/web/api/cssvaluelist/length/index.html @@ -44,6 +44,5 @@

    Browser compatibility

    -

    {{Compat("api.CSSValueList.length")}}

    diff --git a/files/en-us/web/api/cssvariablereferencevalue/cssvariablereferencevalue/index.html b/files/en-us/web/api/cssvariablereferencevalue/cssvariablereferencevalue/index.html index 7a67291e462e396..56af8cb2d4a5feb 100644 --- a/files/en-us/web/api/cssvariablereferencevalue/cssvariablereferencevalue/index.html +++ b/files/en-us/web/api/cssvariablereferencevalue/cssvariablereferencevalue/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSVariableReferenceValue.CSSVariableReferenceValue")}}

    diff --git a/files/en-us/web/api/cssvariablereferencevalue/fallback/index.html b/files/en-us/web/api/cssvariablereferencevalue/fallback/index.html index f7fbe4cb99da0b0..a534c8bf14a7539 100644 --- a/files/en-us/web/api/cssvariablereferencevalue/fallback/index.html +++ b/files/en-us/web/api/cssvariablereferencevalue/fallback/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSVariableReferenceValue.fallback")}}

    diff --git a/files/en-us/web/api/cssvariablereferencevalue/index.html b/files/en-us/web/api/cssvariablereferencevalue/index.html index 7581646d5762825..b1427f118b82f07 100644 --- a/files/en-us/web/api/cssvariablereferencevalue/index.html +++ b/files/en-us/web/api/cssvariablereferencevalue/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSVariableReferenceValue")}}

    diff --git a/files/en-us/web/api/cssvariablereferencevalue/variable/index.html b/files/en-us/web/api/cssvariablereferencevalue/variable/index.html index bcf4ba4d6fce65b..3e9063ddee79a04 100644 --- a/files/en-us/web/api/cssvariablereferencevalue/variable/index.html +++ b/files/en-us/web/api/cssvariablereferencevalue/variable/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CSSVariableReferenceValue.variable")}}

    diff --git a/files/en-us/web/api/customelementregistry/define/index.html b/files/en-us/web/api/customelementregistry/define/index.html index 0682fbe3a60a593..0522f683e29e2d0 100644 --- a/files/en-us/web/api/customelementregistry/define/index.html +++ b/files/en-us/web/api/customelementregistry/define/index.html @@ -195,7 +195,6 @@

    Customized built-in element

    // Append it to the shadow root shadow.appendChild(text); - // Update count when element content changes setInterval(function() { var count = 'Words: ' + countWords(wcParent); @@ -231,6 +230,5 @@

    Browser compatibility

    -

    {{Compat("api.CustomElementRegistry.define")}}

    diff --git a/files/en-us/web/api/customelementregistry/get/index.html b/files/en-us/web/api/customelementregistry/get/index.html index ac953f251e7d9c4..db32c43df0a88e0 100644 --- a/files/en-us/web/api/customelementregistry/get/index.html +++ b/files/en-us/web/api/customelementregistry/get/index.html @@ -68,6 +68,5 @@

    Browser compatibility

    -

    {{Compat("api.CustomElementRegistry.get")}}

    diff --git a/files/en-us/web/api/customelementregistry/index.html b/files/en-us/web/api/customelementregistry/index.html index 672cd902367be45..13bfd775d0a5b50 100644 --- a/files/en-us/web/api/customelementregistry/index.html +++ b/files/en-us/web/api/customelementregistry/index.html @@ -57,7 +57,6 @@

    Examples

    // Append it to the shadow root shadow.appendChild(text); - // Update count when element content changes setInterval(function() { var count = 'Words: ' + countWords(wcParent); @@ -93,6 +92,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CustomElementRegistry")}}

    diff --git a/files/en-us/web/api/customelementregistry/upgrade/index.html b/files/en-us/web/api/customelementregistry/upgrade/index.html index 9a9d99e8482f164..dab4ef1c071ccf4 100644 --- a/files/en-us/web/api/customelementregistry/upgrade/index.html +++ b/files/en-us/web/api/customelementregistry/upgrade/index.html @@ -66,6 +66,5 @@

    Browser compatibility

    -

    {{Compat("api.CustomElementRegistry.upgrade")}}

    diff --git a/files/en-us/web/api/customelementregistry/whendefined/index.html b/files/en-us/web/api/customelementregistry/whendefined/index.html index a95e29798d06a9f..e0c1da489acd80d 100644 --- a/files/en-us/web/api/customelementregistry/whendefined/index.html +++ b/files/en-us/web/api/customelementregistry/whendefined/index.html @@ -29,7 +29,6 @@

    Return value

    A {{jsxref("Promise")}} that will be fulfilled with the custom element's constructor when a custom element becomes defined with the given name. (If such a custom element is already defined, the returned promise will be immediately fulfilled.)

    -

    Exceptions

    @@ -99,7 +98,6 @@

    Browser compatibility

    -

    {{Compat("api.CustomElementRegistry.whenDefined")}}

    diff --git a/files/en-us/web/api/customevent/customevent/index.html b/files/en-us/web/api/customevent/customevent/index.html index e7ad286cbac943d..520dc3b4ded8132 100644 --- a/files/en-us/web/api/customevent/customevent/index.html +++ b/files/en-us/web/api/customevent/customevent/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CustomEvent.CustomEvent")}}

    Polyfill

    diff --git a/files/en-us/web/api/customevent/detail/index.html b/files/en-us/web/api/customevent/detail/index.html index 9996313f2866a4a..a143783639f8ffb 100644 --- a/files/en-us/web/api/customevent/detail/index.html +++ b/files/en-us/web/api/customevent/detail/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CustomEvent.detail")}}

    See also

    diff --git a/files/en-us/web/api/customevent/index.html b/files/en-us/web/api/customevent/index.html index c88d2a548594d62..c5260d44ed46031 100644 --- a/files/en-us/web/api/customevent/index.html +++ b/files/en-us/web/api/customevent/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CustomEvent")}}

    Firing from privileged code to non-privileged code

    diff --git a/files/en-us/web/api/customevent/initcustomevent/index.html b/files/en-us/web/api/customevent/initcustomevent/index.html index 1f992c2df28f702..d89715878608ab5 100644 --- a/files/en-us/web/api/customevent/initcustomevent/index.html +++ b/files/en-us/web/api/customevent/initcustomevent/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.CustomEvent.initCustomEvent")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/addelement/index.html b/files/en-us/web/api/datatransfer/addelement/index.html index 5673e727439253b..cd54669b933ca5c 100644 --- a/files/en-us/web/api/datatransfer/addelement/index.html +++ b/files/en-us/web/api/datatransfer/addelement/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.addElement")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/cleardata/index.html b/files/en-us/web/api/datatransfer/cleardata/index.html index 2bef55402a8902c..78ad13a6f5d4a5e 100644 --- a/files/en-us/web/api/datatransfer/cleardata/index.html +++ b/files/en-us/web/api/datatransfer/cleardata/index.html @@ -179,8 +179,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.clearData")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/datatransfer/index.html b/files/en-us/web/api/datatransfer/datatransfer/index.html index 9b45b203f60d340..77acf5a3fe09740 100644 --- a/files/en-us/web/api/datatransfer/datatransfer/index.html +++ b/files/en-us/web/api/datatransfer/datatransfer/index.html @@ -42,6 +42,5 @@

    Browser compatibility

    -

    {{Compat("api.DataTransfer.DataTransfer")}}

    diff --git a/files/en-us/web/api/datatransfer/dropeffect/index.html b/files/en-us/web/api/datatransfer/dropeffect/index.html index 1b8146930b73391..b9c2546aeee20fd 100644 --- a/files/en-us/web/api/datatransfer/dropeffect/index.html +++ b/files/en-us/web/api/datatransfer/dropeffect/index.html @@ -16,7 +16,6 @@

    For the {{event("dragenter")}} and {{event("dragover")}} events, dropEffect will be initialized based on what action the user is requesting. How this is determined is platform specific, but typically the user can press modifier keys such as the alt key to adjust the desired action. Within event handlers for {{event("dragenter")}} and {{event("dragover")}} events, dropEffect should be modified if a different action is desired than the action that the user is requesting.

    -

    For the {{event("drop")}} and {{event("dragend")}} events, dropEffect will be set to the action that was desired, which will be the value dropEffect had after the last {{event("dragenter")}} or {{event("dragover")}} event. In a {{event("dragend")}} event, for instance, if the desired dropEffect is "move", then the data being dragged should be removed from the source.

    Syntax

    @@ -128,8 +127,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.dropEffect")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/effectallowed/index.html b/files/en-us/web/api/datatransfer/effectallowed/index.html index 45c2002f4282274..9a70ff9e33b14a4 100644 --- a/files/en-us/web/api/datatransfer/effectallowed/index.html +++ b/files/en-us/web/api/datatransfer/effectallowed/index.html @@ -130,8 +130,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.effectAllowed")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/files/index.html b/files/en-us/web/api/datatransfer/files/index.html index d19ae9dae8b441e..76afa06bc7a891f 100644 --- a/files/en-us/web/api/datatransfer/files/index.html +++ b/files/en-us/web/api/datatransfer/files/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.files")}}

    diff --git a/files/en-us/web/api/datatransfer/getdata/index.html b/files/en-us/web/api/datatransfer/getdata/index.html index 2129fc8c7609449..bb559b33f26efd3 100644 --- a/files/en-us/web/api/datatransfer/getdata/index.html +++ b/files/en-us/web/api/datatransfer/getdata/index.html @@ -110,8 +110,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.getData")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/index.html b/files/en-us/web/api/datatransfer/index.html index fd2e5972bdf3018..d2b54051a8ffba9 100644 --- a/files/en-us/web/api/datatransfer/index.html +++ b/files/en-us/web/api/datatransfer/index.html @@ -132,8 +132,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/items/index.html b/files/en-us/web/api/datatransfer/items/index.html index c3e65a58df72009..622bed94534e997 100644 --- a/files/en-us/web/api/datatransfer/items/index.html +++ b/files/en-us/web/api/datatransfer/items/index.html @@ -109,8 +109,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.items")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/mozcleardataat/index.html b/files/en-us/web/api/datatransfer/mozcleardataat/index.html index 33e11a9de5a2ad9..890430392601212 100644 --- a/files/en-us/web/api/datatransfer/mozcleardataat/index.html +++ b/files/en-us/web/api/datatransfer/mozcleardataat/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.mozClearDataAt")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/mozcursor/index.html b/files/en-us/web/api/datatransfer/mozcursor/index.html index 4b8294b90ac3f94..9c3dbe04c1c3671 100644 --- a/files/en-us/web/api/datatransfer/mozcursor/index.html +++ b/files/en-us/web/api/datatransfer/mozcursor/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.mozCursor")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/mozgetdataat/index.html b/files/en-us/web/api/datatransfer/mozgetdataat/index.html index bbe11cb7939536b..2d01cd50ea61619 100644 --- a/files/en-us/web/api/datatransfer/mozgetdataat/index.html +++ b/files/en-us/web/api/datatransfer/mozgetdataat/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.mozGetDataAt")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/mozitemcount/index.html b/files/en-us/web/api/datatransfer/mozitemcount/index.html index 86dfa0c27e7bfa6..26892eb4b5b2508 100644 --- a/files/en-us/web/api/datatransfer/mozitemcount/index.html +++ b/files/en-us/web/api/datatransfer/mozitemcount/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.mozItemCount")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/mozsetdataat/index.html b/files/en-us/web/api/datatransfer/mozsetdataat/index.html index 9cca42dcd142f5a..32b39a7fdf9d790 100644 --- a/files/en-us/web/api/datatransfer/mozsetdataat/index.html +++ b/files/en-us/web/api/datatransfer/mozsetdataat/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.mozSetDataAt")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/mozsourcenode/index.html b/files/en-us/web/api/datatransfer/mozsourcenode/index.html index 0886076327b0c5a..9eed98847bdd1af 100644 --- a/files/en-us/web/api/datatransfer/mozsourcenode/index.html +++ b/files/en-us/web/api/datatransfer/mozsourcenode/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.mozSourceNode")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/moztypesat/index.html b/files/en-us/web/api/datatransfer/moztypesat/index.html index 2a5427cb591fcd9..6376d726bd373c5 100644 --- a/files/en-us/web/api/datatransfer/moztypesat/index.html +++ b/files/en-us/web/api/datatransfer/moztypesat/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.mozTypesAt")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/mozusercancelled/index.html b/files/en-us/web/api/datatransfer/mozusercancelled/index.html index aa21d61b33cbd71..242fa251f731ac9 100644 --- a/files/en-us/web/api/datatransfer/mozusercancelled/index.html +++ b/files/en-us/web/api/datatransfer/mozusercancelled/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.mozUserCancelled")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/setdata/index.html b/files/en-us/web/api/datatransfer/setdata/index.html index 9c899920b6dcb53..532f8f6c6ec766b 100644 --- a/files/en-us/web/api/datatransfer/setdata/index.html +++ b/files/en-us/web/api/datatransfer/setdata/index.html @@ -114,8 +114,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.setData")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/setdragimage/index.html b/files/en-us/web/api/datatransfer/setdragimage/index.html index f07964d8bbaad78..b28873a7a9c25d2 100644 --- a/files/en-us/web/api/datatransfer/setdragimage/index.html +++ b/files/en-us/web/api/datatransfer/setdragimage/index.html @@ -127,8 +127,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.setDragImage")}}

    See also

    diff --git a/files/en-us/web/api/datatransfer/types/index.html b/files/en-us/web/api/datatransfer/types/index.html index 51cd963fb09d9ac..4b67e1b68851a59 100644 --- a/files/en-us/web/api/datatransfer/types/index.html +++ b/files/en-us/web/api/datatransfer/types/index.html @@ -111,8 +111,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransfer.types")}}

    See also

    diff --git a/files/en-us/web/api/datatransferitem/getasfile/index.html b/files/en-us/web/api/datatransferitem/getasfile/index.html index d071579e7e30af4..9349f02be8a9749 100644 --- a/files/en-us/web/api/datatransferitem/getasfile/index.html +++ b/files/en-us/web/api/datatransferitem/getasfile/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransferItem.getAsFile")}}

    See also

    diff --git a/files/en-us/web/api/datatransferitem/getasfilesystemhandle/index.html b/files/en-us/web/api/datatransferitem/getasfilesystemhandle/index.html index ea1012949fbfc4b..712ed3340dd2833 100644 --- a/files/en-us/web/api/datatransferitem/getasfilesystemhandle/index.html +++ b/files/en-us/web/api/datatransferitem/getasfilesystemhandle/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransferItem.getAsFileSystemHandle")}}

    See also

    diff --git a/files/en-us/web/api/datatransferitem/getasstring/index.html b/files/en-us/web/api/datatransferitem/getasstring/index.html index 4db1224b6f719c4..a2ae6e3023bb406 100644 --- a/files/en-us/web/api/datatransferitem/getasstring/index.html +++ b/files/en-us/web/api/datatransferitem/getasstring/index.html @@ -99,8 +99,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransferItem.getAsString")}}

    See also

    diff --git a/files/en-us/web/api/datatransferitem/index.html b/files/en-us/web/api/datatransferitem/index.html index c0642e978f3b633..199b1765157e132 100644 --- a/files/en-us/web/api/datatransferitem/index.html +++ b/files/en-us/web/api/datatransferitem/index.html @@ -71,6 +71,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransferItem")}}

    diff --git a/files/en-us/web/api/datatransferitem/kind/index.html b/files/en-us/web/api/datatransferitem/kind/index.html index e49cf45d50df71b..e09a5b69c004ce4 100644 --- a/files/en-us/web/api/datatransferitem/kind/index.html +++ b/files/en-us/web/api/datatransferitem/kind/index.html @@ -84,8 +84,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransferItem.kind")}}

    See also

    diff --git a/files/en-us/web/api/datatransferitem/type/index.html b/files/en-us/web/api/datatransferitem/type/index.html index 71d91a793471f39..b0156ef0acd5330 100644 --- a/files/en-us/web/api/datatransferitem/type/index.html +++ b/files/en-us/web/api/datatransferitem/type/index.html @@ -83,8 +83,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransferItem.type")}}

    See also

    diff --git a/files/en-us/web/api/datatransferitem/webkitgetasentry/index.html b/files/en-us/web/api/datatransferitem/webkitgetasentry/index.html index 06a5e6f8a3050d0..c05c3907d9a4491 100644 --- a/files/en-us/web/api/datatransferitem/webkitgetasentry/index.html +++ b/files/en-us/web/api/datatransferitem/webkitgetasentry/index.html @@ -177,8 +177,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransferItem.webkitGetAsEntry")}}

    See also

    diff --git a/files/en-us/web/api/datatransferitemlist/add/index.html b/files/en-us/web/api/datatransferitemlist/add/index.html index 949a75559fa66ce..5412f0f5ef85705 100644 --- a/files/en-us/web/api/datatransferitemlist/add/index.html +++ b/files/en-us/web/api/datatransferitemlist/add/index.html @@ -165,6 +165,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransferItemList.add")}}

    diff --git a/files/en-us/web/api/datatransferitemlist/clear/index.html b/files/en-us/web/api/datatransferitemlist/clear/index.html index 877628f18f48c10..8b47592ec57c751 100644 --- a/files/en-us/web/api/datatransferitemlist/clear/index.html +++ b/files/en-us/web/api/datatransferitemlist/clear/index.html @@ -143,8 +143,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransferItemList.clear")}}

    {{APIRef("HTML Drag and Drop API")}}
    diff --git a/files/en-us/web/api/datatransferitemlist/datatransferitem/index.html b/files/en-us/web/api/datatransferitemlist/datatransferitem/index.html index bac04891ae81781..72cd195819b8432 100644 --- a/files/en-us/web/api/datatransferitemlist/datatransferitem/index.html +++ b/files/en-us/web/api/datatransferitemlist/datatransferitem/index.html @@ -140,6 +140,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransferItemList.DataTransferItem")}}

    diff --git a/files/en-us/web/api/datatransferitemlist/index.html b/files/en-us/web/api/datatransferitemlist/index.html index 697dff79d596fe7..6962e8c03699c25 100644 --- a/files/en-us/web/api/datatransferitemlist/index.html +++ b/files/en-us/web/api/datatransferitemlist/index.html @@ -68,8 +68,6 @@

    Browser compatibility

     

    - -

    {{Compat("api.DataTransferItemList")}}

     

    diff --git a/files/en-us/web/api/datatransferitemlist/length/index.html b/files/en-us/web/api/datatransferitemlist/length/index.html index 5af9ef54a6cb225..b2a29dd81964b45 100644 --- a/files/en-us/web/api/datatransferitemlist/length/index.html +++ b/files/en-us/web/api/datatransferitemlist/length/index.html @@ -142,8 +142,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransferItemList.length")}}

    {{APIRef("HTML Drag and Drop API")}}
    diff --git a/files/en-us/web/api/datatransferitemlist/remove/index.html b/files/en-us/web/api/datatransferitemlist/remove/index.html index b99af01093bf40b..3138f34d838da1d 100644 --- a/files/en-us/web/api/datatransferitemlist/remove/index.html +++ b/files/en-us/web/api/datatransferitemlist/remove/index.html @@ -155,6 +155,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DataTransferItemList.remove")}}

    diff --git a/files/en-us/web/api/dedicatedworkerglobalscope/close/index.html b/files/en-us/web/api/dedicatedworkerglobalscope/close/index.html index 81506d02a15f309..6e0a0629c2dc384 100644 --- a/files/en-us/web/api/dedicatedworkerglobalscope/close/index.html +++ b/files/en-us/web/api/dedicatedworkerglobalscope/close/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DedicatedWorkerGlobalScope.close")}}

    See also

    diff --git a/files/en-us/web/api/dedicatedworkerglobalscope/index.html b/files/en-us/web/api/dedicatedworkerglobalscope/index.html index c5b504c91168ed1..da1e9abd0a06713 100644 --- a/files/en-us/web/api/dedicatedworkerglobalscope/index.html +++ b/files/en-us/web/api/dedicatedworkerglobalscope/index.html @@ -117,7 +117,6 @@

    Browser compatibility

    -

    {{Compat("api.DedicatedWorkerGlobalScope")}}

    diff --git a/files/en-us/web/api/dedicatedworkerglobalscope/message_event/index.html b/files/en-us/web/api/dedicatedworkerglobalscope/message_event/index.html index cbdcb0170dfe029..dc977bd11513f4c 100644 --- a/files/en-us/web/api/dedicatedworkerglobalscope/message_event/index.html +++ b/files/en-us/web/api/dedicatedworkerglobalscope/message_event/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DedicatedWorkerGlobalScope.message_event")}}

    See also

    diff --git a/files/en-us/web/api/dedicatedworkerglobalscope/messageerror_event/index.html b/files/en-us/web/api/dedicatedworkerglobalscope/messageerror_event/index.html index 3f5325f4614e70f..c4c975484dd28fd 100644 --- a/files/en-us/web/api/dedicatedworkerglobalscope/messageerror_event/index.html +++ b/files/en-us/web/api/dedicatedworkerglobalscope/messageerror_event/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DedicatedWorkerGlobalScope.messageerror_event")}}

    See also

    diff --git a/files/en-us/web/api/dedicatedworkerglobalscope/name/index.html b/files/en-us/web/api/dedicatedworkerglobalscope/name/index.html index 0a2dd66fb58d3aa..37b7086935bc840 100644 --- a/files/en-us/web/api/dedicatedworkerglobalscope/name/index.html +++ b/files/en-us/web/api/dedicatedworkerglobalscope/name/index.html @@ -55,7 +55,6 @@

    Browser compatibility

    -

    {{Compat("api.DedicatedWorkerGlobalScope.name")}}

    diff --git a/files/en-us/web/api/dedicatedworkerglobalscope/onmessage/index.html b/files/en-us/web/api/dedicatedworkerglobalscope/onmessage/index.html index 73a4d324f09f8d6..3bbb4bcc433f73c 100644 --- a/files/en-us/web/api/dedicatedworkerglobalscope/onmessage/index.html +++ b/files/en-us/web/api/dedicatedworkerglobalscope/onmessage/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DedicatedWorkerGlobalScope.onmessage")}}

    See also

    diff --git a/files/en-us/web/api/dedicatedworkerglobalscope/onmessageerror/index.html b/files/en-us/web/api/dedicatedworkerglobalscope/onmessageerror/index.html index a0e21df24883deb..bbeab3f39d7684d 100644 --- a/files/en-us/web/api/dedicatedworkerglobalscope/onmessageerror/index.html +++ b/files/en-us/web/api/dedicatedworkerglobalscope/onmessageerror/index.html @@ -40,7 +40,6 @@

    Browser compatibility

    -

    {{Compat("api.DedicatedWorkerGlobalScope.onmessageerror")}}

    diff --git a/files/en-us/web/api/dedicatedworkerglobalscope/postmessage/index.html b/files/en-us/web/api/dedicatedworkerglobalscope/postmessage/index.html index 7874e8c3e010983..32879db6807ccd8 100644 --- a/files/en-us/web/api/dedicatedworkerglobalscope/postmessage/index.html +++ b/files/en-us/web/api/dedicatedworkerglobalscope/postmessage/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DedicatedWorkerGlobalScope.postMessage")}}

    See also

    diff --git a/files/en-us/web/api/delaynode/delaynode/index.html b/files/en-us/web/api/delaynode/delaynode/index.html index 402b1446b54e7f0..2665f2a1f91cc69 100644 --- a/files/en-us/web/api/delaynode/delaynode/index.html +++ b/files/en-us/web/api/delaynode/delaynode/index.html @@ -68,6 +68,5 @@

    Browser Compatibility

    -

    {{Compat("api.DelayNode.DelayNode")}}

    diff --git a/files/en-us/web/api/delaynode/delaytime/index.html b/files/en-us/web/api/delaynode/delaytime/index.html index 5c9be1cb8d262e6..c398d0d971e59c5 100644 --- a/files/en-us/web/api/delaynode/delaytime/index.html +++ b/files/en-us/web/api/delaynode/delaytime/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.DelayNode.delayTime")}}

    diff --git a/files/en-us/web/api/delaynode/index.html b/files/en-us/web/api/delaynode/index.html index f5a5d3ad07598cc..234cf6a58e9101b 100644 --- a/files/en-us/web/api/delaynode/index.html +++ b/files/en-us/web/api/delaynode/index.html @@ -87,7 +87,6 @@

    Browser compatibility

    -

    {{Compat("api.DelayNode")}}

    diff --git a/files/en-us/web/api/deprecationreportbody/index.html b/files/en-us/web/api/deprecationreportbody/index.html index 68b389004dac400..4b0527e0201e4be 100644 --- a/files/en-us/web/api/deprecationreportbody/index.html +++ b/files/en-us/web/api/deprecationreportbody/index.html @@ -98,8 +98,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeprecationReportBody")}}

    See also

    diff --git a/files/en-us/web/api/detecting_device_orientation/index.html b/files/en-us/web/api/detecting_device_orientation/index.html index b47b41c7514aa91..dd2d6eea1f55c40 100644 --- a/files/en-us/web/api/detecting_device_orientation/index.html +++ b/files/en-us/web/api/detecting_device_orientation/index.html @@ -199,8 +199,6 @@

    Browser compatibility

    DeviceMotionEvent

    - -

    {{Compat("api.DeviceMotionEvent")}}

    DeviceOrientationEvent

    diff --git a/files/en-us/web/api/device_memory_api/index.html b/files/en-us/web/api/device_memory_api/index.html index 006eb1a8c33c188..794d7a0707689ff 100644 --- a/files/en-us/web/api/device_memory_api/index.html +++ b/files/en-us/web/api/device_memory_api/index.html @@ -47,8 +47,6 @@

    Browser compatibility

    JavaScript interface

    - -

    {{Compat("api.Navigator.deviceMemory")}}

    Client Hints extension

    diff --git a/files/en-us/web/api/devicelightevent/index.html b/files/en-us/web/api/devicelightevent/index.html index 24759ecd034c838..f546aeb0c1c509d 100644 --- a/files/en-us/web/api/devicelightevent/index.html +++ b/files/en-us/web/api/devicelightevent/index.html @@ -32,8 +32,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceLightEvent")}}

    See also

    diff --git a/files/en-us/web/api/devicelightevent/using_light_sensors/index.html b/files/en-us/web/api/devicelightevent/using_light_sensors/index.html index c6a05136e0e2ace..b7ccaeb87298e47 100644 --- a/files/en-us/web/api/devicelightevent/using_light_sensors/index.html +++ b/files/en-us/web/api/devicelightevent/using_light_sensors/index.html @@ -82,8 +82,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceLightEvent")}}

    References:

    diff --git a/files/en-us/web/api/devicelightevent/value/index.html b/files/en-us/web/api/devicelightevent/value/index.html index 1145318373719af..8eb41f6da6f2822 100644 --- a/files/en-us/web/api/devicelightevent/value/index.html +++ b/files/en-us/web/api/devicelightevent/value/index.html @@ -42,8 +42,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceLightEvent.value")}}

    See also

    diff --git a/files/en-us/web/api/devicemotionevent/acceleration/index.html b/files/en-us/web/api/devicemotionevent/acceleration/index.html index 08ea485185138a8..c83a84dab086037 100644 --- a/files/en-us/web/api/devicemotionevent/acceleration/index.html +++ b/files/en-us/web/api/devicemotionevent/acceleration/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceMotionEvent.acceleration")}}

    See also

    diff --git a/files/en-us/web/api/devicemotionevent/devicemotionevent/index.html b/files/en-us/web/api/devicemotionevent/devicemotionevent/index.html index 102e886400a71f7..071ba79e2b8df73 100644 --- a/files/en-us/web/api/devicemotionevent/devicemotionevent/index.html +++ b/files/en-us/web/api/devicemotionevent/devicemotionevent/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceMotionEvent.DeviceMotionEvent")}}

    diff --git a/files/en-us/web/api/devicemotionevent/index.html b/files/en-us/web/api/devicemotionevent/index.html index 8bdbdf8e580a628..a5afea8d0684754 100644 --- a/files/en-us/web/api/devicemotionevent/index.html +++ b/files/en-us/web/api/devicemotionevent/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceMotionEvent")}}

    See also

    diff --git a/files/en-us/web/api/devicemotionevent/interval/index.html b/files/en-us/web/api/devicemotionevent/interval/index.html index 55f53b156cd13d5..58ef4f7e1ede29e 100644 --- a/files/en-us/web/api/devicemotionevent/interval/index.html +++ b/files/en-us/web/api/devicemotionevent/interval/index.html @@ -42,8 +42,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceMotionEvent.interval")}}

    See also

    diff --git a/files/en-us/web/api/devicemotionevent/rotationrate/index.html b/files/en-us/web/api/devicemotionevent/rotationrate/index.html index 58195eba50507bb..e5f5306d573b458 100644 --- a/files/en-us/web/api/devicemotionevent/rotationrate/index.html +++ b/files/en-us/web/api/devicemotionevent/rotationrate/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceMotionEvent.rotationRate")}}

    See also

    diff --git a/files/en-us/web/api/devicemotioneventacceleration/index.html b/files/en-us/web/api/devicemotioneventacceleration/index.html index 0b798b060e9bbe9..f3887abc645f0fd 100644 --- a/files/en-us/web/api/devicemotioneventacceleration/index.html +++ b/files/en-us/web/api/devicemotioneventacceleration/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceMotionEventAcceleration")}}

    diff --git a/files/en-us/web/api/devicemotioneventacceleration/x/index.html b/files/en-us/web/api/devicemotioneventacceleration/x/index.html index 81c4d72abbb8728..75db4afc2a4edfd 100644 --- a/files/en-us/web/api/devicemotioneventacceleration/x/index.html +++ b/files/en-us/web/api/devicemotioneventacceleration/x/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceMotionEventAcceleration.x")}}

    See also

    diff --git a/files/en-us/web/api/devicemotioneventacceleration/y/index.html b/files/en-us/web/api/devicemotioneventacceleration/y/index.html index ddd9f5f97088c3f..7dd23e432d23d71 100644 --- a/files/en-us/web/api/devicemotioneventacceleration/y/index.html +++ b/files/en-us/web/api/devicemotioneventacceleration/y/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceMotionEventAcceleration.y")}}

    See also

    diff --git a/files/en-us/web/api/devicemotioneventacceleration/z/index.html b/files/en-us/web/api/devicemotioneventacceleration/z/index.html index 6c404c1b7faa6cb..7c4158d6027bc29 100644 --- a/files/en-us/web/api/devicemotioneventacceleration/z/index.html +++ b/files/en-us/web/api/devicemotioneventacceleration/z/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceMotionEventAcceleration.z")}}

    See also

    diff --git a/files/en-us/web/api/devicemotioneventrotationrate/alpha/index.html b/files/en-us/web/api/devicemotioneventrotationrate/alpha/index.html index 282ab2fc71787b0..003e420f4e15c2d 100644 --- a/files/en-us/web/api/devicemotioneventrotationrate/alpha/index.html +++ b/files/en-us/web/api/devicemotioneventrotationrate/alpha/index.html @@ -50,6 +50,5 @@

    Browser compatibility

    -

    {{Compat("api.DeviceMotionEventRotationRate.alpha")}}

    diff --git a/files/en-us/web/api/devicemotioneventrotationrate/beta/index.html b/files/en-us/web/api/devicemotioneventrotationrate/beta/index.html index 57d3ce580aab01e..2aa9fdf17b00b57 100644 --- a/files/en-us/web/api/devicemotioneventrotationrate/beta/index.html +++ b/files/en-us/web/api/devicemotioneventrotationrate/beta/index.html @@ -51,6 +51,5 @@

    Browser compatibility

    -

    {{Compat("api.DeviceMotionEventRotationRate.beta")}}

    diff --git a/files/en-us/web/api/devicemotioneventrotationrate/gamma/index.html b/files/en-us/web/api/devicemotioneventrotationrate/gamma/index.html index c95dda277c482be..3aa3f2bc7cf13ce 100644 --- a/files/en-us/web/api/devicemotioneventrotationrate/gamma/index.html +++ b/files/en-us/web/api/devicemotioneventrotationrate/gamma/index.html @@ -51,6 +51,5 @@

    Browser compatibility

    -

    {{Compat("api.DeviceMotionEventRotationRate.gamma")}}

    diff --git a/files/en-us/web/api/devicemotioneventrotationrate/index.html b/files/en-us/web/api/devicemotioneventrotationrate/index.html index 6e1a05dd0aefc31..2999ee7e381d0f2 100644 --- a/files/en-us/web/api/devicemotioneventrotationrate/index.html +++ b/files/en-us/web/api/devicemotioneventrotationrate/index.html @@ -46,6 +46,5 @@

    Browser compatibility

    -

    {{Compat("api.DeviceMotionEventRotationRate")}}

    diff --git a/files/en-us/web/api/deviceorientationevent/absolute/index.html b/files/en-us/web/api/deviceorientationevent/absolute/index.html index 283f20c0b4e0c00..1cc567723e5171b 100644 --- a/files/en-us/web/api/deviceorientationevent/absolute/index.html +++ b/files/en-us/web/api/deviceorientationevent/absolute/index.html @@ -42,8 +42,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceOrientationEvent.absolute")}}

    See also

    diff --git a/files/en-us/web/api/deviceorientationevent/alpha/index.html b/files/en-us/web/api/deviceorientationevent/alpha/index.html index a7c181310a45196..4b3affbd7609ae3 100644 --- a/files/en-us/web/api/deviceorientationevent/alpha/index.html +++ b/files/en-us/web/api/deviceorientationevent/alpha/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceOrientationEvent.alpha")}}

    See also

    diff --git a/files/en-us/web/api/deviceorientationevent/beta/index.html b/files/en-us/web/api/deviceorientationevent/beta/index.html index 9af786b11bffd16..d394e4d9b59d8da 100644 --- a/files/en-us/web/api/deviceorientationevent/beta/index.html +++ b/files/en-us/web/api/deviceorientationevent/beta/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceOrientationEvent.beta")}}

    See also

    diff --git a/files/en-us/web/api/deviceorientationevent/deviceorientationevent/index.html b/files/en-us/web/api/deviceorientationevent/deviceorientationevent/index.html index 34779bf107ed7f9..30837ec85d8add2 100644 --- a/files/en-us/web/api/deviceorientationevent/deviceorientationevent/index.html +++ b/files/en-us/web/api/deviceorientationevent/deviceorientationevent/index.html @@ -55,6 +55,5 @@

    Browser compatibility

    -

    {{Compat("api.DeviceOrientationEvent.DeviceOrientationEvent")}}

    diff --git a/files/en-us/web/api/deviceorientationevent/gamma/index.html b/files/en-us/web/api/deviceorientationevent/gamma/index.html index 4618b214204ce1f..7c619561092bef5 100644 --- a/files/en-us/web/api/deviceorientationevent/gamma/index.html +++ b/files/en-us/web/api/deviceorientationevent/gamma/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceOrientationEvent.gamma")}}

    See also

    diff --git a/files/en-us/web/api/deviceorientationevent/index.html b/files/en-us/web/api/deviceorientationevent/index.html index 094a3a556a9ed5b..acd0bd6e24540ce 100644 --- a/files/en-us/web/api/deviceorientationevent/index.html +++ b/files/en-us/web/api/deviceorientationevent/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeviceOrientationEvent")}}

    See also

    diff --git a/files/en-us/web/api/deviceproximityevent/index.html b/files/en-us/web/api/deviceproximityevent/index.html index db82f9c9048b694..b53e7ebf9813c80 100644 --- a/files/en-us/web/api/deviceproximityevent/index.html +++ b/files/en-us/web/api/deviceproximityevent/index.html @@ -30,8 +30,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.DeviceProximityEvent")}}

    See also

    diff --git a/files/en-us/web/api/deviceproximityevent/max/index.html b/files/en-us/web/api/deviceproximityevent/max/index.html index ce18edcd9b0d458..caa90bbe6c38326 100644 --- a/files/en-us/web/api/deviceproximityevent/max/index.html +++ b/files/en-us/web/api/deviceproximityevent/max/index.html @@ -28,8 +28,6 @@

    Value

    Browser compatibility

    - -

    {{Compat("api.DeviceProximityEvent.max")}}

    See also

    diff --git a/files/en-us/web/api/deviceproximityevent/min/index.html b/files/en-us/web/api/deviceproximityevent/min/index.html index bd7d9e5b2afb547..b00d7b73b41c12d 100644 --- a/files/en-us/web/api/deviceproximityevent/min/index.html +++ b/files/en-us/web/api/deviceproximityevent/min/index.html @@ -28,8 +28,6 @@

    Value

    Browser compatibility

    - -

    {{Compat("api.DeviceProximityEvent.min")}}

    See also

    diff --git a/files/en-us/web/api/deviceproximityevent/value/index.html b/files/en-us/web/api/deviceproximityevent/value/index.html index 6779a361d80ab48..ff02710da315647 100644 --- a/files/en-us/web/api/deviceproximityevent/value/index.html +++ b/files/en-us/web/api/deviceproximityevent/value/index.html @@ -28,8 +28,6 @@

    Value

    Browser compatibility

    - -

    {{Compat("api.DeviceProximityEvent.value")}}

    See also

    diff --git a/files/en-us/web/api/directoryentrysync/index.html b/files/en-us/web/api/directoryentrysync/index.html index b6f87b026c80423..e37cc14a7bf8fba 100644 --- a/files/en-us/web/api/directoryentrysync/index.html +++ b/files/en-us/web/api/directoryentrysync/index.html @@ -373,7 +373,6 @@

    Browser compatibility

    -

    {{Compat("api.DirectoryEntrySync")}}

    diff --git a/files/en-us/web/api/directoryreadersync/index.html b/files/en-us/web/api/directoryreadersync/index.html index 8c0631b7e4eb84c..b88f83961b1de61 100644 --- a/files/en-us/web/api/directoryreadersync/index.html +++ b/files/en-us/web/api/directoryreadersync/index.html @@ -149,8 +149,6 @@
    Exceptions

    Browser compatibility

    - -

    {{Compat("api.DirectoryReaderSync")}}

    See also

    diff --git a/files/en-us/web/api/displaymediastreamconstraints/audio/index.html b/files/en-us/web/api/displaymediastreamconstraints/audio/index.html index 7e033a9301816bb..7d99ddf63940d79 100644 --- a/files/en-us/web/api/displaymediastreamconstraints/audio/index.html +++ b/files/en-us/web/api/displaymediastreamconstraints/audio/index.html @@ -50,8 +50,6 @@

    Value

    Example

    - -

    Specifications

    @@ -73,7 +71,6 @@

    Browser compatibility

    -

    {{Compat("api.DisplayMediaStreamConstraints.audio")}}

    diff --git a/files/en-us/web/api/displaymediastreamconstraints/index.html b/files/en-us/web/api/displaymediastreamconstraints/index.html index 8098404d5e5d84a..ce023ecc8ce65e2 100644 --- a/files/en-us/web/api/displaymediastreamconstraints/index.html +++ b/files/en-us/web/api/displaymediastreamconstraints/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.DisplayMediaStreamConstraints")}}

    diff --git a/files/en-us/web/api/displaymediastreamconstraints/video/index.html b/files/en-us/web/api/displaymediastreamconstraints/video/index.html index d1ec138747ff563..2c25d1a336689a9 100644 --- a/files/en-us/web/api/displaymediastreamconstraints/video/index.html +++ b/files/en-us/web/api/displaymediastreamconstraints/video/index.html @@ -48,8 +48,6 @@

    Constraints specific to screen s

    Example

    - -

    Specifications

    @@ -71,7 +69,6 @@

    Browser compatibility

    -

    {{Compat("api.DisplayMediaStreamConstraints.video")}}

    diff --git a/files/en-us/web/api/document/adoptnode/index.html b/files/en-us/web/api/document/adoptnode/index.html index 9aa0f4d7d1d02c4..85b7f9c35f3aeb0 100644 --- a/files/en-us/web/api/document/adoptnode/index.html +++ b/files/en-us/web/api/document/adoptnode/index.html @@ -84,8 +84,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.adoptNode")}}

    See also

    diff --git a/files/en-us/web/api/document/alinkcolor/index.html b/files/en-us/web/api/document/alinkcolor/index.html index 71acb12f8d307bf..cf47110ed343501 100644 --- a/files/en-us/web/api/document/alinkcolor/index.html +++ b/files/en-us/web/api/document/alinkcolor/index.html @@ -32,6 +32,4 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.Document.alinkColor")}}

    diff --git a/files/en-us/web/api/document/all/index.html b/files/en-us/web/api/document/all/index.html index adb8bc8c94728ce..45841c4a05f4321 100644 --- a/files/en-us/web/api/document/all/index.html +++ b/files/en-us/web/api/document/all/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.all")}}

    diff --git a/files/en-us/web/api/document/anchors/index.html b/files/en-us/web/api/document/anchors/index.html index 07e3057f82b75f6..2f626afead277ca 100644 --- a/files/en-us/web/api/document/anchors/index.html +++ b/files/en-us/web/api/document/anchors/index.html @@ -107,6 +107,4 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.anchors")}}
    diff --git a/files/en-us/web/api/document/animationcancel_event/index.html b/files/en-us/web/api/document/animationcancel_event/index.html index fb240c64a932ba2..297acc2286a63ce 100644 --- a/files/en-us/web/api/document/animationcancel_event/index.html +++ b/files/en-us/web/api/document/animationcancel_event/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.animationcancel_event")}}

    See also

    diff --git a/files/en-us/web/api/document/animationend_event/index.html b/files/en-us/web/api/document/animationend_event/index.html index 542229aaf0f4ba4..740c09dea6c09ca 100644 --- a/files/en-us/web/api/document/animationend_event/index.html +++ b/files/en-us/web/api/document/animationend_event/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.animationend_event")}}

    See also

    diff --git a/files/en-us/web/api/document/animationiteration_event/index.html b/files/en-us/web/api/document/animationiteration_event/index.html index 3dac9a501e3345b..e646a37e10f7d56 100644 --- a/files/en-us/web/api/document/animationiteration_event/index.html +++ b/files/en-us/web/api/document/animationiteration_event/index.html @@ -81,8 +81,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.animationiteration_event")}}

    See also

    diff --git a/files/en-us/web/api/document/animationstart_event/index.html b/files/en-us/web/api/document/animationstart_event/index.html index 4a97b3e1facb5b7..52dd173d66fdbb1 100644 --- a/files/en-us/web/api/document/animationstart_event/index.html +++ b/files/en-us/web/api/document/animationstart_event/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.animationstart_event")}}

    See also

    diff --git a/files/en-us/web/api/document/applets/index.html b/files/en-us/web/api/document/applets/index.html index 8f1f2d70c4c6079..d6bd3f8f1f031d9 100644 --- a/files/en-us/web/api/document/applets/index.html +++ b/files/en-us/web/api/document/applets/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.applets")}}

    diff --git a/files/en-us/web/api/document/body/index.html b/files/en-us/web/api/document/body/index.html index 4dd19602c09bfb3..465a9046733e600 100644 --- a/files/en-us/web/api/document/body/index.html +++ b/files/en-us/web/api/document/body/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.body")}}

    See also

    diff --git a/files/en-us/web/api/document/caretrangefrompoint/index.html b/files/en-us/web/api/document/caretrangefrompoint/index.html index 2c70d7831c719f6..ceb841fc793e0d5 100644 --- a/files/en-us/web/api/document/caretrangefrompoint/index.html +++ b/files/en-us/web/api/document/caretrangefrompoint/index.html @@ -84,6 +84,4 @@

    Result

    Browser compatibility

    - -

    {{Compat("api.Document.caretRangeFromPoint")}}

    diff --git a/files/en-us/web/api/document/characterset/index.html b/files/en-us/web/api/document/characterset/index.html index d72ddf3d43dbad7..8d2605e15a78ea5 100644 --- a/files/en-us/web/api/document/characterset/index.html +++ b/files/en-us/web/api/document/characterset/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.characterSet")}}

    diff --git a/files/en-us/web/api/document/clear/index.html b/files/en-us/web/api/document/clear/index.html index 4f18b6d908b0b95..4a7a5588d275f48 100644 --- a/files/en-us/web/api/document/clear/index.html +++ b/files/en-us/web/api/document/clear/index.html @@ -30,6 +30,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.clear")}}

    diff --git a/files/en-us/web/api/document/close/index.html b/files/en-us/web/api/document/close/index.html index 4d3900829eb97ec..6dcdf686d6d223a 100644 --- a/files/en-us/web/api/document/close/index.html +++ b/files/en-us/web/api/document/close/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.close")}}

    diff --git a/files/en-us/web/api/document/compatmode/index.html b/files/en-us/web/api/document/compatmode/index.html index ed16db25b20b043..a657d5b8895cf05 100644 --- a/files/en-us/web/api/document/compatmode/index.html +++ b/files/en-us/web/api/document/compatmode/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.compatMode")}}

    diff --git a/files/en-us/web/api/document/contenttype/index.html b/files/en-us/web/api/document/contenttype/index.html index 41e16aedfc3edc2..a64ddeeb5c2a174 100644 --- a/files/en-us/web/api/document/contenttype/index.html +++ b/files/en-us/web/api/document/contenttype/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.contentType")}}
    diff --git a/files/en-us/web/api/document/cookie/index.html b/files/en-us/web/api/document/cookie/index.html index b47eae7cac384e8..44471a147745d7e 100644 --- a/files/en-us/web/api/document/cookie/index.html +++ b/files/en-us/web/api/document/cookie/index.html @@ -234,8 +234,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.cookie")}}

    See also

    diff --git a/files/en-us/web/api/document/copy_event/index.html b/files/en-us/web/api/document/copy_event/index.html index e621e4ac46e5ae3..36e001547d89f4d 100644 --- a/files/en-us/web/api/document/copy_event/index.html +++ b/files/en-us/web/api/document/copy_event/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.copy_event")}}

    See also

    diff --git a/files/en-us/web/api/document/createattribute/index.html b/files/en-us/web/api/document/createattribute/index.html index 0c58f24c6a9183e..e11da30179859d6 100644 --- a/files/en-us/web/api/document/createattribute/index.html +++ b/files/en-us/web/api/document/createattribute/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createAttribute")}}

    See also

    diff --git a/files/en-us/web/api/document/createcdatasection/index.html b/files/en-us/web/api/document/createcdatasection/index.html index 78949a24f2e9f66..ce5b815307179ba 100644 --- a/files/en-us/web/api/document/createcdatasection/index.html +++ b/files/en-us/web/api/document/createcdatasection/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createCDATASection")}}

    diff --git a/files/en-us/web/api/document/createcomment/index.html b/files/en-us/web/api/document/createcomment/index.html index 75242ec44830623..de36bc8a2864211 100644 --- a/files/en-us/web/api/document/createcomment/index.html +++ b/files/en-us/web/api/document/createcomment/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createComment")}}

    diff --git a/files/en-us/web/api/document/createdocumentfragment/index.html b/files/en-us/web/api/document/createdocumentfragment/index.html index 0cf10f9c545b6a5..ce4a641812c41f7 100644 --- a/files/en-us/web/api/document/createdocumentfragment/index.html +++ b/files/en-us/web/api/document/createdocumentfragment/index.html @@ -84,7 +84,6 @@

    Browser compatibility

    -

    {{Compat("api.Document.createDocumentFragment")}}

    diff --git a/files/en-us/web/api/document/createelement/index.html b/files/en-us/web/api/document/createelement/index.html index edf9da75ccc5b54..b4d5ced680156d1 100644 --- a/files/en-us/web/api/document/createelement/index.html +++ b/files/en-us/web/api/document/createelement/index.html @@ -120,8 +120,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createElement")}}

    See also

    diff --git a/files/en-us/web/api/document/createelementns/index.html b/files/en-us/web/api/document/createelementns/index.html index f5f00adda5b74df..45fb310f617a518 100644 --- a/files/en-us/web/api/document/createelementns/index.html +++ b/files/en-us/web/api/document/createelementns/index.html @@ -108,8 +108,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createElementNS")}}

    See also

    diff --git a/files/en-us/web/api/document/createentityreference/index.html b/files/en-us/web/api/document/createentityreference/index.html index 7705b2b25ac67c5..69ce90c9bf1083d 100644 --- a/files/en-us/web/api/document/createentityreference/index.html +++ b/files/en-us/web/api/document/createentityreference/index.html @@ -18,6 +18,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createEntityReference")}}

    diff --git a/files/en-us/web/api/document/createevent/index.html b/files/en-us/web/api/document/createevent/index.html index 495d13d1207b4e9..0cc2603d90f7498 100644 --- a/files/en-us/web/api/document/createevent/index.html +++ b/files/en-us/web/api/document/createevent/index.html @@ -94,8 +94,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createEvent")}}

    See also

    diff --git a/files/en-us/web/api/document/createexpression/index.html b/files/en-us/web/api/document/createexpression/index.html index 6d08414c9377d93..d458bbf2f0ebe5f 100644 --- a/files/en-us/web/api/document/createexpression/index.html +++ b/files/en-us/web/api/document/createexpression/index.html @@ -33,8 +33,6 @@

    Return value

    Browser compatibility

    - -

    {{Compat("api.Document.createExpression")}}

    See also

    diff --git a/files/en-us/web/api/document/createnodeiterator/index.html b/files/en-us/web/api/document/createnodeiterator/index.html index f6e83d5b0c6d9f1..de458abf50937f8 100644 --- a/files/en-us/web/api/document/createnodeiterator/index.html +++ b/files/en-us/web/api/document/createnodeiterator/index.html @@ -149,6 +149,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createNodeIterator")}}

    diff --git a/files/en-us/web/api/document/creatensresolver/index.html b/files/en-us/web/api/document/creatensresolver/index.html index 2d3fdc27cf88186..dc132e3576c8c46 100644 --- a/files/en-us/web/api/document/creatensresolver/index.html +++ b/files/en-us/web/api/document/creatensresolver/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createNSResolver")}}

    See also

    diff --git a/files/en-us/web/api/document/createprocessinginstruction/index.html b/files/en-us/web/api/document/createprocessinginstruction/index.html index 614c7e18026a52f..3bd9112dd1d6209 100644 --- a/files/en-us/web/api/document/createprocessinginstruction/index.html +++ b/files/en-us/web/api/document/createprocessinginstruction/index.html @@ -92,6 +92,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createProcessingInstruction")}}

    diff --git a/files/en-us/web/api/document/createrange/index.html b/files/en-us/web/api/document/createrange/index.html index 7c1d699ee26481a..a16d4a303ccb44e 100644 --- a/files/en-us/web/api/document/createrange/index.html +++ b/files/en-us/web/api/document/createrange/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.createRange")}}
    diff --git a/files/en-us/web/api/document/createtextnode/index.html b/files/en-us/web/api/document/createtextnode/index.html index 1ce821274225112..29574f4825119b4 100644 --- a/files/en-us/web/api/document/createtextnode/index.html +++ b/files/en-us/web/api/document/createtextnode/index.html @@ -75,6 +75,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createTextNode")}}

    diff --git a/files/en-us/web/api/document/createtouch/index.html b/files/en-us/web/api/document/createtouch/index.html index e73eedb37c82ea3..34cb21740cfc350 100644 --- a/files/en-us/web/api/document/createtouch/index.html +++ b/files/en-us/web/api/document/createtouch/index.html @@ -103,8 +103,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createTouch")}}

    See also

    diff --git a/files/en-us/web/api/document/createtouchlist/index.html b/files/en-us/web/api/document/createtouchlist/index.html index 2347c31d84b3e1b..399d1c804128908 100644 --- a/files/en-us/web/api/document/createtouchlist/index.html +++ b/files/en-us/web/api/document/createtouchlist/index.html @@ -81,8 +81,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createTouchList")}}

    See also

    diff --git a/files/en-us/web/api/document/createtreewalker/index.html b/files/en-us/web/api/document/createtreewalker/index.html index 2420bdb9ad1e8d4..b739f766265c4d9 100644 --- a/files/en-us/web/api/document/createtreewalker/index.html +++ b/files/en-us/web/api/document/createtreewalker/index.html @@ -153,8 +153,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.createTreeWalker")}}

    See also

    diff --git a/files/en-us/web/api/document/currentscript/index.html b/files/en-us/web/api/document/currentscript/index.html index 9ca2ae09c1c3c2f..44b2b9dafdf615a 100644 --- a/files/en-us/web/api/document/currentscript/index.html +++ b/files/en-us/web/api/document/currentscript/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.currentScript")}}

    See also

    diff --git a/files/en-us/web/api/document/cut_event/index.html b/files/en-us/web/api/document/cut_event/index.html index 5935a8d24e494cf..b9fd8c215fc28ff 100644 --- a/files/en-us/web/api/document/cut_event/index.html +++ b/files/en-us/web/api/document/cut_event/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.cut_event")}}

    See also

    diff --git a/files/en-us/web/api/document/defaultview/index.html b/files/en-us/web/api/document/defaultview/index.html index 87b24ff464f50ba..5f964e0217969df 100644 --- a/files/en-us/web/api/document/defaultview/index.html +++ b/files/en-us/web/api/document/defaultview/index.html @@ -46,6 +46,5 @@

    Browser compatibility

    -

    {{Compat("api.Document.defaultView")}}

    diff --git a/files/en-us/web/api/document/designmode/index.html b/files/en-us/web/api/document/designmode/index.html index e7c57ab8df2e83c..6318c795c70eaea 100644 --- a/files/en-us/web/api/document/designmode/index.html +++ b/files/en-us/web/api/document/designmode/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.designMode")}}

    See also

    diff --git a/files/en-us/web/api/document/dir/index.html b/files/en-us/web/api/document/dir/index.html index dd930a9e2abb2e3..30cf9aa14e2533c 100644 --- a/files/en-us/web/api/document/dir/index.html +++ b/files/en-us/web/api/document/dir/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.dir")}}

    See also

    diff --git a/files/en-us/web/api/document/doctype/index.html b/files/en-us/web/api/document/doctype/index.html index 82ffa08e9856335..66931f61b73e2bb 100644 --- a/files/en-us/web/api/document/doctype/index.html +++ b/files/en-us/web/api/document/doctype/index.html @@ -59,6 +59,4 @@

    Specifications

     Browser compatibility

    - -

    {{Compat("api.Document.doctype")}}

    diff --git a/files/en-us/web/api/document/document/index.html b/files/en-us/web/api/document/document/index.html index a8b7c00445da0b1..aa61ea48504bdbc 100644 --- a/files/en-us/web/api/document/document/index.html +++ b/files/en-us/web/api/document/document/index.html @@ -38,6 +38,4 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.Document")}}
    diff --git a/files/en-us/web/api/document/documentelement/index.html b/files/en-us/web/api/document/documentelement/index.html index b5b1200162eba58..86da04fb7b857f7 100644 --- a/files/en-us/web/api/document/documentelement/index.html +++ b/files/en-us/web/api/document/documentelement/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.documentElement")}}

    diff --git a/files/en-us/web/api/document/documenturi/index.html b/files/en-us/web/api/document/documenturi/index.html index 3c311f9fe68a39e..b5c4df7edca1b7a 100644 --- a/files/en-us/web/api/document/documenturi/index.html +++ b/files/en-us/web/api/document/documenturi/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.documentURI")}}

    See also

    diff --git a/files/en-us/web/api/document/documenturiobject/index.html b/files/en-us/web/api/document/documenturiobject/index.html index 92e8d6f3e2fee0f..39f62d7c5403c0f 100644 --- a/files/en-us/web/api/document/documenturiobject/index.html +++ b/files/en-us/web/api/document/documenturiobject/index.html @@ -39,6 +39,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.documentURIObject")}}

    diff --git a/files/en-us/web/api/document/domain/index.html b/files/en-us/web/api/document/domain/index.html index 8d9944bedd8e708..5f4345cee7804b6 100644 --- a/files/en-us/web/api/document/domain/index.html +++ b/files/en-us/web/api/document/domain/index.html @@ -113,8 +113,6 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.domain")}}

    See also

    diff --git a/files/en-us/web/api/document/domcontentloaded_event/index.html b/files/en-us/web/api/document/domcontentloaded_event/index.html index d580e982ca04d61..4793c16c1af5935 100644 --- a/files/en-us/web/api/document/domcontentloaded_event/index.html +++ b/files/en-us/web/api/document/domcontentloaded_event/index.html @@ -352,8 +352,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.DOMContentLoaded_event")}}

    See also

    diff --git a/files/en-us/web/api/document/drag_event/index.html b/files/en-us/web/api/document/drag_event/index.html index 9925f857dfba47e..a48ddbdc58c9d3b 100644 --- a/files/en-us/web/api/document/drag_event/index.html +++ b/files/en-us/web/api/document/drag_event/index.html @@ -152,8 +152,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.drag_event")}}

    See also

    diff --git a/files/en-us/web/api/document/dragend_event/index.html b/files/en-us/web/api/document/dragend_event/index.html index f7eb5dd8f82c9f3..2b8fa9eb761d61e 100644 --- a/files/en-us/web/api/document/dragend_event/index.html +++ b/files/en-us/web/api/document/dragend_event/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.dragend_event")}}

    See also

    diff --git a/files/en-us/web/api/document/dragenter_event/index.html b/files/en-us/web/api/document/dragenter_event/index.html index 8406c5ba80b7973..7d079bf2c46dfb6 100644 --- a/files/en-us/web/api/document/dragenter_event/index.html +++ b/files/en-us/web/api/document/dragenter_event/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.dragenter_event")}}

    See also

    diff --git a/files/en-us/web/api/document/dragleave_event/index.html b/files/en-us/web/api/document/dragleave_event/index.html index 6043df5193b8b2d..314adf72bf0eadb 100644 --- a/files/en-us/web/api/document/dragleave_event/index.html +++ b/files/en-us/web/api/document/dragleave_event/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.dragleave_event")}}

    See also

    diff --git a/files/en-us/web/api/document/dragover_event/index.html b/files/en-us/web/api/document/dragover_event/index.html index 5508b024965dce2..9847c51a108499d 100644 --- a/files/en-us/web/api/document/dragover_event/index.html +++ b/files/en-us/web/api/document/dragover_event/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.dragover_event")}}

    See also

    diff --git a/files/en-us/web/api/document/dragstart_event/index.html b/files/en-us/web/api/document/dragstart_event/index.html index 25000cd1cbff106..c31a91bd35ba713 100644 --- a/files/en-us/web/api/document/dragstart_event/index.html +++ b/files/en-us/web/api/document/dragstart_event/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.dragstart_event")}}

    See also

    diff --git a/files/en-us/web/api/document/drop_event/index.html b/files/en-us/web/api/document/drop_event/index.html index 8ba375dc1d2aa0d..2068d909f678869 100644 --- a/files/en-us/web/api/document/drop_event/index.html +++ b/files/en-us/web/api/document/drop_event/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.drop_event")}}

    See also

    diff --git a/files/en-us/web/api/document/embeds/index.html b/files/en-us/web/api/document/embeds/index.html index d86b3727be22757..1ffd2432a512e3c 100644 --- a/files/en-us/web/api/document/embeds/index.html +++ b/files/en-us/web/api/document/embeds/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.embeds")}}
    diff --git a/files/en-us/web/api/document/enablestylesheetsforset/index.html b/files/en-us/web/api/document/enablestylesheetsforset/index.html index 04e707d2d78732c..1c2a27289838992 100644 --- a/files/en-us/web/api/document/enablestylesheetsforset/index.html +++ b/files/en-us/web/api/document/enablestylesheetsforset/index.html @@ -42,8 +42,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.Document.enableStyleSheetsForSet")}}

    See also

    diff --git a/files/en-us/web/api/document/evaluate/index.html b/files/en-us/web/api/document/evaluate/index.html index fa57fb1f2466347..f40c4bbaa214e79 100644 --- a/files/en-us/web/api/document/evaluate/index.html +++ b/files/en-us/web/api/document/evaluate/index.html @@ -153,8 +153,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.evaluate")}}

    See also

    diff --git a/files/en-us/web/api/document/execcommand/index.html b/files/en-us/web/api/document/execcommand/index.html index 14d48ba6c8c50dc..412881ac01905f5 100644 --- a/files/en-us/web/api/document/execcommand/index.html +++ b/files/en-us/web/api/document/execcommand/index.html @@ -165,8 +165,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.execCommand")}}

    See also

    diff --git a/files/en-us/web/api/document/exitfullscreen/index.html b/files/en-us/web/api/document/exitfullscreen/index.html index ef1ddd0bf60de74..823218b2386b96d 100644 --- a/files/en-us/web/api/document/exitfullscreen/index.html +++ b/files/en-us/web/api/document/exitfullscreen/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.exitFullscreen")}}

    See also

    diff --git a/files/en-us/web/api/document/exitpictureinpicture/index.html b/files/en-us/web/api/document/exitpictureinpicture/index.html index cde32278290caba..8f170991e8a1e07 100644 --- a/files/en-us/web/api/document/exitpictureinpicture/index.html +++ b/files/en-us/web/api/document/exitpictureinpicture/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.exitPictureInPicture")}}

    See also

    diff --git a/files/en-us/web/api/document/exitpointerlock/index.html b/files/en-us/web/api/document/exitpointerlock/index.html index a0eb3ab3564d06c..84adf68f87092de 100644 --- a/files/en-us/web/api/document/exitpointerlock/index.html +++ b/files/en-us/web/api/document/exitpointerlock/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.exitPointerLock")}}

    See also

    diff --git a/files/en-us/web/api/document/featurepolicy/index.html b/files/en-us/web/api/document/featurepolicy/index.html index 4d43ab919689d43..2430b3ac218ccb7 100644 --- a/files/en-us/web/api/document/featurepolicy/index.html +++ b/files/en-us/web/api/document/featurepolicy/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.featurePolicy")}}

    diff --git a/files/en-us/web/api/document/fgcolor/index.html b/files/en-us/web/api/document/fgcolor/index.html index 29ea7a988b580d5..abfe804fa9c7fba 100644 --- a/files/en-us/web/api/document/fgcolor/index.html +++ b/files/en-us/web/api/document/fgcolor/index.html @@ -42,6 +42,4 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.Document.fgColor")}}

    diff --git a/files/en-us/web/api/document/fonts/index.html b/files/en-us/web/api/document/fonts/index.html index dacfbf626ff694c..af6578d79b3e16d 100644 --- a/files/en-us/web/api/document/fonts/index.html +++ b/files/en-us/web/api/document/fonts/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.fonts")}}

    See also

    diff --git a/files/en-us/web/api/document/forms/index.html b/files/en-us/web/api/document/forms/index.html index 85fda6ee269559b..c9d6f31b32797d9 100644 --- a/files/en-us/web/api/document/forms/index.html +++ b/files/en-us/web/api/document/forms/index.html @@ -113,8 +113,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.forms")}}

    See also

    diff --git a/files/en-us/web/api/document/fullscreen/index.html b/files/en-us/web/api/document/fullscreen/index.html index 9ccd56d12d40b7c..c98e10174817c3b 100644 --- a/files/en-us/web/api/document/fullscreen/index.html +++ b/files/en-us/web/api/document/fullscreen/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.fullscreen")}}

    See also

    diff --git a/files/en-us/web/api/document/fullscreenenabled/index.html b/files/en-us/web/api/document/fullscreenenabled/index.html index b9e7fa322d52827..a3b3894390afbeb 100644 --- a/files/en-us/web/api/document/fullscreenenabled/index.html +++ b/files/en-us/web/api/document/fullscreenenabled/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.fullscreenEnabled")}}

    See also

    diff --git a/files/en-us/web/api/document/getboxobjectfor/index.html b/files/en-us/web/api/document/getboxobjectfor/index.html index b49efc14b58fbf5..786cb7d8f17fb98 100644 --- a/files/en-us/web/api/document/getboxobjectfor/index.html +++ b/files/en-us/web/api/document/getboxobjectfor/index.html @@ -42,6 +42,4 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.Document.getBoxObjectFor")}}

    diff --git a/files/en-us/web/api/document/getelementbyid/index.html b/files/en-us/web/api/document/getelementbyid/index.html index b8fa07cfa475aaf..e9e12ea6eed8afa 100644 --- a/files/en-us/web/api/document/getelementbyid/index.html +++ b/files/en-us/web/api/document/getelementbyid/index.html @@ -137,8 +137,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.getElementById")}}

    See also

    diff --git a/files/en-us/web/api/document/getelementsbyclassname/index.html b/files/en-us/web/api/document/getelementsbyclassname/index.html index a3dd19b2d8e65b6..8aae2059b2fa3a1 100644 --- a/files/en-us/web/api/document/getelementsbyclassname/index.html +++ b/files/en-us/web/api/document/getelementsbyclassname/index.html @@ -100,7 +100,6 @@

    JavaScript

    result += "\n " + allOrangeJuiceByClass[i].textContent; } - // querySelector only selects full complete matches var allOrangeJuiceQuery = document.querySelectorAll('.orange.juice'); result += "\n\ndocument.querySelectorAll('.orange.juice')"; @@ -135,6 +134,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.getElementsByClassName")}}

    diff --git a/files/en-us/web/api/document/getelementsbyname/index.html b/files/en-us/web/api/document/getelementsbyname/index.html index 60ac34829b6720a..28f6e460d4f8dee 100644 --- a/files/en-us/web/api/document/getelementsbyname/index.html +++ b/files/en-us/web/api/document/getelementsbyname/index.html @@ -83,8 +83,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.getElementsByName")}}

    See also

    diff --git a/files/en-us/web/api/document/getelementsbytagname/index.html b/files/en-us/web/api/document/getelementsbytagname/index.html index 653a5a4e33810c2..ac1b0ebfbf36317 100644 --- a/files/en-us/web/api/document/getelementsbytagname/index.html +++ b/files/en-us/web/api/document/getelementsbytagname/index.html @@ -113,8 +113,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.getElementsByTagName")}}

    See also

    diff --git a/files/en-us/web/api/document/getelementsbytagnamens/index.html b/files/en-us/web/api/document/getelementsbytagnamens/index.html index 7494bbfa1eaf448..6297d5957ca951f 100644 --- a/files/en-us/web/api/document/getelementsbytagnamens/index.html +++ b/files/en-us/web/api/document/getelementsbytagnamens/index.html @@ -53,7 +53,6 @@

    Example

    alert("There are " + num + " &lt;p&gt; elements in this document"); } - function div1ParaElems() { var div1 = document.getElementById("div1") @@ -64,7 +63,6 @@

    Example

    alert("There are " + num + " &lt;p&gt; elements in div1 element"); } - function div2ParaElems() { var div2 = document.getElementById("div2") @@ -152,8 +150,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.getElementsByTagNameNS")}}

    See also

    diff --git a/files/en-us/web/api/document/gotpointercapture_event/index.html b/files/en-us/web/api/document/gotpointercapture_event/index.html index 01413384fa6419f..a08bb97b7aa1f89 100644 --- a/files/en-us/web/api/document/gotpointercapture_event/index.html +++ b/files/en-us/web/api/document/gotpointercapture_event/index.html @@ -84,8 +84,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.gotpointercapture_event")}}

    See also

    diff --git a/files/en-us/web/api/document/hasfocus/index.html b/files/en-us/web/api/document/hasfocus/index.html index baecd4cc332e45d..a7d0fa194de7ef1 100644 --- a/files/en-us/web/api/document/hasfocus/index.html +++ b/files/en-us/web/api/document/hasfocus/index.html @@ -81,8 +81,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.hasFocus")}}

    See also

    diff --git a/files/en-us/web/api/document/hasstorageaccess/index.html b/files/en-us/web/api/document/hasstorageaccess/index.html index a5dcb436d85a72c..ffab260d9449b10 100644 --- a/files/en-us/web/api/document/hasstorageaccess/index.html +++ b/files/en-us/web/api/document/hasstorageaccess/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.hasStorageAccess")}}

    See also

    diff --git a/files/en-us/web/api/document/head/index.html b/files/en-us/web/api/document/head/index.html index 969db6fe9b12f23..3ba61a01fcaca41 100644 --- a/files/en-us/web/api/document/head/index.html +++ b/files/en-us/web/api/document/head/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.head")}}

    See Also

    diff --git a/files/en-us/web/api/document/height/index.html b/files/en-us/web/api/document/height/index.html index 8baa25d16a2603a..013bacd04428a7b 100644 --- a/files/en-us/web/api/document/height/index.html +++ b/files/en-us/web/api/document/height/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.height")}}

    See also

    diff --git a/files/en-us/web/api/document/hidden/index.html b/files/en-us/web/api/document/hidden/index.html index 2da1ace353862d7..edb951d3e97d123 100644 --- a/files/en-us/web/api/document/hidden/index.html +++ b/files/en-us/web/api/document/hidden/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.hidden")}}

    diff --git a/files/en-us/web/api/document/images/index.html b/files/en-us/web/api/document/images/index.html index d7cadc89b1695f5..f91ea43246ca95d 100644 --- a/files/en-us/web/api/document/images/index.html +++ b/files/en-us/web/api/document/images/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.images")}}

    diff --git a/files/en-us/web/api/document/implementation/index.html b/files/en-us/web/api/document/implementation/index.html index 3a0b18fc6d88b52..3571c4748e6cd81 100644 --- a/files/en-us/web/api/document/implementation/index.html +++ b/files/en-us/web/api/document/implementation/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.implementation")}}

    Gecko-specific notes

    diff --git a/files/en-us/web/api/document/importnode/index.html b/files/en-us/web/api/document/importnode/index.html index 4eaf36e495f34b4..e677ed0b33d65cb 100644 --- a/files/en-us/web/api/document/importnode/index.html +++ b/files/en-us/web/api/document/importnode/index.html @@ -97,8 +97,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.importNode")}}

    See also

    diff --git a/files/en-us/web/api/document/index.html b/files/en-us/web/api/document/index.html index 11d57e60b9bff01..51651542121f549 100644 --- a/files/en-us/web/api/document/index.html +++ b/files/en-us/web/api/document/index.html @@ -656,6 +656,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document")}}

    diff --git a/files/en-us/web/api/document/keydown_event/index.html b/files/en-us/web/api/document/keydown_event/index.html index 545c8c2f7bd5a3c..03854790491b0e4 100644 --- a/files/en-us/web/api/document/keydown_event/index.html +++ b/files/en-us/web/api/document/keydown_event/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.keydown_event")}}

    See also

    diff --git a/files/en-us/web/api/document/keyup_event/index.html b/files/en-us/web/api/document/keyup_event/index.html index 17f15a0cd10b527..f33f21f53d7d30f 100644 --- a/files/en-us/web/api/document/keyup_event/index.html +++ b/files/en-us/web/api/document/keyup_event/index.html @@ -92,8 +92,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.keyup_event")}}

    See also

    diff --git a/files/en-us/web/api/document/lastmodified/index.html b/files/en-us/web/api/document/lastmodified/index.html index 242e46c748f760e..bb394c8c7549090 100644 --- a/files/en-us/web/api/document/lastmodified/index.html +++ b/files/en-us/web/api/document/lastmodified/index.html @@ -90,6 +90,4 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.lastModified")}}
    diff --git a/files/en-us/web/api/document/laststylesheetset/index.html b/files/en-us/web/api/document/laststylesheetset/index.html index dae6c265ef3b85f..0fe2945c2de413e 100644 --- a/files/en-us/web/api/document/laststylesheetset/index.html +++ b/files/en-us/web/api/document/laststylesheetset/index.html @@ -38,8 +38,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.Document.lastStyleSheetSet")}}

    See also

    diff --git a/files/en-us/web/api/document/linkcolor/index.html b/files/en-us/web/api/document/linkcolor/index.html index 2105323cc996400..6cbfa00438f9f54 100644 --- a/files/en-us/web/api/document/linkcolor/index.html +++ b/files/en-us/web/api/document/linkcolor/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.linkColor")}}

    The default value for this property in Mozilla Firefox is blue (#0000ee in hexadecimal).

    diff --git a/files/en-us/web/api/document/links/index.html b/files/en-us/web/api/document/links/index.html index 5d87125aebfcbce..4dc6851bb991375 100644 --- a/files/en-us/web/api/document/links/index.html +++ b/files/en-us/web/api/document/links/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.links")}}

    diff --git a/files/en-us/web/api/document/location/index.html b/files/en-us/web/api/document/location/index.html index 5f263c17593a891..c7062de8e8a6558 100644 --- a/files/en-us/web/api/document/location/index.html +++ b/files/en-us/web/api/document/location/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.location")}}

    See also

    diff --git a/files/en-us/web/api/document/lostpointercapture_event/index.html b/files/en-us/web/api/document/lostpointercapture_event/index.html index 67490a22d62dd3a..a83e6fa210b2650 100644 --- a/files/en-us/web/api/document/lostpointercapture_event/index.html +++ b/files/en-us/web/api/document/lostpointercapture_event/index.html @@ -85,8 +85,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.lostpointercapture_event")}}

    See also

    diff --git a/files/en-us/web/api/document/mozsetimageelement/index.html b/files/en-us/web/api/document/mozsetimageelement/index.html index 8edf46c383cdd35..d290d2022410548 100644 --- a/files/en-us/web/api/document/mozsetimageelement/index.html +++ b/files/en-us/web/api/document/mozsetimageelement/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.mozSetImageElement")}}

    See also

    diff --git a/files/en-us/web/api/document/mozsyntheticdocument/index.html b/files/en-us/web/api/document/mozsyntheticdocument/index.html index 2ec9405487bca5f..76890475b40f003 100644 --- a/files/en-us/web/api/document/mozsyntheticdocument/index.html +++ b/files/en-us/web/api/document/mozsyntheticdocument/index.html @@ -36,6 +36,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.mozSyntheticDocument")}}

    diff --git a/files/en-us/web/api/document/onafterscriptexecute/index.html b/files/en-us/web/api/document/onafterscriptexecute/index.html index 5cba300fab28cfa..74a375463c9c486 100644 --- a/files/en-us/web/api/document/onafterscriptexecute/index.html +++ b/files/en-us/web/api/document/onafterscriptexecute/index.html @@ -38,8 +38,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.onafterscriptexecute")}}

    See also

    diff --git a/files/en-us/web/api/document/onbeforescriptexecute/index.html b/files/en-us/web/api/document/onbeforescriptexecute/index.html index 36d09799f0b420f..a6cfd6c0452a7ac 100644 --- a/files/en-us/web/api/document/onbeforescriptexecute/index.html +++ b/files/en-us/web/api/document/onbeforescriptexecute/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.onbeforescriptexecute")}}

    See also

    diff --git a/files/en-us/web/api/document/onfullscreenchange/index.html b/files/en-us/web/api/document/onfullscreenchange/index.html index 43b6b407d3e32cd..24e3787d56825e6 100644 --- a/files/en-us/web/api/document/onfullscreenchange/index.html +++ b/files/en-us/web/api/document/onfullscreenchange/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.onfullscreenchange")}}

    See also

    diff --git a/files/en-us/web/api/document/onfullscreenerror/index.html b/files/en-us/web/api/document/onfullscreenerror/index.html index 0a6dc3974c67fd4..59851f57386def0 100644 --- a/files/en-us/web/api/document/onfullscreenerror/index.html +++ b/files/en-us/web/api/document/onfullscreenerror/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.onfullscreenerror")}}

    See also

    diff --git a/files/en-us/web/api/document/onvisibilitychange/index.html b/files/en-us/web/api/document/onvisibilitychange/index.html index a93a758cda5872e..972cbd6d4a1cb7b 100644 --- a/files/en-us/web/api/document/onvisibilitychange/index.html +++ b/files/en-us/web/api/document/onvisibilitychange/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.onvisibilitychange")}}

    See also

    diff --git a/files/en-us/web/api/document/open/index.html b/files/en-us/web/api/document/open/index.html index 2daca7b33bfd261..0e38b08160a075d 100644 --- a/files/en-us/web/api/document/open/index.html +++ b/files/en-us/web/api/document/open/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.open")}}

    See also

    diff --git a/files/en-us/web/api/document/origin/index.html b/files/en-us/web/api/document/origin/index.html index 5b543819aed5f8f..62b7fb1f41d31b6 100644 --- a/files/en-us/web/api/document/origin/index.html +++ b/files/en-us/web/api/document/origin/index.html @@ -36,8 +36,6 @@

    Examples

    Browser compatibility

    - -
    {{Compat("api.Document.origin")}}

    See also

    diff --git a/files/en-us/web/api/document/paste_event/index.html b/files/en-us/web/api/document/paste_event/index.html index a752d68aad822f0..fe3cc03d1a1cf1f 100644 --- a/files/en-us/web/api/document/paste_event/index.html +++ b/files/en-us/web/api/document/paste_event/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.paste_event")}}

    See also

    diff --git a/files/en-us/web/api/document/pictureinpictureenabled/index.html b/files/en-us/web/api/document/pictureinpictureenabled/index.html index 514b8b15f6a2bb5..ef31bcebd1cffbf 100644 --- a/files/en-us/web/api/document/pictureinpictureenabled/index.html +++ b/files/en-us/web/api/document/pictureinpictureenabled/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.pictureInPictureEnabled")}}

    See also

    diff --git a/files/en-us/web/api/document/plugins/index.html b/files/en-us/web/api/document/plugins/index.html index 90cc5d157b97803..53b70c448774763 100644 --- a/files/en-us/web/api/document/plugins/index.html +++ b/files/en-us/web/api/document/plugins/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.plugins")}}

    See also

    diff --git a/files/en-us/web/api/document/pointercancel_event/index.html b/files/en-us/web/api/document/pointercancel_event/index.html index 6443198fbd15279..d14ff1fd95d4a2b 100644 --- a/files/en-us/web/api/document/pointercancel_event/index.html +++ b/files/en-us/web/api/document/pointercancel_event/index.html @@ -84,8 +84,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.pointercancel_event")}}

    See also

    diff --git a/files/en-us/web/api/document/pointerdown_event/index.html b/files/en-us/web/api/document/pointerdown_event/index.html index ed73db69e034d99..2ee9e6aa15af890 100644 --- a/files/en-us/web/api/document/pointerdown_event/index.html +++ b/files/en-us/web/api/document/pointerdown_event/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.pointerdown_event")}}

    See also

    diff --git a/files/en-us/web/api/document/pointerenter_event/index.html b/files/en-us/web/api/document/pointerenter_event/index.html index 6624a4422a3ad66..5ffbdf02c29fb09 100644 --- a/files/en-us/web/api/document/pointerenter_event/index.html +++ b/files/en-us/web/api/document/pointerenter_event/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.pointerenter_event")}}

    See also

    diff --git a/files/en-us/web/api/document/pointerleave_event/index.html b/files/en-us/web/api/document/pointerleave_event/index.html index cf83e87c2eb2228..8c388f0349ed3e6 100644 --- a/files/en-us/web/api/document/pointerleave_event/index.html +++ b/files/en-us/web/api/document/pointerleave_event/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.pointerleave_event")}}

    See also

    diff --git a/files/en-us/web/api/document/pointerlockchange_event/index.html b/files/en-us/web/api/document/pointerlockchange_event/index.html index 9ded9c7a1673d7e..5cd9f189bdbb005 100644 --- a/files/en-us/web/api/document/pointerlockchange_event/index.html +++ b/files/en-us/web/api/document/pointerlockchange_event/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.pointerlockchange_event")}}

    See also

    diff --git a/files/en-us/web/api/document/pointerlockerror_event/index.html b/files/en-us/web/api/document/pointerlockerror_event/index.html index 81bb64f16a39802..87da3a2f24b4dae 100644 --- a/files/en-us/web/api/document/pointerlockerror_event/index.html +++ b/files/en-us/web/api/document/pointerlockerror_event/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.pointerlockerror_event")}}

    See also

    diff --git a/files/en-us/web/api/document/pointermove_event/index.html b/files/en-us/web/api/document/pointermove_event/index.html index 1bf8b7e100d2e18..fa70111697e89e7 100644 --- a/files/en-us/web/api/document/pointermove_event/index.html +++ b/files/en-us/web/api/document/pointermove_event/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.pointermove_event")}}

    See also

    diff --git a/files/en-us/web/api/document/pointerout_event/index.html b/files/en-us/web/api/document/pointerout_event/index.html index e5cf5e006544978..7f41b18132fca57 100644 --- a/files/en-us/web/api/document/pointerout_event/index.html +++ b/files/en-us/web/api/document/pointerout_event/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.pointerout_event")}}

    See also

    diff --git a/files/en-us/web/api/document/pointerover_event/index.html b/files/en-us/web/api/document/pointerover_event/index.html index a112bfdef3c8042..090741f8e7098d4 100644 --- a/files/en-us/web/api/document/pointerover_event/index.html +++ b/files/en-us/web/api/document/pointerover_event/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.pointerover_event")}}

    See also

    diff --git a/files/en-us/web/api/document/pointerup_event/index.html b/files/en-us/web/api/document/pointerup_event/index.html index 21c555136bbd123..39f579448f93b7e 100644 --- a/files/en-us/web/api/document/pointerup_event/index.html +++ b/files/en-us/web/api/document/pointerup_event/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.pointerup_event")}}

    See also

    diff --git a/files/en-us/web/api/document/popupnode/index.html b/files/en-us/web/api/document/popupnode/index.html index 71dd1f19f2e0dbe..3203825a997d1b4 100644 --- a/files/en-us/web/api/document/popupnode/index.html +++ b/files/en-us/web/api/document/popupnode/index.html @@ -34,8 +34,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.Document.popupNode")}}

    See also

    diff --git a/files/en-us/web/api/document/preferredstylesheetset/index.html b/files/en-us/web/api/document/preferredstylesheetset/index.html index 15b32df7d5748df..097baeeaa5e769a 100644 --- a/files/en-us/web/api/document/preferredstylesheetset/index.html +++ b/files/en-us/web/api/document/preferredstylesheetset/index.html @@ -34,8 +34,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.Document.preferredStyleSheetSet")}}

    See also

    diff --git a/files/en-us/web/api/document/querycommandenabled/index.html b/files/en-us/web/api/document/querycommandenabled/index.html index d04057d0dd3fbaa..53cebe9f98c6f57 100644 --- a/files/en-us/web/api/document/querycommandenabled/index.html +++ b/files/en-us/web/api/document/querycommandenabled/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.queryCommandEnabled")}}

    See also

    diff --git a/files/en-us/web/api/document/querycommandstate/index.html b/files/en-us/web/api/document/querycommandstate/index.html index 848ade2b77c2267..9d4f813cfbcd52a 100644 --- a/files/en-us/web/api/document/querycommandstate/index.html +++ b/files/en-us/web/api/document/querycommandstate/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.queryCommandState")}}

    See also

    diff --git a/files/en-us/web/api/document/querycommandsupported/index.html b/files/en-us/web/api/document/querycommandsupported/index.html index 1a5b997a867148f..a3e5f8ea05558ac 100644 --- a/files/en-us/web/api/document/querycommandsupported/index.html +++ b/files/en-us/web/api/document/querycommandsupported/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.Document.queryCommandSupported")}}

    diff --git a/files/en-us/web/api/document/queryselector/index.html b/files/en-us/web/api/document/queryselector/index.html index af8067aff445bc9..1b24c71de15d2ec 100644 --- a/files/en-us/web/api/document/queryselector/index.html +++ b/files/en-us/web/api/document/queryselector/index.html @@ -120,8 +120,6 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.querySelector")}}

    See also

    diff --git a/files/en-us/web/api/document/queryselectorall/index.html b/files/en-us/web/api/document/queryselectorall/index.html index bb74b93d6aa92b1..db507a731256e57 100644 --- a/files/en-us/web/api/document/queryselectorall/index.html +++ b/files/en-us/web/api/document/queryselectorall/index.html @@ -160,8 +160,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.querySelectorAll")}}

    See also

    diff --git a/files/en-us/web/api/document/readystate/index.html b/files/en-us/web/api/document/readystate/index.html index 5504dcee5ca7f85..b28a2a63e460db0 100644 --- a/files/en-us/web/api/document/readystate/index.html +++ b/files/en-us/web/api/document/readystate/index.html @@ -116,8 +116,6 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.readyState")}}

    See also

    diff --git a/files/en-us/web/api/document/readystatechange_event/index.html b/files/en-us/web/api/document/readystatechange_event/index.html index 9d4f3e3f55e95d0..a0ba6172b616af0 100644 --- a/files/en-us/web/api/document/readystatechange_event/index.html +++ b/files/en-us/web/api/document/readystatechange_event/index.html @@ -132,8 +132,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.readystatechange_event")}}

    See also

    diff --git a/files/en-us/web/api/document/referrer/index.html b/files/en-us/web/api/document/referrer/index.html index 5c77a55c7ff5582..a6e0d9fe9f9f4d5 100644 --- a/files/en-us/web/api/document/referrer/index.html +++ b/files/en-us/web/api/document/referrer/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.referrer")}}
    diff --git a/files/en-us/web/api/document/registerelement/index.html b/files/en-us/web/api/document/registerelement/index.html index 9102c532cbbdc6c..d3143e673492812 100644 --- a/files/en-us/web/api/document/registerelement/index.html +++ b/files/en-us/web/api/document/registerelement/index.html @@ -57,8 +57,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.Document.registerElement")}}

    See also

    diff --git a/files/en-us/web/api/document/releasecapture/index.html b/files/en-us/web/api/document/releasecapture/index.html index ad8979528848253..5079fc7eb14140a 100644 --- a/files/en-us/web/api/document/releasecapture/index.html +++ b/files/en-us/web/api/document/releasecapture/index.html @@ -28,8 +28,6 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.releaseCapture")}}

    See also

    diff --git a/files/en-us/web/api/document/requeststorageaccess/index.html b/files/en-us/web/api/document/requeststorageaccess/index.html index 81466ebd4d6ae0a..d428d2abadf0e28 100644 --- a/files/en-us/web/api/document/requeststorageaccess/index.html +++ b/files/en-us/web/api/document/requeststorageaccess/index.html @@ -119,8 +119,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.requestStorageAccess")}}

    See also

    diff --git a/files/en-us/web/api/document/scripts/index.html b/files/en-us/web/api/document/scripts/index.html index bc33aa3f5ddb631..77321155117b346 100644 --- a/files/en-us/web/api/document/scripts/index.html +++ b/files/en-us/web/api/document/scripts/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.scripts")}}
    diff --git a/files/en-us/web/api/document/scrollingelement/index.html b/files/en-us/web/api/document/scrollingelement/index.html index c028f3b18ca598a..e511039e1d988ff 100644 --- a/files/en-us/web/api/document/scrollingelement/index.html +++ b/files/en-us/web/api/document/scrollingelement/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.scrollingElement")}}

    diff --git a/files/en-us/web/api/document/selectedstylesheetset/index.html b/files/en-us/web/api/document/selectedstylesheetset/index.html index 83299cea6702866..6f206ef5047d839 100644 --- a/files/en-us/web/api/document/selectedstylesheetset/index.html +++ b/files/en-us/web/api/document/selectedstylesheetset/index.html @@ -35,8 +35,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.Document.selectedStyleSheetSet")}}

    See also

    diff --git a/files/en-us/web/api/document/stylesheetsets/index.html b/files/en-us/web/api/document/stylesheetsets/index.html index 7af978683d12de2..9527d0bdba527a4 100644 --- a/files/en-us/web/api/document/stylesheetsets/index.html +++ b/files/en-us/web/api/document/stylesheetsets/index.html @@ -42,8 +42,6 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.Document.styleSheetSets")}}

    See also

    diff --git a/files/en-us/web/api/document/timeline/index.html b/files/en-us/web/api/document/timeline/index.html index 21c5acb4737b9ca..26e341a609efe7f 100644 --- a/files/en-us/web/api/document/timeline/index.html +++ b/files/en-us/web/api/document/timeline/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.timeline")}}

    See also

    diff --git a/files/en-us/web/api/document/title/index.html b/files/en-us/web/api/document/title/index.html index 4299c5fbe0b0ad7..36b1aa35ebf5a71 100644 --- a/files/en-us/web/api/document/title/index.html +++ b/files/en-us/web/api/document/title/index.html @@ -74,6 +74,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.title")}}

    diff --git a/files/en-us/web/api/document/tooltipnode/index.html b/files/en-us/web/api/document/tooltipnode/index.html index e4a5950a15d8156..25f68119615d22e 100644 --- a/files/en-us/web/api/document/tooltipnode/index.html +++ b/files/en-us/web/api/document/tooltipnode/index.html @@ -26,6 +26,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.tooltipNode")}}

    diff --git a/files/en-us/web/api/document/touchcancel_event/index.html b/files/en-us/web/api/document/touchcancel_event/index.html index 235f04d66637485..fc12aab3189e185 100644 --- a/files/en-us/web/api/document/touchcancel_event/index.html +++ b/files/en-us/web/api/document/touchcancel_event/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.touchcancel_event")}}

    See also

    diff --git a/files/en-us/web/api/document/touchend_event/index.html b/files/en-us/web/api/document/touchend_event/index.html index 35a6c4f7151106d..83b943dd461192b 100644 --- a/files/en-us/web/api/document/touchend_event/index.html +++ b/files/en-us/web/api/document/touchend_event/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.touchend_event")}}

    See also

    diff --git a/files/en-us/web/api/document/touchmove_event/index.html b/files/en-us/web/api/document/touchmove_event/index.html index 2fe09b40b983432..ec5ce95e7436eb1 100644 --- a/files/en-us/web/api/document/touchmove_event/index.html +++ b/files/en-us/web/api/document/touchmove_event/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.touchmove_event")}}

    See also

    diff --git a/files/en-us/web/api/document/touchstart_event/index.html b/files/en-us/web/api/document/touchstart_event/index.html index 4faa9b883d7a4b1..7befee3af04a31d 100644 --- a/files/en-us/web/api/document/touchstart_event/index.html +++ b/files/en-us/web/api/document/touchstart_event/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.touchstart_event")}}

    See also

    diff --git a/files/en-us/web/api/document/transitioncancel_event/index.html b/files/en-us/web/api/document/transitioncancel_event/index.html index 71d0645c6e4f22d..37b94e3f8f918de 100644 --- a/files/en-us/web/api/document/transitioncancel_event/index.html +++ b/files/en-us/web/api/document/transitioncancel_event/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.transitioncancel_event")}}

    See also

    diff --git a/files/en-us/web/api/document/transitionend_event/index.html b/files/en-us/web/api/document/transitionend_event/index.html index 24fefaa030512b0..73d5e0a716fa962 100644 --- a/files/en-us/web/api/document/transitionend_event/index.html +++ b/files/en-us/web/api/document/transitionend_event/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.transitionend_event")}}

    See also

    diff --git a/files/en-us/web/api/document/transitionrun_event/index.html b/files/en-us/web/api/document/transitionrun_event/index.html index a6977b09a8f357a..77aa3542fc4690d 100644 --- a/files/en-us/web/api/document/transitionrun_event/index.html +++ b/files/en-us/web/api/document/transitionrun_event/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.transitionrun_event")}}

    See also

    diff --git a/files/en-us/web/api/document/transitionstart_event/index.html b/files/en-us/web/api/document/transitionstart_event/index.html index 7d4dea5452b5adc..e7cce9a816d4988 100644 --- a/files/en-us/web/api/document/transitionstart_event/index.html +++ b/files/en-us/web/api/document/transitionstart_event/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.transitionstart_event")}}

    See also

    diff --git a/files/en-us/web/api/document/url/index.html b/files/en-us/web/api/document/url/index.html index f81b5a213a3890e..b1138edf9abb8a9 100644 --- a/files/en-us/web/api/document/url/index.html +++ b/files/en-us/web/api/document/url/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.Document.URL")}}

    diff --git a/files/en-us/web/api/document/visibilitystate/index.html b/files/en-us/web/api/document/visibilitystate/index.html index af55cb6553a770f..db258bafa0e11d8 100644 --- a/files/en-us/web/api/document/visibilitystate/index.html +++ b/files/en-us/web/api/document/visibilitystate/index.html @@ -62,6 +62,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.visibilityState")}}

    diff --git a/files/en-us/web/api/document/vlinkcolor/index.html b/files/en-us/web/api/document/vlinkcolor/index.html index fe8da437be4cb47..d90d3ad852e8207 100644 --- a/files/en-us/web/api/document/vlinkcolor/index.html +++ b/files/en-us/web/api/document/vlinkcolor/index.html @@ -38,6 +38,4 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.Document.vlinkColor")}}

    diff --git a/files/en-us/web/api/document/width/index.html b/files/en-us/web/api/document/width/index.html index 559307276848b7f..328bb2932ddd690 100644 --- a/files/en-us/web/api/document/width/index.html +++ b/files/en-us/web/api/document/width/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.width")}}

    See also

    diff --git a/files/en-us/web/api/document/write/index.html b/files/en-us/web/api/document/write/index.html index 46024aaeb67aa5e..e90baa044f08271 100644 --- a/files/en-us/web/api/document/write/index.html +++ b/files/en-us/web/api/document/write/index.html @@ -99,8 +99,6 @@

    Specifications

    Browser compatibility

    - -
    {{Compat("api.Document.write")}}

    See also

    diff --git a/files/en-us/web/api/document/writeln/index.html b/files/en-us/web/api/document/writeln/index.html index 3f8b6220e205bf3..bd2b9977f3b1a55 100644 --- a/files/en-us/web/api/document/writeln/index.html +++ b/files/en-us/web/api/document/writeln/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.writeln")}}

    diff --git a/files/en-us/web/api/document/xmlencoding/index.html b/files/en-us/web/api/document/xmlencoding/index.html index 0234e022d82a8bb..b77d912e7201ad5 100644 --- a/files/en-us/web/api/document/xmlencoding/index.html +++ b/files/en-us/web/api/document/xmlencoding/index.html @@ -35,8 +35,6 @@

    Browser compatibility

     

    - -

    {{Compat("api.Document.xmlEncoding")}}

     

    diff --git a/files/en-us/web/api/document/xmlversion/index.html b/files/en-us/web/api/document/xmlversion/index.html index 92630d6379057e7..8d5f33f8ec40fc3 100644 --- a/files/en-us/web/api/document/xmlversion/index.html +++ b/files/en-us/web/api/document/xmlversion/index.html @@ -29,6 +29,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.xmlVersion")}}

    diff --git a/files/en-us/web/api/document_object_model/whitespace/index.html b/files/en-us/web/api/document_object_model/whitespace/index.html index 5813dc4f828cc88..b52193194e275a0 100644 --- a/files/en-us/web/api/document_object_model/whitespace/index.html +++ b/files/en-us/web/api/document_object_model/whitespace/index.html @@ -320,7 +320,6 @@

    Whitespace helper functions

    * spaces (and also some other characters). */ - /** * Determine whether a node's text content is entirely whitespace. * @@ -335,7 +334,6 @@

    Whitespace helper functions

    return !(/[^\t\n\r ]/.test(nod.textContent)); } - /** * Determine if a node should be ignored by the iterator functions. * diff --git a/files/en-us/web/api/documentfragment/documentfragment/index.html b/files/en-us/web/api/documentfragment/documentfragment/index.html index e6ca681a89bf1ce..96788bcbce4fb9f 100644 --- a/files/en-us/web/api/documentfragment/documentfragment/index.html +++ b/files/en-us/web/api/documentfragment/documentfragment/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentFragment.DocumentFragment")}}

    See also

    diff --git a/files/en-us/web/api/documentfragment/index.html b/files/en-us/web/api/documentfragment/index.html index 89d7609bdc50b29..582e41d74da3daf 100644 --- a/files/en-us/web/api/documentfragment/index.html +++ b/files/en-us/web/api/documentfragment/index.html @@ -125,8 +125,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentFragment")}}

    See also

    diff --git a/files/en-us/web/api/documentfragment/queryselector/index.html b/files/en-us/web/api/documentfragment/queryselector/index.html index 6b0aeaa7a917c20..bb4057dd114d53d 100644 --- a/files/en-us/web/api/documentfragment/queryselector/index.html +++ b/files/en-us/web/api/documentfragment/queryselector/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentFragment.querySelector")}}

    See also

    diff --git a/files/en-us/web/api/documentfragment/queryselectorall/index.html b/files/en-us/web/api/documentfragment/queryselectorall/index.html index 64c6474965bbae4..00aee3fb8b1b7dd 100644 --- a/files/en-us/web/api/documentfragment/queryselectorall/index.html +++ b/files/en-us/web/api/documentfragment/queryselectorall/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentFragment.querySelectorAll")}}

    See also

    diff --git a/files/en-us/web/api/documentorshadowroot/activeelement/index.html b/files/en-us/web/api/documentorshadowroot/activeelement/index.html index 356353b27dc3067..0b0842604a42594 100644 --- a/files/en-us/web/api/documentorshadowroot/activeelement/index.html +++ b/files/en-us/web/api/documentorshadowroot/activeelement/index.html @@ -89,6 +89,5 @@

    Browser compatibility

    -

    {{Compat("api.DocumentOrShadowRoot.activeElement")}}

    diff --git a/files/en-us/web/api/documentorshadowroot/caretpositionfrompoint/index.html b/files/en-us/web/api/documentorshadowroot/caretpositionfrompoint/index.html index e58cd1635d08fa0..84240ace6ed9ede 100644 --- a/files/en-us/web/api/documentorshadowroot/caretpositionfrompoint/index.html +++ b/files/en-us/web/api/documentorshadowroot/caretpositionfrompoint/index.html @@ -97,6 +97,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentOrShadowRoot.caretPositionFromPoint")}}

    diff --git a/files/en-us/web/api/documentorshadowroot/elementfrompoint/index.html b/files/en-us/web/api/documentorshadowroot/elementfrompoint/index.html index 2174de5ae2b628a..6b2ca8860dd7678 100644 --- a/files/en-us/web/api/documentorshadowroot/elementfrompoint/index.html +++ b/files/en-us/web/api/documentorshadowroot/elementfrompoint/index.html @@ -96,8 +96,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentOrShadowRoot.elementFromPoint")}}

    See also

    diff --git a/files/en-us/web/api/documentorshadowroot/elementsfrompoint/index.html b/files/en-us/web/api/documentorshadowroot/elementsfrompoint/index.html index 313f2486a511f3d..41ecc75dd09cc52 100644 --- a/files/en-us/web/api/documentorshadowroot/elementsfrompoint/index.html +++ b/files/en-us/web/api/documentorshadowroot/elementsfrompoint/index.html @@ -88,8 +88,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentOrShadowRoot.elementsFromPoint")}}

    See also

    diff --git a/files/en-us/web/api/documentorshadowroot/fullscreenelement/index.html b/files/en-us/web/api/documentorshadowroot/fullscreenelement/index.html index 1400544952df6c8..2bbfd10e6ca4055 100644 --- a/files/en-us/web/api/documentorshadowroot/fullscreenelement/index.html +++ b/files/en-us/web/api/documentorshadowroot/fullscreenelement/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentOrShadowRoot.fullscreenElement")}}

    See also

    diff --git a/files/en-us/web/api/documentorshadowroot/getanimations/index.html b/files/en-us/web/api/documentorshadowroot/getanimations/index.html index f2a743cdb194b7b..ee34779b7839acf 100644 --- a/files/en-us/web/api/documentorshadowroot/getanimations/index.html +++ b/files/en-us/web/api/documentorshadowroot/getanimations/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Document.getAnimations")}}

    See also

    diff --git a/files/en-us/web/api/documentorshadowroot/getselection/index.html b/files/en-us/web/api/documentorshadowroot/getselection/index.html index 2c92f7ac07d5e51..69515b821ad8593 100644 --- a/files/en-us/web/api/documentorshadowroot/getselection/index.html +++ b/files/en-us/web/api/documentorshadowroot/getselection/index.html @@ -81,6 +81,5 @@

    Browser Compatibility

    -

    {{Compat("api.DocumentOrShadowRoot.getSelection")}}

    diff --git a/files/en-us/web/api/documentorshadowroot/index.html b/files/en-us/web/api/documentorshadowroot/index.html index 23d0cbaf575a561..a0bf9ce980a4c40 100644 --- a/files/en-us/web/api/documentorshadowroot/index.html +++ b/files/en-us/web/api/documentorshadowroot/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentOrShadowRoot")}}

    [1] This interface's features are still implemented on the {{DOMxRef("Document")}} object.

    diff --git a/files/en-us/web/api/documentorshadowroot/pictureinpictureelement/index.html b/files/en-us/web/api/documentorshadowroot/pictureinpictureelement/index.html index 76a47e17dded06a..2ba4bc23bd9b18d 100644 --- a/files/en-us/web/api/documentorshadowroot/pictureinpictureelement/index.html +++ b/files/en-us/web/api/documentorshadowroot/pictureinpictureelement/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentOrShadowRoot.pictureInPictureElement")}}

    See also

    diff --git a/files/en-us/web/api/documentorshadowroot/pointerlockelement/index.html b/files/en-us/web/api/documentorshadowroot/pointerlockelement/index.html index 808b3a6f3deded8..8c3c00916d2f116 100644 --- a/files/en-us/web/api/documentorshadowroot/pointerlockelement/index.html +++ b/files/en-us/web/api/documentorshadowroot/pointerlockelement/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentOrShadowRoot.pointerLockElement")}}

    See also

    diff --git a/files/en-us/web/api/documentorshadowroot/stylesheets/index.html b/files/en-us/web/api/documentorshadowroot/stylesheets/index.html index 406a5f843f80bac..f1cb21ba60edd46 100644 --- a/files/en-us/web/api/documentorshadowroot/stylesheets/index.html +++ b/files/en-us/web/api/documentorshadowroot/stylesheets/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentOrShadowRoot.styleSheets")}}

    diff --git a/files/en-us/web/api/documenttimeline/documenttimeline/index.html b/files/en-us/web/api/documenttimeline/documenttimeline/index.html index 07a452b01fdd06a..ef820e0050a521b 100644 --- a/files/en-us/web/api/documenttimeline/documenttimeline/index.html +++ b/files/en-us/web/api/documenttimeline/documenttimeline/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentTimeline.DocumentTimeline")}}

    See also

    diff --git a/files/en-us/web/api/documenttimeline/index.html b/files/en-us/web/api/documenttimeline/index.html index 852bcd7a62cd654..4d387fc7bf7b96d 100644 --- a/files/en-us/web/api/documenttimeline/index.html +++ b/files/en-us/web/api/documenttimeline/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentTimeline")}}

    See also

    diff --git a/files/en-us/web/api/documenttype/index.html b/files/en-us/web/api/documenttype/index.html index 032a41c2ef2c32c..b2ae854a41a75fb 100644 --- a/files/en-us/web/api/documenttype/index.html +++ b/files/en-us/web/api/documenttype/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DocumentType")}}

    See also

    diff --git a/files/en-us/web/api/domerror/index.html b/files/en-us/web/api/domerror/index.html index 19152c1325bda46..fe90b153d31977e 100644 --- a/files/en-us/web/api/domerror/index.html +++ b/files/en-us/web/api/domerror/index.html @@ -121,8 +121,6 @@

    Error types

    Browser compatibility

    - -

    {{Compat("api.DOMError")}}

    See also

    diff --git a/files/en-us/web/api/domexception/code/index.html b/files/en-us/web/api/domexception/code/index.html index 9a15d44a2464104..c23bbefad61a5ec 100644 --- a/files/en-us/web/api/domexception/code/index.html +++ b/files/en-us/web/api/domexception/code/index.html @@ -17,7 +17,6 @@

    Syntax

    var domExceptionCode = domExceptionInstance.code;
     
    -

    Value

    A short number.

    @@ -41,6 +40,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.DOMException.code")}}

    diff --git a/files/en-us/web/api/domexception/domexception/index.html b/files/en-us/web/api/domexception/domexception/index.html index 6cebb97a467d671..2f15e28a48a5017 100644 --- a/files/en-us/web/api/domexception/domexception/index.html +++ b/files/en-us/web/api/domexception/domexception/index.html @@ -17,7 +17,6 @@

    Syntax

    var domException = new DOMException(message); var domException = new DOMException(message, name); -

    Parameters

    @@ -55,6 +54,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.DOMException.DOMException")}}

    diff --git a/files/en-us/web/api/domexception/index.html b/files/en-us/web/api/domexception/index.html index 0411b1880beff0e..94111e2116e7f99 100644 --- a/files/en-us/web/api/domexception/index.html +++ b/files/en-us/web/api/domexception/index.html @@ -126,8 +126,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMException")}}

    See also

    diff --git a/files/en-us/web/api/domexception/message/index.html b/files/en-us/web/api/domexception/message/index.html index 156037496196c55..930d956c6fffd68 100644 --- a/files/en-us/web/api/domexception/message/index.html +++ b/files/en-us/web/api/domexception/message/index.html @@ -17,7 +17,6 @@

    Syntax

    var domExceptionMessage = domExceptionInstance.message;
     
    -

    Value

    A {{domxref("DOMString")}}.

    @@ -41,6 +40,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.DOMException.message")}}

    diff --git a/files/en-us/web/api/domexception/name/index.html b/files/en-us/web/api/domexception/name/index.html index 29ebf16e91301c2..2be83577662d4d4 100644 --- a/files/en-us/web/api/domexception/name/index.html +++ b/files/en-us/web/api/domexception/name/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMException.name")}}

    diff --git a/files/en-us/web/api/domhighrestimestamp/index.html b/files/en-us/web/api/domhighrestimestamp/index.html index 3baa1114e931cac..11ac4d560e6627f 100644 --- a/files/en-us/web/api/domhighrestimestamp/index.html +++ b/files/en-us/web/api/domhighrestimestamp/index.html @@ -32,7 +32,6 @@

    Reduced time precision

    // 1519211811670 // ... - // reduced time precision with `privacy.resistFingerprinting` enabled event.timeStamp; // 1519129853500 @@ -116,7 +115,6 @@

    Browser compatibility

    -

    {{Compat("api.DOMHighResTimestamp")}}

    diff --git a/files/en-us/web/api/domimplementation/createdocument/index.html b/files/en-us/web/api/domimplementation/createdocument/index.html index c2de1d0e1cfcb8b..222460715a36a0b 100644 --- a/files/en-us/web/api/domimplementation/createdocument/index.html +++ b/files/en-us/web/api/domimplementation/createdocument/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMImplementation.createDocument")}}

    See also

    diff --git a/files/en-us/web/api/domimplementation/createdocumenttype/index.html b/files/en-us/web/api/domimplementation/createdocumenttype/index.html index 9744f0af8a9d793..b038606c9068ae7 100644 --- a/files/en-us/web/api/domimplementation/createdocumenttype/index.html +++ b/files/en-us/web/api/domimplementation/createdocumenttype/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMImplementation.createDocumentType")}}

    See also

    diff --git a/files/en-us/web/api/domimplementation/createhtmldocument/index.html b/files/en-us/web/api/domimplementation/createhtmldocument/index.html index bb8cba0ac5b2e0f..f39a0a87aed0404 100644 --- a/files/en-us/web/api/domimplementation/createhtmldocument/index.html +++ b/files/en-us/web/api/domimplementation/createhtmldocument/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMImplementation.createHTMLDocument")}}

    See also

    diff --git a/files/en-us/web/api/domimplementation/hasfeature/index.html b/files/en-us/web/api/domimplementation/hasfeature/index.html index e9132d1f588058d..acd3d5862bc1287 100644 --- a/files/en-us/web/api/domimplementation/hasfeature/index.html +++ b/files/en-us/web/api/domimplementation/hasfeature/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMImplementation.hasFeature")}}

    See also

    diff --git a/files/en-us/web/api/domimplementation/index.html b/files/en-us/web/api/domimplementation/index.html index 36536fa25da7445..bfc3a9b51702b6c 100644 --- a/files/en-us/web/api/domimplementation/index.html +++ b/files/en-us/web/api/domimplementation/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMImplementation")}}

    See also

    diff --git a/files/en-us/web/api/dommatrix/dommatrix/index.html b/files/en-us/web/api/dommatrix/dommatrix/index.html index 9be95ca5aea6277..c6c8fcf630837f3 100644 --- a/files/en-us/web/api/dommatrix/dommatrix/index.html +++ b/files/en-us/web/api/dommatrix/dommatrix/index.html @@ -65,6 +65,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMMatrix.DOMMatrix")}}

    diff --git a/files/en-us/web/api/dommatrix/index.html b/files/en-us/web/api/dommatrix/index.html index d9ad7189e0368c7..eb0e38f0efe2a39 100644 --- a/files/en-us/web/api/dommatrix/index.html +++ b/files/en-us/web/api/dommatrix/index.html @@ -160,8 +160,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMMatrix")}}

    {{Compat("api.WebKitCSSMatrix")}}

    diff --git a/files/en-us/web/api/dommatrixreadonly/dommatrixreadonly/index.html b/files/en-us/web/api/dommatrixreadonly/dommatrixreadonly/index.html index d1bb8ae0d2be275..1421184a8d3fcb5 100644 --- a/files/en-us/web/api/dommatrixreadonly/dommatrixreadonly/index.html +++ b/files/en-us/web/api/dommatrixreadonly/dommatrixreadonly/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMMatrixReadOnly.DOMMatrixReadOnly")}}

    diff --git a/files/en-us/web/api/dommatrixreadonly/flipx/index.html b/files/en-us/web/api/dommatrixreadonly/flipx/index.html index d83921129b3690f..25cec6f8c5403e0 100644 --- a/files/en-us/web/api/dommatrixreadonly/flipx/index.html +++ b/files/en-us/web/api/dommatrixreadonly/flipx/index.html @@ -65,6 +65,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMMatrixReadOnly.flipX")}}

    diff --git a/files/en-us/web/api/dommatrixreadonly/index.html b/files/en-us/web/api/dommatrixreadonly/index.html index d6509779c983f27..7af58569b853a6f 100644 --- a/files/en-us/web/api/dommatrixreadonly/index.html +++ b/files/en-us/web/api/dommatrixreadonly/index.html @@ -168,8 +168,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMMatrixReadOnly")}}

    See also

    diff --git a/files/en-us/web/api/dommatrixreadonly/scale/index.html b/files/en-us/web/api/dommatrixreadonly/scale/index.html index 40e58e7474d3d8a..828c2e420980ebc 100644 --- a/files/en-us/web/api/dommatrixreadonly/scale/index.html +++ b/files/en-us/web/api/dommatrixreadonly/scale/index.html @@ -109,7 +109,5 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMMatrixReadOnly.scale")}}

    diff --git a/files/en-us/web/api/dommatrixreadonly/translate/index.html b/files/en-us/web/api/dommatrixreadonly/translate/index.html index 46fdede90528e32..ab6659959c64dbc 100644 --- a/files/en-us/web/api/dommatrixreadonly/translate/index.html +++ b/files/en-us/web/api/dommatrixreadonly/translate/index.html @@ -78,6 +78,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMMatrixReadOnly.translate")}}

    diff --git a/files/en-us/web/api/domparser/domparser/index.html b/files/en-us/web/api/domparser/domparser/index.html index ca4179aed111f80..3cbb89bee979601 100644 --- a/files/en-us/web/api/domparser/domparser/index.html +++ b/files/en-us/web/api/domparser/domparser/index.html @@ -24,6 +24,4 @@

    Return Value

    Browser compatibility

    - -

    {{Compat("api.DOMParser.DOMParser")}}

    diff --git a/files/en-us/web/api/domparser/index.html b/files/en-us/web/api/domparser/index.html index 40f37b9f851b3d7..cff81de4810f6de 100644 --- a/files/en-us/web/api/domparser/index.html +++ b/files/en-us/web/api/domparser/index.html @@ -199,8 +199,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMParser", 3)}}

    See also

    diff --git a/files/en-us/web/api/dompoint/dompoint.frompoint()/index.html b/files/en-us/web/api/dompoint/dompoint.frompoint()/index.html index 95102ab341ec5d5..ccd2e52cde28cda 100644 --- a/files/en-us/web/api/dompoint/dompoint.frompoint()/index.html +++ b/files/en-us/web/api/dompoint/dompoint.frompoint()/index.html @@ -71,6 +71,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly.fromPoint")}}

    diff --git a/files/en-us/web/api/dompoint/dompoint/index.html b/files/en-us/web/api/dompoint/dompoint/index.html index 1380a8421781c92..4e56942691b90fb 100644 --- a/files/en-us/web/api/dompoint/dompoint/index.html +++ b/files/en-us/web/api/dompoint/dompoint/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPoint.DOMPoint")}}

    See also

    diff --git a/files/en-us/web/api/dompoint/index.html b/files/en-us/web/api/dompoint/index.html index f315875fd424d04..edfe0f41305b38b 100644 --- a/files/en-us/web/api/dompoint/index.html +++ b/files/en-us/web/api/dompoint/index.html @@ -97,8 +97,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPoint")}}

    See also

    diff --git a/files/en-us/web/api/dompoint/w/index.html b/files/en-us/web/api/dompoint/w/index.html index 27cd40f42ee1121..39dfad7c86007cb 100644 --- a/files/en-us/web/api/dompoint/w/index.html +++ b/files/en-us/web/api/dompoint/w/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly.w")}}

    See also

    diff --git a/files/en-us/web/api/dompoint/x/index.html b/files/en-us/web/api/dompoint/x/index.html index 2fe2defd5871843..c79082ffd8a12b9 100644 --- a/files/en-us/web/api/dompoint/x/index.html +++ b/files/en-us/web/api/dompoint/x/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly.x")}}

    See also

    diff --git a/files/en-us/web/api/dompoint/y/index.html b/files/en-us/web/api/dompoint/y/index.html index d77113aad8c6ac8..157025f01738ac5 100644 --- a/files/en-us/web/api/dompoint/y/index.html +++ b/files/en-us/web/api/dompoint/y/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly.y")}}

    See also

    diff --git a/files/en-us/web/api/dompoint/z/index.html b/files/en-us/web/api/dompoint/z/index.html index a863f9c8f848b91..880ace859c62471 100644 --- a/files/en-us/web/api/dompoint/z/index.html +++ b/files/en-us/web/api/dompoint/z/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly.z")}}

    See also

    diff --git a/files/en-us/web/api/dompointinit/index.html b/files/en-us/web/api/dompointinit/index.html index 123d81763f15492..36f3f64ba3861e1 100644 --- a/files/en-us/web/api/dompointinit/index.html +++ b/files/en-us/web/api/dompointinit/index.html @@ -65,6 +65,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointInit")}}

    diff --git a/files/en-us/web/api/dompointinit/w/index.html b/files/en-us/web/api/dompointinit/w/index.html index 8a1a843f28ae94c..86a7efd5ac2760a 100644 --- a/files/en-us/web/api/dompointinit/w/index.html +++ b/files/en-us/web/api/dompointinit/w/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointInit.w")}}

    diff --git a/files/en-us/web/api/dompointinit/x/index.html b/files/en-us/web/api/dompointinit/x/index.html index f71ed063194535e..536549ef423e1a6 100644 --- a/files/en-us/web/api/dompointinit/x/index.html +++ b/files/en-us/web/api/dompointinit/x/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointInit.x")}}

    diff --git a/files/en-us/web/api/dompointinit/y/index.html b/files/en-us/web/api/dompointinit/y/index.html index 0e4b60d9548c745..751e84a3c2e115d 100644 --- a/files/en-us/web/api/dompointinit/y/index.html +++ b/files/en-us/web/api/dompointinit/y/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointInit.y")}}

    diff --git a/files/en-us/web/api/dompointinit/z/index.html b/files/en-us/web/api/dompointinit/z/index.html index 06230f7e463e0a8..315de1603596dcb 100644 --- a/files/en-us/web/api/dompointinit/z/index.html +++ b/files/en-us/web/api/dompointinit/z/index.html @@ -63,6 +63,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointInit.z")}}

    diff --git a/files/en-us/web/api/dompointreadonly/dompointreadonly/index.html b/files/en-us/web/api/dompointreadonly/dompointreadonly/index.html index a98d364af553a24..2ccf980523fd94a 100644 --- a/files/en-us/web/api/dompointreadonly/dompointreadonly/index.html +++ b/files/en-us/web/api/dompointreadonly/dompointreadonly/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly.DOMPointReadOnly")}}

     

    diff --git a/files/en-us/web/api/dompointreadonly/frompoint/index.html b/files/en-us/web/api/dompointreadonly/frompoint/index.html index ec47067f2c72a74..29a5bc7f6f13824 100644 --- a/files/en-us/web/api/dompointreadonly/frompoint/index.html +++ b/files/en-us/web/api/dompointreadonly/frompoint/index.html @@ -72,6 +72,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly.fromPoint")}}

    diff --git a/files/en-us/web/api/dompointreadonly/index.html b/files/en-us/web/api/dompointreadonly/index.html index 5ed0ea5875cb618..e0252685b434be2 100644 --- a/files/en-us/web/api/dompointreadonly/index.html +++ b/files/en-us/web/api/dompointreadonly/index.html @@ -70,7 +70,6 @@

    Methods

    Returns a JSON representation of the DOMPointReadOnly object.
    -

    Specifications

    @@ -92,8 +91,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly")}}

    See also

    diff --git a/files/en-us/web/api/dompointreadonly/tojson/index.html b/files/en-us/web/api/dompointreadonly/tojson/index.html index 6f57b2047d0dd42..f969e410be4a1b5 100644 --- a/files/en-us/web/api/dompointreadonly/tojson/index.html +++ b/files/en-us/web/api/dompointreadonly/tojson/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly.toJSON")}}

    diff --git a/files/en-us/web/api/dompointreadonly/w/index.html b/files/en-us/web/api/dompointreadonly/w/index.html index 45f8e87be332aaf..1d3ee27760b1c6a 100644 --- a/files/en-us/web/api/dompointreadonly/w/index.html +++ b/files/en-us/web/api/dompointreadonly/w/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly.w")}}

    See also

    diff --git a/files/en-us/web/api/dompointreadonly/x/index.html b/files/en-us/web/api/dompointreadonly/x/index.html index cfd2f2d65cf851c..d6bf4554b2d20e9 100644 --- a/files/en-us/web/api/dompointreadonly/x/index.html +++ b/files/en-us/web/api/dompointreadonly/x/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly.x")}}

    See also

    diff --git a/files/en-us/web/api/dompointreadonly/y/index.html b/files/en-us/web/api/dompointreadonly/y/index.html index 06d3ddd85c15ffb..13b3abffbde487a 100644 --- a/files/en-us/web/api/dompointreadonly/y/index.html +++ b/files/en-us/web/api/dompointreadonly/y/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly.y")}}

    See also

    diff --git a/files/en-us/web/api/dompointreadonly/z/index.html b/files/en-us/web/api/dompointreadonly/z/index.html index 8041f94c5eaf5d6..f7cdbaf962390f0 100644 --- a/files/en-us/web/api/dompointreadonly/z/index.html +++ b/files/en-us/web/api/dompointreadonly/z/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMPointReadOnly.z")}}

    See also

    diff --git a/files/en-us/web/api/domquad/index.html b/files/en-us/web/api/domquad/index.html index 883c3842a075bd5..e6d38055ea87727 100644 --- a/files/en-us/web/api/domquad/index.html +++ b/files/en-us/web/api/domquad/index.html @@ -61,6 +61,5 @@

    Browser compatibility

    -

    {{Compat("api.DOMQuad")}}

    diff --git a/files/en-us/web/api/domrect/domrect/index.html b/files/en-us/web/api/domrect/domrect/index.html index 42f779f42075f8b..7725eb211b29491 100644 --- a/files/en-us/web/api/domrect/domrect/index.html +++ b/files/en-us/web/api/domrect/domrect/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMRect.DOMRect")}}

    See also

    diff --git a/files/en-us/web/api/domrect/index.html b/files/en-us/web/api/domrect/index.html index f1ecce9a190d96d..011b2d8f5b1f559 100644 --- a/files/en-us/web/api/domrect/index.html +++ b/files/en-us/web/api/domrect/index.html @@ -31,7 +31,6 @@

    Constructor

    Properties

    -

    DOMRect inherits properties from its parent, {{domxref("DOMRectReadOnly")}}. The difference is that they are not read-only anymore.

    @@ -84,8 +83,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMRect")}}

    See also

    diff --git a/files/en-us/web/api/domrectreadonly/bottom/index.html b/files/en-us/web/api/domrectreadonly/bottom/index.html index da92a1094a24860..9a15fe023b8dd09 100644 --- a/files/en-us/web/api/domrectreadonly/bottom/index.html +++ b/files/en-us/web/api/domrectreadonly/bottom/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.DOMRectReadOnly.bottom")}}

    diff --git a/files/en-us/web/api/domrectreadonly/domrectreadonly/index.html b/files/en-us/web/api/domrectreadonly/domrectreadonly/index.html index 262fcc9d5fb9d5c..2d896d625f65d4c 100644 --- a/files/en-us/web/api/domrectreadonly/domrectreadonly/index.html +++ b/files/en-us/web/api/domrectreadonly/domrectreadonly/index.html @@ -64,7 +64,6 @@

    Browser compatibility

    -

    {{Compat("api.DOMRectReadOnly.DOMRectReadOnly")}}

    diff --git a/files/en-us/web/api/domrectreadonly/fromrect/index.html b/files/en-us/web/api/domrectreadonly/fromrect/index.html index 64abf4b61db7409..66db4dd7cb63961 100644 --- a/files/en-us/web/api/domrectreadonly/fromrect/index.html +++ b/files/en-us/web/api/domrectreadonly/fromrect/index.html @@ -60,6 +60,5 @@

    Browser Compatibility

    -

    {{Compat("api.DOMRectReadOnly.fromRect")}}

    diff --git a/files/en-us/web/api/domrectreadonly/height/index.html b/files/en-us/web/api/domrectreadonly/height/index.html index 47e270c0146cb0e..b1c94eb405daad6 100644 --- a/files/en-us/web/api/domrectreadonly/height/index.html +++ b/files/en-us/web/api/domrectreadonly/height/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.DOMRectReadOnly.height")}}

    diff --git a/files/en-us/web/api/domrectreadonly/index.html b/files/en-us/web/api/domrectreadonly/index.html index 06e5daeade0eeeb..97e6315ed301b62 100644 --- a/files/en-us/web/api/domrectreadonly/index.html +++ b/files/en-us/web/api/domrectreadonly/index.html @@ -25,7 +25,6 @@

    Constructor

    Properties

    -
    {{domxref("DOMRectReadOnly.x")}} {{readonlyInline}}
    The x coordinate of the DOMRect's origin.
    @@ -75,7 +74,6 @@

    Browser compatibility

    -

    {{Compat("api.DOMRectReadOnly")}}

    diff --git a/files/en-us/web/api/domrectreadonly/left/index.html b/files/en-us/web/api/domrectreadonly/left/index.html index 159331c287b9472..15aaabe3b541688 100644 --- a/files/en-us/web/api/domrectreadonly/left/index.html +++ b/files/en-us/web/api/domrectreadonly/left/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.DOMRectReadOnly.left")}}

    diff --git a/files/en-us/web/api/domrectreadonly/right/index.html b/files/en-us/web/api/domrectreadonly/right/index.html index 97caabf12ffc99f..6972ccb7cc8ac10 100644 --- a/files/en-us/web/api/domrectreadonly/right/index.html +++ b/files/en-us/web/api/domrectreadonly/right/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.DOMRectReadOnly.right")}}

    diff --git a/files/en-us/web/api/domrectreadonly/top/index.html b/files/en-us/web/api/domrectreadonly/top/index.html index 1362f5ee08e7cf3..ead344fdb4ff7d1 100644 --- a/files/en-us/web/api/domrectreadonly/top/index.html +++ b/files/en-us/web/api/domrectreadonly/top/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.DOMRectReadOnly.top")}}

    diff --git a/files/en-us/web/api/domrectreadonly/width/index.html b/files/en-us/web/api/domrectreadonly/width/index.html index 75ada3c29579dcb..6ef4c856fd998e8 100644 --- a/files/en-us/web/api/domrectreadonly/width/index.html +++ b/files/en-us/web/api/domrectreadonly/width/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.DOMRectReadOnly.width")}}

    diff --git a/files/en-us/web/api/domrectreadonly/x/index.html b/files/en-us/web/api/domrectreadonly/x/index.html index 45c7c324498a6cb..5d08744576d4850 100644 --- a/files/en-us/web/api/domrectreadonly/x/index.html +++ b/files/en-us/web/api/domrectreadonly/x/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.DOMRectReadOnly.x")}}

    diff --git a/files/en-us/web/api/domrectreadonly/y/index.html b/files/en-us/web/api/domrectreadonly/y/index.html index 13243cc156de37f..07c19827b431f60 100644 --- a/files/en-us/web/api/domrectreadonly/y/index.html +++ b/files/en-us/web/api/domrectreadonly/y/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.DOMRectReadOnly.y")}}

    diff --git a/files/en-us/web/api/domstringlist/index.html b/files/en-us/web/api/domstringlist/index.html index 031d0074015f970..556f31ee41b9ac5 100644 --- a/files/en-us/web/api/domstringlist/index.html +++ b/files/en-us/web/api/domstringlist/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMStringList")}}

    diff --git a/files/en-us/web/api/domstringmap/index.html b/files/en-us/web/api/domstringmap/index.html index 0cba83537793862..654d6aa4b21ffbb 100644 --- a/files/en-us/web/api/domstringmap/index.html +++ b/files/en-us/web/api/domstringmap/index.html @@ -35,8 +35,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMStringMap")}}

    See also

    diff --git a/files/en-us/web/api/domtokenlist/add/index.html b/files/en-us/web/api/domtokenlist/add/index.html index 5b5014eaccb434c..be933bbd14cc0f6 100644 --- a/files/en-us/web/api/domtokenlist/add/index.html +++ b/files/en-us/web/api/domtokenlist/add/index.html @@ -76,6 +76,5 @@

    Browser compatibility

    -

    {{Compat("api.DOMTokenList.add")}}

    diff --git a/files/en-us/web/api/domtokenlist/contains/index.html b/files/en-us/web/api/domtokenlist/contains/index.html index 21e40d7e213605b..c54c8b9cf31b466 100644 --- a/files/en-us/web/api/domtokenlist/contains/index.html +++ b/files/en-us/web/api/domtokenlist/contains/index.html @@ -74,6 +74,5 @@

    Browser compatibility

    -

    {{Compat("api.DOMTokenList.contains")}}

    diff --git a/files/en-us/web/api/domtokenlist/entries/index.html b/files/en-us/web/api/domtokenlist/entries/index.html index 3909edc03312441..f6fd11db6ea39f0 100644 --- a/files/en-us/web/api/domtokenlist/entries/index.html +++ b/files/en-us/web/api/domtokenlist/entries/index.html @@ -66,7 +66,6 @@

    Browser compatibility

    -

    {{Compat("api.DOMTokenList.entries")}}

    diff --git a/files/en-us/web/api/domtokenlist/foreach/index.html b/files/en-us/web/api/domtokenlist/foreach/index.html index 536c0ddb8267d8f..58aa9a147191df3 100644 --- a/files/en-us/web/api/domtokenlist/foreach/index.html +++ b/files/en-us/web/api/domtokenlist/foreach/index.html @@ -103,7 +103,6 @@

    Browser Compatibility

    -

    {{Compat("api.DOMTokenList.forEach")}}

    diff --git a/files/en-us/web/api/domtokenlist/index.html b/files/en-us/web/api/domtokenlist/index.html index 58fca3af67a76da..6f5d0183102515e 100644 --- a/files/en-us/web/api/domtokenlist/index.html +++ b/files/en-us/web/api/domtokenlist/index.html @@ -103,6 +103,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMTokenList")}}

    diff --git a/files/en-us/web/api/domtokenlist/item/index.html b/files/en-us/web/api/domtokenlist/item/index.html index d27e27709bfc746..433b95030acbe78 100644 --- a/files/en-us/web/api/domtokenlist/item/index.html +++ b/files/en-us/web/api/domtokenlist/item/index.html @@ -70,6 +70,5 @@

    Browser compatibility

    -

    {{Compat("api.DOMTokenList.item")}}

    diff --git a/files/en-us/web/api/domtokenlist/keys/index.html b/files/en-us/web/api/domtokenlist/keys/index.html index 7f7113d6db3bd6a..dd008490f9a7de1 100644 --- a/files/en-us/web/api/domtokenlist/keys/index.html +++ b/files/en-us/web/api/domtokenlist/keys/index.html @@ -69,6 +69,5 @@

    Browser compatibility

    -

    {{Compat("api.DOMTokenList.keys")}}

    diff --git a/files/en-us/web/api/domtokenlist/length/index.html b/files/en-us/web/api/domtokenlist/length/index.html index 452f3fbb46f4501..b994461bf39ad96 100644 --- a/files/en-us/web/api/domtokenlist/length/index.html +++ b/files/en-us/web/api/domtokenlist/length/index.html @@ -65,6 +65,5 @@

    Browser compatibility

    -

    {{Compat("api.DOMTokenList.length")}}

    diff --git a/files/en-us/web/api/domtokenlist/remove/index.html b/files/en-us/web/api/domtokenlist/remove/index.html index 041c851e00bf6dc..7c92c9f5439c52a 100644 --- a/files/en-us/web/api/domtokenlist/remove/index.html +++ b/files/en-us/web/api/domtokenlist/remove/index.html @@ -79,6 +79,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DOMTokenList.remove")}}

    diff --git a/files/en-us/web/api/domtokenlist/replace/index.html b/files/en-us/web/api/domtokenlist/replace/index.html index 546d333189451d3..343b404169d6c6d 100644 --- a/files/en-us/web/api/domtokenlist/replace/index.html +++ b/files/en-us/web/api/domtokenlist/replace/index.html @@ -95,6 +95,5 @@

    Browser compatibility

    -

    {{Compat("api.DOMTokenList.replace")}}

    diff --git a/files/en-us/web/api/domtokenlist/supports/index.html b/files/en-us/web/api/domtokenlist/supports/index.html index 7afe09d3d799fc4..496073a0e971438 100644 --- a/files/en-us/web/api/domtokenlist/supports/index.html +++ b/files/en-us/web/api/domtokenlist/supports/index.html @@ -66,6 +66,5 @@

    Browser compatibility

    -

    {{Compat("api.DOMTokenList.supports")}}

    diff --git a/files/en-us/web/api/domtokenlist/toggle/index.html b/files/en-us/web/api/domtokenlist/toggle/index.html index e880e81cb71d780..57967f5a7cdcf3e 100644 --- a/files/en-us/web/api/domtokenlist/toggle/index.html +++ b/files/en-us/web/api/domtokenlist/toggle/index.html @@ -81,6 +81,5 @@

    Browser compatibility

    -

    {{Compat("api.DOMTokenList.toggle")}}

    diff --git a/files/en-us/web/api/domtokenlist/value/index.html b/files/en-us/web/api/domtokenlist/value/index.html index bfd0614896c7a02..ed92181e73deea4 100644 --- a/files/en-us/web/api/domtokenlist/value/index.html +++ b/files/en-us/web/api/domtokenlist/value/index.html @@ -63,6 +63,5 @@

    Browser compatibility

    -

    {{Compat("api.DOMTokenList.value")}}

    diff --git a/files/en-us/web/api/domtokenlist/values/index.html b/files/en-us/web/api/domtokenlist/values/index.html index 6138709e8d97b34..754353fa0c645d9 100644 --- a/files/en-us/web/api/domtokenlist/values/index.html +++ b/files/en-us/web/api/domtokenlist/values/index.html @@ -69,6 +69,5 @@

    Browser compatibility

    -

    {{Compat("api.DOMTokenList.values")}}

    diff --git a/files/en-us/web/api/doublerange/index.html b/files/en-us/web/api/doublerange/index.html index ce86f670e3514f5..68422b20b551a9e 100644 --- a/files/en-us/web/api/doublerange/index.html +++ b/files/en-us/web/api/doublerange/index.html @@ -49,7 +49,6 @@

    Browser compatibility

    -

    {{Compat("api.DoubleRange")}}

    diff --git a/files/en-us/web/api/dragevent/datatransfer/index.html b/files/en-us/web/api/dragevent/datatransfer/index.html index 44e6a2f26dabede..be65799964b2ef4 100644 --- a/files/en-us/web/api/dragevent/datatransfer/index.html +++ b/files/en-us/web/api/dragevent/datatransfer/index.html @@ -66,6 +66,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DragEvent.dataTransfer")}}

    diff --git a/files/en-us/web/api/dragevent/dragevent/index.html b/files/en-us/web/api/dragevent/dragevent/index.html index ae7a955ae5b066c..498669ec174b46c 100644 --- a/files/en-us/web/api/dragevent/dragevent/index.html +++ b/files/en-us/web/api/dragevent/dragevent/index.html @@ -60,6 +60,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DragEvent.DragEvent")}}

    diff --git a/files/en-us/web/api/dragevent/index.html b/files/en-us/web/api/dragevent/index.html index 93ea88e67ffaa96..c44fa432b7c09f9 100644 --- a/files/en-us/web/api/dragevent/index.html +++ b/files/en-us/web/api/dragevent/index.html @@ -99,8 +99,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DragEvent")}}

    See also

    diff --git a/files/en-us/web/api/dynamicscompressornode/attack/index.html b/files/en-us/web/api/dynamicscompressornode/attack/index.html index 038e7bdb3b78dd6..5b772d58b79ccad 100644 --- a/files/en-us/web/api/dynamicscompressornode/attack/index.html +++ b/files/en-us/web/api/dynamicscompressornode/attack/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.DynamicsCompressorNode.attack")}}

    diff --git a/files/en-us/web/api/dynamicscompressornode/dynamicscompressornode/index.html b/files/en-us/web/api/dynamicscompressornode/dynamicscompressornode/index.html index 89ad99f9f2f8a16..1a74efb403e74b4 100644 --- a/files/en-us/web/api/dynamicscompressornode/dynamicscompressornode/index.html +++ b/files/en-us/web/api/dynamicscompressornode/dynamicscompressornode/index.html @@ -54,6 +54,5 @@

    Browser Compatibility

    -

    {{Compat("api.DynamicsCompressorNode.DynamicsCompressorNode")}}

    diff --git a/files/en-us/web/api/dynamicscompressornode/index.html b/files/en-us/web/api/dynamicscompressornode/index.html index 7d654f9bd941419..74d40848c710814 100644 --- a/files/en-us/web/api/dynamicscompressornode/index.html +++ b/files/en-us/web/api/dynamicscompressornode/index.html @@ -96,7 +96,6 @@

    Browser compatibility

    -

    {{Compat("api.DynamicsCompressorNode")}}

    diff --git a/files/en-us/web/api/dynamicscompressornode/knee/index.html b/files/en-us/web/api/dynamicscompressornode/knee/index.html index 2d9c1d7691d6f35..e23ece34e230761 100644 --- a/files/en-us/web/api/dynamicscompressornode/knee/index.html +++ b/files/en-us/web/api/dynamicscompressornode/knee/index.html @@ -60,7 +60,6 @@

    Browser compatibility

    -

    {{Compat("api.DynamicsCompressorNode.knee")}}

    diff --git a/files/en-us/web/api/dynamicscompressornode/ratio/index.html b/files/en-us/web/api/dynamicscompressornode/ratio/index.html index 1cd388e29e9c52d..76b85b64f8044a8 100644 --- a/files/en-us/web/api/dynamicscompressornode/ratio/index.html +++ b/files/en-us/web/api/dynamicscompressornode/ratio/index.html @@ -59,7 +59,6 @@

    Browser compatibility

    -

    {{Compat("api.DynamicsCompressorNode.ratio")}}

    diff --git a/files/en-us/web/api/dynamicscompressornode/reduction/index.html b/files/en-us/web/api/dynamicscompressornode/reduction/index.html index 1124671abcfe80b..e01889db4f3b578 100644 --- a/files/en-us/web/api/dynamicscompressornode/reduction/index.html +++ b/files/en-us/web/api/dynamicscompressornode/reduction/index.html @@ -52,7 +52,6 @@

    Browser compatibility

    -

    {{Compat("api.DynamicsCompressorNode.reduction")}}

    diff --git a/files/en-us/web/api/dynamicscompressornode/release/index.html b/files/en-us/web/api/dynamicscompressornode/release/index.html index 9e77f1f2fd488dc..57d9bcf1277b7ba 100644 --- a/files/en-us/web/api/dynamicscompressornode/release/index.html +++ b/files/en-us/web/api/dynamicscompressornode/release/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.DynamicsCompressorNode.release")}}

    diff --git a/files/en-us/web/api/dynamicscompressornode/threshold/index.html b/files/en-us/web/api/dynamicscompressornode/threshold/index.html index 75bdbbd2b8c789c..b6c48e16b2ef6c9 100644 --- a/files/en-us/web/api/dynamicscompressornode/threshold/index.html +++ b/files/en-us/web/api/dynamicscompressornode/threshold/index.html @@ -59,7 +59,6 @@

    Browser compatibility

    -

    {{Compat("api.DynamicsCompressorNode.threshold")}}

    diff --git a/files/en-us/web/api/effecttiming/delay/index.html b/files/en-us/web/api/effecttiming/delay/index.html index 8542be2c81e9c85..d6dae2e76ae4d53 100644 --- a/files/en-us/web/api/effecttiming/delay/index.html +++ b/files/en-us/web/api/effecttiming/delay/index.html @@ -78,8 +78,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EffectTiming.delay")}}

    See also

    diff --git a/files/en-us/web/api/effecttiming/direction/index.html b/files/en-us/web/api/effecttiming/direction/index.html index 3f7182aef67de87..e1d4ed8d26520aa 100644 --- a/files/en-us/web/api/effecttiming/direction/index.html +++ b/files/en-us/web/api/effecttiming/direction/index.html @@ -81,8 +81,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EffectTiming.direction")}}

    See also

    diff --git a/files/en-us/web/api/effecttiming/duration/index.html b/files/en-us/web/api/effecttiming/duration/index.html index fcc9ba332682ae3..0c95505080d56e7 100644 --- a/files/en-us/web/api/effecttiming/duration/index.html +++ b/files/en-us/web/api/effecttiming/duration/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EffectTiming.duration")}}

    See also

    diff --git a/files/en-us/web/api/effecttiming/easing/index.html b/files/en-us/web/api/effecttiming/easing/index.html index 956880cb961fbc9..22d47a371c48323 100644 --- a/files/en-us/web/api/effecttiming/easing/index.html +++ b/files/en-us/web/api/effecttiming/easing/index.html @@ -104,8 +104,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EffectTiming.easing", 2)}}

    See also

    diff --git a/files/en-us/web/api/effecttiming/enddelay/index.html b/files/en-us/web/api/effecttiming/enddelay/index.html index d6c6d8731f50fa9..382e2da0f65a451 100644 --- a/files/en-us/web/api/effecttiming/enddelay/index.html +++ b/files/en-us/web/api/effecttiming/enddelay/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EffectTiming.endDelay")}}

    See also

    diff --git a/files/en-us/web/api/effecttiming/fill/index.html b/files/en-us/web/api/effecttiming/fill/index.html index 436065b4787802c..89d64a894c095c6 100644 --- a/files/en-us/web/api/effecttiming/fill/index.html +++ b/files/en-us/web/api/effecttiming/fill/index.html @@ -240,8 +240,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EffectTiming.fill")}}

    See also

    diff --git a/files/en-us/web/api/effecttiming/index.html b/files/en-us/web/api/effecttiming/index.html index 9947953dd1f2167..ece92f4da86b5b8 100644 --- a/files/en-us/web/api/effecttiming/index.html +++ b/files/en-us/web/api/effecttiming/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EffectTiming")}}

    See also

    diff --git a/files/en-us/web/api/effecttiming/iterations/index.html b/files/en-us/web/api/effecttiming/iterations/index.html index a7b31960def9a2f..b49faa9ddd390a9 100644 --- a/files/en-us/web/api/effecttiming/iterations/index.html +++ b/files/en-us/web/api/effecttiming/iterations/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EffectTiming.iterations")}}

    See also

    diff --git a/files/en-us/web/api/effecttiming/iterationstart/index.html b/files/en-us/web/api/effecttiming/iterationstart/index.html index e0659f1c524af35..56e7879022f5eb0 100644 --- a/files/en-us/web/api/effecttiming/iterationstart/index.html +++ b/files/en-us/web/api/effecttiming/iterationstart/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EffectTiming.iterationStart")}}

    See also

    diff --git a/files/en-us/web/api/element/afterscriptexecute_event/index.html b/files/en-us/web/api/element/afterscriptexecute_event/index.html index f08d90b270b44e6..7e8650e3ba5affc 100644 --- a/files/en-us/web/api/element/afterscriptexecute_event/index.html +++ b/files/en-us/web/api/element/afterscriptexecute_event/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.afterscriptexecute_event")}}

    See also

    diff --git a/files/en-us/web/api/element/animate/index.html b/files/en-us/web/api/element/animate/index.html index 50c58fbf068b916..ac1ef07396d94fe 100644 --- a/files/en-us/web/api/element/animate/index.html +++ b/files/en-us/web/api/element/animate/index.html @@ -106,8 +106,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.animate")}}

    See also

    diff --git a/files/en-us/web/api/element/attachshadow/index.html b/files/en-us/web/api/element/attachshadow/index.html index 12554e960652056..cfb3078650e1c12 100644 --- a/files/en-us/web/api/element/attachshadow/index.html +++ b/files/en-us/web/api/element/attachshadow/index.html @@ -159,6 +159,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.attachShadow")}}

    diff --git a/files/en-us/web/api/element/beforescriptexecute_event/index.html b/files/en-us/web/api/element/beforescriptexecute_event/index.html index 5f3e23a45c6557e..074896c33bd42ad 100644 --- a/files/en-us/web/api/element/beforescriptexecute_event/index.html +++ b/files/en-us/web/api/element/beforescriptexecute_event/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.beforescriptexecute_event")}}

    See also

    diff --git a/files/en-us/web/api/element/blur_event/index.html b/files/en-us/web/api/element/blur_event/index.html index 9290c80e8d8a014..5afb4cf145d8c33 100644 --- a/files/en-us/web/api/element/blur_event/index.html +++ b/files/en-us/web/api/element/blur_event/index.html @@ -126,8 +126,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.blur_event")}}

    The value of {{DOMxRef("Document.activeElement")}} varies across browsers while this event is being handled ({{bug(452307)}}): IE10 sets it to the element that the focus will move to, while Firefox and Chrome often set it to the body of the document.

    diff --git a/files/en-us/web/api/element/classlist/index.html b/files/en-us/web/api/element/classlist/index.html index 75abc7bc26912bd..cd1a664ba3fcaeb 100644 --- a/files/en-us/web/api/element/classlist/index.html +++ b/files/en-us/web/api/element/classlist/index.html @@ -253,8 +253,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.classList")}}

    See also

    diff --git a/files/en-us/web/api/element/classname/index.html b/files/en-us/web/api/element/classname/index.html index 8807bbc8b01ee7f..77120d184a24b07 100644 --- a/files/en-us/web/api/element/classname/index.html +++ b/files/en-us/web/api/element/classname/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.className")}}

    See also

    diff --git a/files/en-us/web/api/element/click_event/index.html b/files/en-us/web/api/element/click_event/index.html index 4b5c57f77ef5bd0..65e4f98f1ba18c0 100644 --- a/files/en-us/web/api/element/click_event/index.html +++ b/files/en-us/web/api/element/click_event/index.html @@ -137,8 +137,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.click_event")}}

    See also

    diff --git a/files/en-us/web/api/element/clientheight/index.html b/files/en-us/web/api/element/clientheight/index.html index 395c36c08b19296..a93eeddde081f81 100644 --- a/files/en-us/web/api/element/clientheight/index.html +++ b/files/en-us/web/api/element/clientheight/index.html @@ -55,8 +55,6 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.Element.clientHeight")}}

    See also

    diff --git a/files/en-us/web/api/element/clientleft/index.html b/files/en-us/web/api/element/clientleft/index.html index f28bf87acbfe433..547a1d953784679 100644 --- a/files/en-us/web/api/element/clientleft/index.html +++ b/files/en-us/web/api/element/clientleft/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.clientLeft")}}

    Notes

    diff --git a/files/en-us/web/api/element/clienttop/index.html b/files/en-us/web/api/element/clienttop/index.html index 1dd4b25edbf0398..6a3e5768eb77b91 100644 --- a/files/en-us/web/api/element/clienttop/index.html +++ b/files/en-us/web/api/element/clienttop/index.html @@ -65,6 +65,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.clientTop")}}

    diff --git a/files/en-us/web/api/element/clientwidth/index.html b/files/en-us/web/api/element/clientwidth/index.html index aaea14fabd5cd6d..f4539557de08487 100644 --- a/files/en-us/web/api/element/clientwidth/index.html +++ b/files/en-us/web/api/element/clientwidth/index.html @@ -53,8 +53,6 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.Element.clientWidth")}}

    See also

    diff --git a/files/en-us/web/api/element/closest/index.html b/files/en-us/web/api/element/closest/index.html index 25961046451159a..dbcc9885c634b8a 100644 --- a/files/en-us/web/api/element/closest/index.html +++ b/files/en-us/web/api/element/closest/index.html @@ -127,7 +127,6 @@

    Browser compatibility

    -

    {{Compat("api.Element.closest")}}

    Compatibility notes

    diff --git a/files/en-us/web/api/element/compositionend_event/index.html b/files/en-us/web/api/element/compositionend_event/index.html index 92a9d0bb19248e8..5be44e09f289a3e 100644 --- a/files/en-us/web/api/element/compositionend_event/index.html +++ b/files/en-us/web/api/element/compositionend_event/index.html @@ -134,8 +134,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.compositionend_event")}}

    See also

    diff --git a/files/en-us/web/api/element/compositionstart_event/index.html b/files/en-us/web/api/element/compositionstart_event/index.html index ced15bf74b95e3d..b5400f136cc4c66 100644 --- a/files/en-us/web/api/element/compositionstart_event/index.html +++ b/files/en-us/web/api/element/compositionstart_event/index.html @@ -137,8 +137,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.compositionstart_event")}}

    See also

    diff --git a/files/en-us/web/api/element/compositionupdate_event/index.html b/files/en-us/web/api/element/compositionupdate_event/index.html index 3590f46fa858ac0..8ecf2423732afc3 100644 --- a/files/en-us/web/api/element/compositionupdate_event/index.html +++ b/files/en-us/web/api/element/compositionupdate_event/index.html @@ -134,8 +134,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.compositionupdate_event")}}

    See also

    diff --git a/files/en-us/web/api/element/computedstylemap/index.html b/files/en-us/web/api/element/computedstylemap/index.html index e67db94bad8d00b..8ea49c1420c94b1 100644 --- a/files/en-us/web/api/element/computedstylemap/index.html +++ b/files/en-us/web/api/element/computedstylemap/index.html @@ -74,8 +74,6 @@

    Examples

    Did you realize how many default CSS properties a link had? Update the 'a' to the 'p', and you'll notice a difference in the margin-top and margin-bottom default computed values.

    - -

    Specifications

    @@ -95,6 +93,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.computedStyleMap")}}

    diff --git a/files/en-us/web/api/element/copy_event/index.html b/files/en-us/web/api/element/copy_event/index.html index c9dc4d59222ec02..f7663252f5e58f5 100644 --- a/files/en-us/web/api/element/copy_event/index.html +++ b/files/en-us/web/api/element/copy_event/index.html @@ -98,8 +98,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.copy_event")}}

    See also

    diff --git a/files/en-us/web/api/element/createshadowroot/index.html b/files/en-us/web/api/element/createshadowroot/index.html index a8d702c921482fa..16ca9edc7cfb937 100644 --- a/files/en-us/web/api/element/createshadowroot/index.html +++ b/files/en-us/web/api/element/createshadowroot/index.html @@ -37,6 +37,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.createShadowRoot")}}

    diff --git a/files/en-us/web/api/element/currentstyle/index.html b/files/en-us/web/api/element/currentstyle/index.html index 7d68863b8d17b0b..74ca5dbeb91b30a 100644 --- a/files/en-us/web/api/element/currentstyle/index.html +++ b/files/en-us/web/api/element/currentstyle/index.html @@ -37,8 +37,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.currentStyle")}}

    See also

    diff --git a/files/en-us/web/api/element/cut_event/index.html b/files/en-us/web/api/element/cut_event/index.html index 105d9fde822aaf3..267db0048f162e9 100644 --- a/files/en-us/web/api/element/cut_event/index.html +++ b/files/en-us/web/api/element/cut_event/index.html @@ -104,8 +104,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.cut_event")}}

    See also

    diff --git a/files/en-us/web/api/element/dommousescroll_event/index.html b/files/en-us/web/api/element/dommousescroll_event/index.html index 591cb69add8c454..e08afc5a23210df 100644 --- a/files/en-us/web/api/element/dommousescroll_event/index.html +++ b/files/en-us/web/api/element/dommousescroll_event/index.html @@ -67,8 +67,6 @@

    detail

    Browser compatibility

    - -

    {{Compat("api.Element.DOMMouseScroll_event")}}

    See also

    diff --git a/files/en-us/web/api/element/error_event/index.html b/files/en-us/web/api/element/error_event/index.html index 991327ba07640d6..c5812a19a6451f6 100644 --- a/files/en-us/web/api/element/error_event/index.html +++ b/files/en-us/web/api/element/error_event/index.html @@ -137,8 +137,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.error_event")}}

    See also

    diff --git a/files/en-us/web/api/element/focus_event/index.html b/files/en-us/web/api/element/focus_event/index.html index f8b10f4bc8cc091..17e292f7f2922e8 100644 --- a/files/en-us/web/api/element/focus_event/index.html +++ b/files/en-us/web/api/element/focus_event/index.html @@ -125,8 +125,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.focus_event")}}

    See also

    diff --git a/files/en-us/web/api/element/focusin_event/index.html b/files/en-us/web/api/element/focusin_event/index.html index 7ce77356a59ca3e..2c5ab3b9a8e879d 100644 --- a/files/en-us/web/api/element/focusin_event/index.html +++ b/files/en-us/web/api/element/focusin_event/index.html @@ -98,8 +98,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.focusin_event")}}

    See also

    diff --git a/files/en-us/web/api/element/focusout_event/index.html b/files/en-us/web/api/element/focusout_event/index.html index e162fbe9bd68401..227f9bca088518a 100644 --- a/files/en-us/web/api/element/focusout_event/index.html +++ b/files/en-us/web/api/element/focusout_event/index.html @@ -99,8 +99,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.focusout_event")}}

    See also

    diff --git a/files/en-us/web/api/element/gesturechange_event/index.html b/files/en-us/web/api/element/gesturechange_event/index.html index 0e3e83f17dbb86d..eaa3bc29c4ed1b2 100644 --- a/files/en-us/web/api/element/gesturechange_event/index.html +++ b/files/en-us/web/api/element/gesturechange_event/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.gesturechange_event")}}

    See also

    diff --git a/files/en-us/web/api/element/gestureend_event/index.html b/files/en-us/web/api/element/gestureend_event/index.html index 60f6f227b30f5af..11ff3dd20fcbe0e 100644 --- a/files/en-us/web/api/element/gestureend_event/index.html +++ b/files/en-us/web/api/element/gestureend_event/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.gestureend_event")}}

    See also

    diff --git a/files/en-us/web/api/element/gesturestart_event/index.html b/files/en-us/web/api/element/gesturestart_event/index.html index ad4eb3a11864a54..a98354a85b718c4 100644 --- a/files/en-us/web/api/element/gesturestart_event/index.html +++ b/files/en-us/web/api/element/gesturestart_event/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.gesturestart_event")}}

    See also

    diff --git a/files/en-us/web/api/element/getanimations/index.html b/files/en-us/web/api/element/getanimations/index.html index 8da52f7e5bd3e0f..f1a2f654c2b44f1 100644 --- a/files/en-us/web/api/element/getanimations/index.html +++ b/files/en-us/web/api/element/getanimations/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.getAnimations")}}

    See also

    diff --git a/files/en-us/web/api/element/getattribute/index.html b/files/en-us/web/api/element/getattribute/index.html index e6d1af91b6a0844..98ae38fa88ce958 100644 --- a/files/en-us/web/api/element/getattribute/index.html +++ b/files/en-us/web/api/element/getattribute/index.html @@ -86,6 +86,5 @@

    Browser compatibility

    -

    {{Compat("api.Element.getAttribute")}}

    diff --git a/files/en-us/web/api/element/getattributenames/index.html b/files/en-us/web/api/element/getattributenames/index.html index dec268443b8f9de..c08f62f3b39d499 100644 --- a/files/en-us/web/api/element/getattributenames/index.html +++ b/files/en-us/web/api/element/getattributenames/index.html @@ -66,6 +66,5 @@

    Browser compatibility

    -

    {{Compat("api.Element.getAttributeNames")}}

    diff --git a/files/en-us/web/api/element/getattributenode/index.html b/files/en-us/web/api/element/getattributenode/index.html index b6792b966d994dd..a37d1d4bd52dfd3 100644 --- a/files/en-us/web/api/element/getattributenode/index.html +++ b/files/en-us/web/api/element/getattributenode/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.getAttributeNode")}}

    diff --git a/files/en-us/web/api/element/getattributenodens/index.html b/files/en-us/web/api/element/getattributenodens/index.html index 68efd8f382034c2..fc0d9ef175f2792 100644 --- a/files/en-us/web/api/element/getattributenodens/index.html +++ b/files/en-us/web/api/element/getattributenodens/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.getAttributeNodeNS")}}

    diff --git a/files/en-us/web/api/element/getattributens/index.html b/files/en-us/web/api/element/getattributens/index.html index 421efaf52545a57..1cc2ff163564bc5 100644 --- a/files/en-us/web/api/element/getattributens/index.html +++ b/files/en-us/web/api/element/getattributens/index.html @@ -113,8 +113,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.getAttributeNS")}}

    See also

    diff --git a/files/en-us/web/api/element/getboundingclientrect/index.html b/files/en-us/web/api/element/getboundingclientrect/index.html index 1ad046f73110520..a5690cc70987cbb 100644 --- a/files/en-us/web/api/element/getboundingclientrect/index.html +++ b/files/en-us/web/api/element/getboundingclientrect/index.html @@ -127,8 +127,6 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.Element.getBoundingClientRect")}}

    See also

    diff --git a/files/en-us/web/api/element/getclientrects/index.html b/files/en-us/web/api/element/getclientrects/index.html index 2e76e163366d1fb..feee248683e017e 100644 --- a/files/en-us/web/api/element/getclientrects/index.html +++ b/files/en-us/web/api/element/getclientrects/index.html @@ -219,8 +219,6 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.Element.getClientRects")}}

    See also

    diff --git a/files/en-us/web/api/element/getelementsbyclassname/index.html b/files/en-us/web/api/element/getelementsbyclassname/index.html index e45ed8549887ce9..6827298cc760037 100644 --- a/files/en-us/web/api/element/getelementsbyclassname/index.html +++ b/files/en-us/web/api/element/getelementsbyclassname/index.html @@ -109,6 +109,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.getElementsByClassName")}}

    diff --git a/files/en-us/web/api/element/getelementsbytagname/index.html b/files/en-us/web/api/element/getelementsbytagname/index.html index 35f07236062b1ee..b14abea3a8111e9 100644 --- a/files/en-us/web/api/element/getelementsbytagname/index.html +++ b/files/en-us/web/api/element/getelementsbytagname/index.html @@ -74,6 +74,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.getElementsByTagName")}}

    diff --git a/files/en-us/web/api/element/getelementsbytagnamens/index.html b/files/en-us/web/api/element/getelementsbytagnamens/index.html index 71150ee36c2c70b..944183db23d5f39 100644 --- a/files/en-us/web/api/element/getelementsbytagnamens/index.html +++ b/files/en-us/web/api/element/getelementsbytagnamens/index.html @@ -65,6 +65,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.getElementsByTagNameNS")}}

    diff --git a/files/en-us/web/api/element/hasattribute/index.html b/files/en-us/web/api/element/hasattribute/index.html index 123cbe0c1e1ce96..73ad01a072202ea 100644 --- a/files/en-us/web/api/element/hasattribute/index.html +++ b/files/en-us/web/api/element/hasattribute/index.html @@ -75,6 +75,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.hasAttribute")}}

    diff --git a/files/en-us/web/api/element/hasattributens/index.html b/files/en-us/web/api/element/hasattributens/index.html index 40bbeef9fe474c3..7d853c413a13890 100644 --- a/files/en-us/web/api/element/hasattributens/index.html +++ b/files/en-us/web/api/element/hasattributens/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.hasAttributeNS")}}

    diff --git a/files/en-us/web/api/element/hasattributes/index.html b/files/en-us/web/api/element/hasattributes/index.html index 996621faba07ffa..f39b48c8263ce62 100644 --- a/files/en-us/web/api/element/hasattributes/index.html +++ b/files/en-us/web/api/element/hasattributes/index.html @@ -71,8 +71,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.hasAttributes")}}

    See also

    diff --git a/files/en-us/web/api/element/haspointercapture/index.html b/files/en-us/web/api/element/haspointercapture/index.html index ad96ad6e43e0fb2..0e621a39b0db3b5 100644 --- a/files/en-us/web/api/element/haspointercapture/index.html +++ b/files/en-us/web/api/element/haspointercapture/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.hasPointerCapture")}}

    See also

    diff --git a/files/en-us/web/api/element/id/index.html b/files/en-us/web/api/element/id/index.html index 9afbe48e5d2f72b..e103e635df06ce8 100644 --- a/files/en-us/web/api/element/id/index.html +++ b/files/en-us/web/api/element/id/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.id")}}

    See also

    diff --git a/files/en-us/web/api/element/index.html b/files/en-us/web/api/element/index.html index f78b79ff39e5912..3f353c4ff56254b 100644 --- a/files/en-us/web/api/element/index.html +++ b/files/en-us/web/api/element/index.html @@ -480,6 +480,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element")}}

    diff --git a/files/en-us/web/api/element/innerhtml/index.html b/files/en-us/web/api/element/innerhtml/index.html index 4e0c9d6a2c66103..f80b0d389c22766 100644 --- a/files/en-us/web/api/element/innerhtml/index.html +++ b/files/en-us/web/api/element/innerhtml/index.html @@ -198,8 +198,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.innerHTML")}}

    See also

    diff --git a/files/en-us/web/api/element/insertadjacenthtml/index.html b/files/en-us/web/api/element/insertadjacenthtml/index.html index e882c1d4d699ab5..c6550590d92a341 100644 --- a/files/en-us/web/api/element/insertadjacenthtml/index.html +++ b/files/en-us/web/api/element/insertadjacenthtml/index.html @@ -88,8 +88,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.insertAdjacentHTML")}}

    See also

    diff --git a/files/en-us/web/api/element/insertadjacenttext/index.html b/files/en-us/web/api/element/insertadjacenttext/index.html index d6fb6ec2c960825..41d9025251ce355 100644 --- a/files/en-us/web/api/element/insertadjacenttext/index.html +++ b/files/en-us/web/api/element/insertadjacenttext/index.html @@ -115,8 +115,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.insertAdjacentText")}}

    See also

    diff --git a/files/en-us/web/api/element/localname/index.html b/files/en-us/web/api/element/localname/index.html index 0d6ee873cd3d06a..ade608ae959e3e5 100644 --- a/files/en-us/web/api/element/localname/index.html +++ b/files/en-us/web/api/element/localname/index.html @@ -92,8 +92,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.localName")}}

    See also

    diff --git a/files/en-us/web/api/element/matches/index.html b/files/en-us/web/api/element/matches/index.html index 5e311c6d3b9ed7d..424d3b38ed53fbf 100644 --- a/files/en-us/web/api/element/matches/index.html +++ b/files/en-us/web/api/element/matches/index.html @@ -103,8 +103,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.matches")}}

    See also

    diff --git a/files/en-us/web/api/element/mscontentzoom_event/index.html b/files/en-us/web/api/element/mscontentzoom_event/index.html index 235e2fa3c6658ed..1776b5a10464409 100644 --- a/files/en-us/web/api/element/mscontentzoom_event/index.html +++ b/files/en-us/web/api/element/mscontentzoom_event/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.msContentZoom_event")}}

    See also

    diff --git a/files/en-us/web/api/element/msgesturechange_event/index.html b/files/en-us/web/api/element/msgesturechange_event/index.html index 3116caf80eabd18..b540d2f878e49d4 100644 --- a/files/en-us/web/api/element/msgesturechange_event/index.html +++ b/files/en-us/web/api/element/msgesturechange_event/index.html @@ -41,11 +41,8 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.MSGestureChange_event")}}

    -

    See also

      diff --git a/files/en-us/web/api/element/msgestureend_event/index.html b/files/en-us/web/api/element/msgestureend_event/index.html index d9a12b6729a75af..63c3f1beb4a2ac7 100644 --- a/files/en-us/web/api/element/msgestureend_event/index.html +++ b/files/en-us/web/api/element/msgestureend_event/index.html @@ -41,8 +41,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.MSGestureEnd_event")}}

      See also

      diff --git a/files/en-us/web/api/element/msgesturehold_event/index.html b/files/en-us/web/api/element/msgesturehold_event/index.html index 31b9d0c3dd469a3..e2f675425815922 100644 --- a/files/en-us/web/api/element/msgesturehold_event/index.html +++ b/files/en-us/web/api/element/msgesturehold_event/index.html @@ -52,8 +52,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.MSGestureHold_event")}}

      See also

      diff --git a/files/en-us/web/api/element/msgesturestart_event/index.html b/files/en-us/web/api/element/msgesturestart_event/index.html index 4e77663f49fabff..93592c19a5d3ea2 100644 --- a/files/en-us/web/api/element/msgesturestart_event/index.html +++ b/files/en-us/web/api/element/msgesturestart_event/index.html @@ -41,8 +41,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.MSGestureStart_event")}}

      See also

      diff --git a/files/en-us/web/api/element/msgesturetap_event/index.html b/files/en-us/web/api/element/msgesturetap_event/index.html index ea61e4c7e12220b..5764816619ad589 100644 --- a/files/en-us/web/api/element/msgesturetap_event/index.html +++ b/files/en-us/web/api/element/msgesturetap_event/index.html @@ -41,8 +41,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.MSGestureTap_event")}}

      See also

      diff --git a/files/en-us/web/api/element/msinertiastart_event/index.html b/files/en-us/web/api/element/msinertiastart_event/index.html index d26c969c3443029..7c18424291dbf31 100644 --- a/files/en-us/web/api/element/msinertiastart_event/index.html +++ b/files/en-us/web/api/element/msinertiastart_event/index.html @@ -41,8 +41,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.MSInertiaStart_event")}}

      See also

      diff --git a/files/en-us/web/api/element/msmanipulationstatechanged_event/index.html b/files/en-us/web/api/element/msmanipulationstatechanged_event/index.html index 200e3f7eb3f50b6..1ec3243c8aa1c4c 100644 --- a/files/en-us/web/api/element/msmanipulationstatechanged_event/index.html +++ b/files/en-us/web/api/element/msmanipulationstatechanged_event/index.html @@ -57,8 +57,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.MSManipulationStateChanged_event")}}

      See also

      diff --git a/files/en-us/web/api/element/namespaceuri/index.html b/files/en-us/web/api/element/namespaceuri/index.html index 4ca4964c6e87d70..0cd27514201eb50 100644 --- a/files/en-us/web/api/element/namespaceuri/index.html +++ b/files/en-us/web/api/element/namespaceuri/index.html @@ -61,8 +61,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.namespaceURI")}}

      See also

      diff --git a/files/en-us/web/api/element/onfullscreenchange/index.html b/files/en-us/web/api/element/onfullscreenchange/index.html index aef9e58dfd07fbb..a06d2e5ba55a4f2 100644 --- a/files/en-us/web/api/element/onfullscreenchange/index.html +++ b/files/en-us/web/api/element/onfullscreenchange/index.html @@ -73,8 +73,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.onfullscreenchange")}}

      See also

      diff --git a/files/en-us/web/api/element/onfullscreenerror/index.html b/files/en-us/web/api/element/onfullscreenerror/index.html index 9b058b1805e35cc..6b547b9ffc3b665 100644 --- a/files/en-us/web/api/element/onfullscreenerror/index.html +++ b/files/en-us/web/api/element/onfullscreenerror/index.html @@ -61,8 +61,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.onfullscreenerror")}}

      See also

      diff --git a/files/en-us/web/api/element/openorclosedshadowroot/index.html b/files/en-us/web/api/element/openorclosedshadowroot/index.html index df222c7262d5930..07f51a3a9d7b1b6 100644 --- a/files/en-us/web/api/element/openorclosedshadowroot/index.html +++ b/files/en-us/web/api/element/openorclosedshadowroot/index.html @@ -36,8 +36,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.openOrClosedShadowRoot")}}

      See also

      diff --git a/files/en-us/web/api/element/outerhtml/index.html b/files/en-us/web/api/element/outerhtml/index.html index 80257a536e5891f..b23a7b365fd6476 100644 --- a/files/en-us/web/api/element/outerhtml/index.html +++ b/files/en-us/web/api/element/outerhtml/index.html @@ -127,8 +127,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.outerHTML")}}

      See also

      diff --git a/files/en-us/web/api/element/overflow_event/index.html b/files/en-us/web/api/element/overflow_event/index.html index 59502dbd4363b2d..5a0cecfe2073d25 100644 --- a/files/en-us/web/api/element/overflow_event/index.html +++ b/files/en-us/web/api/element/overflow_event/index.html @@ -90,8 +90,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.overflow_event")}}

      See also

      diff --git a/files/en-us/web/api/element/part/index.html b/files/en-us/web/api/element/part/index.html index 89534be24840795..84adabf4e863aa6 100644 --- a/files/en-us/web/api/element/part/index.html +++ b/files/en-us/web/api/element/part/index.html @@ -62,8 +62,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.part")}}

      See also

      diff --git a/files/en-us/web/api/element/paste_event/index.html b/files/en-us/web/api/element/paste_event/index.html index 79b088f30de952d..ac16663429702d3 100644 --- a/files/en-us/web/api/element/paste_event/index.html +++ b/files/en-us/web/api/element/paste_event/index.html @@ -102,8 +102,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.paste_event")}}

      See also

      diff --git a/files/en-us/web/api/element/prefix/index.html b/files/en-us/web/api/element/prefix/index.html index ff20bba2a5b5af3..8bb278e3dab9d91 100644 --- a/files/en-us/web/api/element/prefix/index.html +++ b/files/en-us/web/api/element/prefix/index.html @@ -54,8 +54,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.prefix")}}

      See also

      diff --git a/files/en-us/web/api/element/queryselector/index.html b/files/en-us/web/api/element/queryselector/index.html index 956d4267170193c..c53fc9d0bf09560 100644 --- a/files/en-us/web/api/element/queryselector/index.html +++ b/files/en-us/web/api/element/queryselector/index.html @@ -125,8 +125,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.querySelector")}}

      See also

      diff --git a/files/en-us/web/api/element/queryselectorall/index.html b/files/en-us/web/api/element/queryselectorall/index.html index 185fea1937b0373..2b24da9060e999a 100644 --- a/files/en-us/web/api/element/queryselectorall/index.html +++ b/files/en-us/web/api/element/queryselectorall/index.html @@ -182,7 +182,6 @@

      Browser compatibility

      -

      {{Compat("api.Element.querySelectorAll")}}

      diff --git a/files/en-us/web/api/element/releasepointercapture/index.html b/files/en-us/web/api/element/releasepointercapture/index.html index 4da0aad443adf58..9b654be2c7c51fb 100644 --- a/files/en-us/web/api/element/releasepointercapture/index.html +++ b/files/en-us/web/api/element/releasepointercapture/index.html @@ -117,8 +117,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.releasePointerCapture")}}

      See also

      diff --git a/files/en-us/web/api/element/removeattribute/index.html b/files/en-us/web/api/element/removeattribute/index.html index a05b856186fb6fb..505b47247da3dfa 100644 --- a/files/en-us/web/api/element/removeattribute/index.html +++ b/files/en-us/web/api/element/removeattribute/index.html @@ -64,6 +64,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.removeAttribute")}}

      diff --git a/files/en-us/web/api/element/removeattributenode/index.html b/files/en-us/web/api/element/removeattributenode/index.html index 6d7c49a6e18a349..f79556ba9753fbe 100644 --- a/files/en-us/web/api/element/removeattributenode/index.html +++ b/files/en-us/web/api/element/removeattributenode/index.html @@ -61,6 +61,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.removeAttributeNode")}}

      diff --git a/files/en-us/web/api/element/removeattributens/index.html b/files/en-us/web/api/element/removeattributens/index.html index 7004e15e2b3806a..dfbcbb0b493233a 100644 --- a/files/en-us/web/api/element/removeattributens/index.html +++ b/files/en-us/web/api/element/removeattributens/index.html @@ -60,8 +60,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.removeAttributeNS")}}

      {{ Fx_minversion_inline(3) }} In Firefox 3 and later, this method resets DOM values to their defaults.

      diff --git a/files/en-us/web/api/element/requestfullscreen/index.html b/files/en-us/web/api/element/requestfullscreen/index.html index 39e28a40fad9a45..1558881302567b2 100644 --- a/files/en-us/web/api/element/requestfullscreen/index.html +++ b/files/en-us/web/api/element/requestfullscreen/index.html @@ -125,7 +125,6 @@

      Browser compatibility

      -

      {{Compat("api.Element.requestFullscreen")}}

      diff --git a/files/en-us/web/api/element/requestpointerlock/index.html b/files/en-us/web/api/element/requestpointerlock/index.html index 7dbc80529651abf..98c4c9b948a67c2 100644 --- a/files/en-us/web/api/element/requestpointerlock/index.html +++ b/files/en-us/web/api/element/requestpointerlock/index.html @@ -43,7 +43,6 @@

      Browser compatibility

      -

      {{Compat("api.Element.requestPointerLock")}}

      diff --git a/files/en-us/web/api/element/runtimestyle/index.html b/files/en-us/web/api/element/runtimestyle/index.html index cf08883c2385bfd..bdc79351e98f7a3 100644 --- a/files/en-us/web/api/element/runtimestyle/index.html +++ b/files/en-us/web/api/element/runtimestyle/index.html @@ -25,8 +25,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.runtimeStyle")}}

      See also

      diff --git a/files/en-us/web/api/element/scroll/index.html b/files/en-us/web/api/element/scroll/index.html index cd3891136f0fc48..8b373b1ff6cc894 100644 --- a/files/en-us/web/api/element/scroll/index.html +++ b/files/en-us/web/api/element/scroll/index.html @@ -73,6 +73,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Element.scroll")}}

      diff --git a/files/en-us/web/api/element/scrollby/index.html b/files/en-us/web/api/element/scrollby/index.html index d9859d692ddcf8f..22300430be585b3 100644 --- a/files/en-us/web/api/element/scrollby/index.html +++ b/files/en-us/web/api/element/scrollby/index.html @@ -67,6 +67,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.scrollBy")}}

      diff --git a/files/en-us/web/api/element/scrollheight/index.html b/files/en-us/web/api/element/scrollheight/index.html index fce074c374a7ce4..11a247d35f632d8 100644 --- a/files/en-us/web/api/element/scrollheight/index.html +++ b/files/en-us/web/api/element/scrollheight/index.html @@ -160,8 +160,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.scrollHeight")}}

      See also

      diff --git a/files/en-us/web/api/element/scrollintoview/index.html b/files/en-us/web/api/element/scrollintoview/index.html index bbe56ca52dbbe66..648c48d09db1fce 100644 --- a/files/en-us/web/api/element/scrollintoview/index.html +++ b/files/en-us/web/api/element/scrollintoview/index.html @@ -85,8 +85,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.scrollIntoView")}}

      See also

      diff --git a/files/en-us/web/api/element/scrollintoviewifneeded/index.html b/files/en-us/web/api/element/scrollintoviewifneeded/index.html index 02cb09dd1fd2ff0..34d3ffaf5639abb 100644 --- a/files/en-us/web/api/element/scrollintoviewifneeded/index.html +++ b/files/en-us/web/api/element/scrollintoviewifneeded/index.html @@ -43,8 +43,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.scrollIntoViewIfNeeded")}}

      See also

      diff --git a/files/en-us/web/api/element/scrollleft/index.html b/files/en-us/web/api/element/scrollleft/index.html index 2719e5a4a37e3c7..f05ed1e9be002aa 100644 --- a/files/en-us/web/api/element/scrollleft/index.html +++ b/files/en-us/web/api/element/scrollleft/index.html @@ -98,8 +98,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.scrollLeft")}}

      See also

      diff --git a/files/en-us/web/api/element/scrollleftmax/index.html b/files/en-us/web/api/element/scrollleftmax/index.html index 0a355a5c0bbb867..7e3184a147b930a 100644 --- a/files/en-us/web/api/element/scrollleftmax/index.html +++ b/files/en-us/web/api/element/scrollleftmax/index.html @@ -24,8 +24,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.scrollLeftMax")}}

      See also

      diff --git a/files/en-us/web/api/element/scrollto/index.html b/files/en-us/web/api/element/scrollto/index.html index f5811c2379fdfb0..67289c30a4d6935 100644 --- a/files/en-us/web/api/element/scrollto/index.html +++ b/files/en-us/web/api/element/scrollto/index.html @@ -65,8 +65,6 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Element.scrollTo")}}

      See also

      diff --git a/files/en-us/web/api/element/scrolltop/index.html b/files/en-us/web/api/element/scrolltop/index.html index 2d18eb62092ea94..84017550e5aef40 100644 --- a/files/en-us/web/api/element/scrolltop/index.html +++ b/files/en-us/web/api/element/scrolltop/index.html @@ -79,8 +79,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.scrollTop")}}

      See also

      diff --git a/files/en-us/web/api/element/scrolltopmax/index.html b/files/en-us/web/api/element/scrolltopmax/index.html index 1ec4341663df873..5c2e15b44118ad9 100644 --- a/files/en-us/web/api/element/scrolltopmax/index.html +++ b/files/en-us/web/api/element/scrolltopmax/index.html @@ -24,8 +24,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Element.scrollTopMax")}}

      See also

      diff --git a/files/en-us/web/api/element/scrollwidth/index.html b/files/en-us/web/api/element/scrollwidth/index.html index a4d6b04117f7203..3d866b8d93d6880 100644 --- a/files/en-us/web/api/element/scrollwidth/index.html +++ b/files/en-us/web/api/element/scrollwidth/index.html @@ -93,16 +93,10 @@

      Example

      </html> - - - -

      Result

      {{EmbedLiveSample('Example')}}

      - -

      Specifications

    @@ -124,8 +118,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.scrollWidth")}}

    See also

    diff --git a/files/en-us/web/api/element/setattribute/index.html b/files/en-us/web/api/element/setattribute/index.html index 22e06242122bf15..f0b06b5377ecb28 100644 --- a/files/en-us/web/api/element/setattribute/index.html +++ b/files/en-us/web/api/element/setattribute/index.html @@ -90,11 +90,8 @@

    Specifications

    -

    Browser compatibility

    - -

    {{Compat("api.Element.setAttribute")}}

    Gecko notes

    diff --git a/files/en-us/web/api/element/setattributenode/index.html b/files/en-us/web/api/element/setattributenode/index.html index 7340525d1fb60fd..974b91fe2bd4a19 100644 --- a/files/en-us/web/api/element/setattributenode/index.html +++ b/files/en-us/web/api/element/setattributenode/index.html @@ -68,9 +68,6 @@

    Specifications

    -

    Browser compatibility

    - -

    {{Compat("api.Element.setAttributeNode")}}

    diff --git a/files/en-us/web/api/element/setattributenodens/index.html b/files/en-us/web/api/element/setattributenodens/index.html index 06edbdc1b76b77b..2b4739a8ea89fdf 100644 --- a/files/en-us/web/api/element/setattributenodens/index.html +++ b/files/en-us/web/api/element/setattributenodens/index.html @@ -28,7 +28,6 @@

    Example

    // myNS:special-align="utterleft">one</div> // <div id="two">two</div> - var myns = "http://www.mozilla.org/ns/specialspace"; var d1 = document.getElementById("one"); var d2 = document.getElementById("two"); @@ -66,6 +65,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.setAttributeNodeNS")}}

    diff --git a/files/en-us/web/api/element/setattributens/index.html b/files/en-us/web/api/element/setattributens/index.html index d0c2438a4d9cfcc..24b87c77417d7e4 100644 --- a/files/en-us/web/api/element/setattributens/index.html +++ b/files/en-us/web/api/element/setattributens/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.setAttributeNS")}}

    diff --git a/files/en-us/web/api/element/setcapture/index.html b/files/en-us/web/api/element/setcapture/index.html index 4e32b7847ccc52b..85691dc65679ce6 100644 --- a/files/en-us/web/api/element/setcapture/index.html +++ b/files/en-us/web/api/element/setcapture/index.html @@ -88,8 +88,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.setCapture")}}

    See also

    diff --git a/files/en-us/web/api/element/setpointercapture/index.html b/files/en-us/web/api/element/setpointercapture/index.html index 95378f93d44f5c4..8fd628054564f88 100644 --- a/files/en-us/web/api/element/setpointercapture/index.html +++ b/files/en-us/web/api/element/setpointercapture/index.html @@ -125,8 +125,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.setPointerCapture")}}

    See also

    diff --git a/files/en-us/web/api/element/shadowroot/index.html b/files/en-us/web/api/element/shadowroot/index.html index bafa109885c0d84..05ee31ed2523c2a 100644 --- a/files/en-us/web/api/element/shadowroot/index.html +++ b/files/en-us/web/api/element/shadowroot/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.shadowRoot")}}

    See also

    diff --git a/files/en-us/web/api/element/slot/index.html b/files/en-us/web/api/element/slot/index.html index a8bb98efafe042b..0f818782533878e 100644 --- a/files/en-us/web/api/element/slot/index.html +++ b/files/en-us/web/api/element/slot/index.html @@ -61,6 +61,5 @@

    Browser Compatibility

    -

    {{Compat("api.Element.slot")}}

    diff --git a/files/en-us/web/api/element/tabstop/index.html b/files/en-us/web/api/element/tabstop/index.html index a84c10dcfa82aa0..3fe618f8b7c9006 100644 --- a/files/en-us/web/api/element/tabstop/index.html +++ b/files/en-us/web/api/element/tabstop/index.html @@ -29,6 +29,4 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.Element.tabStop")}}

    diff --git a/files/en-us/web/api/element/tagname/index.html b/files/en-us/web/api/element/tagname/index.html index cb7a80188babf8c..410e0dcf7e675ee 100644 --- a/files/en-us/web/api/element/tagname/index.html +++ b/files/en-us/web/api/element/tagname/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.tagName")}}

    diff --git a/files/en-us/web/api/element/toggleattribute/index.html b/files/en-us/web/api/element/toggleattribute/index.html index c4931a903533490..70be7b0efca7d51 100644 --- a/files/en-us/web/api/element/toggleattribute/index.html +++ b/files/en-us/web/api/element/toggleattribute/index.html @@ -102,6 +102,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.toggleAttribute")}}

    diff --git a/files/en-us/web/api/element/touchcancel_event/index.html b/files/en-us/web/api/element/touchcancel_event/index.html index f3b2e2d953fd1b4..b6570ae4940113c 100644 --- a/files/en-us/web/api/element/touchcancel_event/index.html +++ b/files/en-us/web/api/element/touchcancel_event/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.touchcancel_event")}}

    See also

    diff --git a/files/en-us/web/api/element/touchend_event/index.html b/files/en-us/web/api/element/touchend_event/index.html index 237e4748d39e533..d60c5922f7731d1 100644 --- a/files/en-us/web/api/element/touchend_event/index.html +++ b/files/en-us/web/api/element/touchend_event/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.touchend_event")}}

    See also

    diff --git a/files/en-us/web/api/element/touchmove_event/index.html b/files/en-us/web/api/element/touchmove_event/index.html index e5e8a0f4a16c008..5be13247e427a1c 100644 --- a/files/en-us/web/api/element/touchmove_event/index.html +++ b/files/en-us/web/api/element/touchmove_event/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.touchmove_event")}}

    See also

    diff --git a/files/en-us/web/api/element/touchstart_event/index.html b/files/en-us/web/api/element/touchstart_event/index.html index 9f9c62bc7424b63..bfef3000bb8c124 100644 --- a/files/en-us/web/api/element/touchstart_event/index.html +++ b/files/en-us/web/api/element/touchstart_event/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.touchstart_event")}}

    See also

    diff --git a/files/en-us/web/api/element/underflow_event/index.html b/files/en-us/web/api/element/underflow_event/index.html index f914856c14dde69..56e7a361cb4a20b 100644 --- a/files/en-us/web/api/element/underflow_event/index.html +++ b/files/en-us/web/api/element/underflow_event/index.html @@ -98,8 +98,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Element.underflow_event")}}

    See also

    diff --git a/files/en-us/web/api/elementcssinlinestyle/index.html b/files/en-us/web/api/elementcssinlinestyle/index.html index 2a7fa2cc78e05fb..8bcc6b9e9eb8d52 100644 --- a/files/en-us/web/api/elementcssinlinestyle/index.html +++ b/files/en-us/web/api/elementcssinlinestyle/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ElementCSSInlineStyle")}}

    See also

    diff --git a/files/en-us/web/api/elementcssinlinestyle/style/index.html b/files/en-us/web/api/elementcssinlinestyle/style/index.html index f2e81012654acf1..fe62be93a5305d4 100644 --- a/files/en-us/web/api/elementcssinlinestyle/style/index.html +++ b/files/en-us/web/api/elementcssinlinestyle/style/index.html @@ -90,8 +90,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.style")}}

    See also

    diff --git a/files/en-us/web/api/encoding_api/index.html b/files/en-us/web/api/encoding_api/index.html index d905e94bb1ce75a..82afe4f2d9f870d 100644 --- a/files/en-us/web/api/encoding_api/index.html +++ b/files/en-us/web/api/encoding_api/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    TextDecoder

    {{Compat("api.TextDecoder")}}

    diff --git a/files/en-us/web/api/encrypted_media_extensions_api/index.html b/files/en-us/web/api/encrypted_media_extensions_api/index.html index d759739e132c518..9bb1f35ee41667e 100644 --- a/files/en-us/web/api/encrypted_media_extensions_api/index.html +++ b/files/en-us/web/api/encrypted_media_extensions_api/index.html @@ -56,7 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ErrorEvent")}}

    See also

    diff --git a/files/en-us/web/api/event/bubbles/index.html b/files/en-us/web/api/event/bubbles/index.html index 9455bed0926b175..dd9d851e9fae451 100644 --- a/files/en-us/web/api/event/bubbles/index.html +++ b/files/en-us/web/api/event/bubbles/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.bubbles")}}

    See also

    diff --git a/files/en-us/web/api/event/cancelable/index.html b/files/en-us/web/api/event/cancelable/index.html index c3c26de8a5b2886..87fd5abe283d8bb 100644 --- a/files/en-us/web/api/event/cancelable/index.html +++ b/files/en-us/web/api/event/cancelable/index.html @@ -80,6 +80,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.cancelable")}}

    diff --git a/files/en-us/web/api/event/cancelbubble/index.html b/files/en-us/web/api/event/cancelbubble/index.html index f92094e1001e6e6..85705bf46206cce 100644 --- a/files/en-us/web/api/event/cancelbubble/index.html +++ b/files/en-us/web/api/event/cancelbubble/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.cancelBubble")}}

    diff --git a/files/en-us/web/api/event/composed/index.html b/files/en-us/web/api/event/composed/index.html index 8a793025deeefaf..59a2099b25f8811 100644 --- a/files/en-us/web/api/event/composed/index.html +++ b/files/en-us/web/api/event/composed/index.html @@ -106,6 +106,5 @@

    Browser compatibility

    -

    {{Compat("api.Event.composed")}}

    diff --git a/files/en-us/web/api/event/composedpath/index.html b/files/en-us/web/api/event/composedpath/index.html index d2654a558f37c69..d1179b41debd549 100644 --- a/files/en-us/web/api/event/composedpath/index.html +++ b/files/en-us/web/api/event/composedpath/index.html @@ -90,6 +90,5 @@

    Browser compatibility

    -

    {{Compat("api.Event.composedPath")}}

    diff --git a/files/en-us/web/api/event/currenttarget/index.html b/files/en-us/web/api/event/currenttarget/index.html index ebccae22aa6a935..13aa109736cb838 100644 --- a/files/en-us/web/api/event/currenttarget/index.html +++ b/files/en-us/web/api/event/currenttarget/index.html @@ -81,8 +81,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.currentTarget")}}

    See also

    diff --git a/files/en-us/web/api/event/defaultprevented/index.html b/files/en-us/web/api/event/defaultprevented/index.html index e63ba5c4520a8a2..7c8c475ac525298 100644 --- a/files/en-us/web/api/event/defaultprevented/index.html +++ b/files/en-us/web/api/event/defaultprevented/index.html @@ -80,6 +80,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.defaultPrevented")}}

    diff --git a/files/en-us/web/api/event/event/index.html b/files/en-us/web/api/event/event/index.html index ad785b80361e5c1..e8d0af962d19861 100644 --- a/files/en-us/web/api/event/event/index.html +++ b/files/en-us/web/api/event/event/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.Event")}}

    See also

    diff --git a/files/en-us/web/api/event/eventphase/index.html b/files/en-us/web/api/event/eventphase/index.html index 09ab0527cf8eee7..7f294ac3e7d76d6 100644 --- a/files/en-us/web/api/event/eventphase/index.html +++ b/files/en-us/web/api/event/eventphase/index.html @@ -205,6 +205,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.eventPhase")}}

    diff --git a/files/en-us/web/api/event/explicitoriginaltarget/index.html b/files/en-us/web/api/event/explicitoriginaltarget/index.html index 8adbb54b8275b38..59f2c9a983b6ba8 100644 --- a/files/en-us/web/api/event/explicitoriginaltarget/index.html +++ b/files/en-us/web/api/event/explicitoriginaltarget/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.explicitOriginalTarget")}}

    See also

    diff --git a/files/en-us/web/api/event/index.html b/files/en-us/web/api/event/index.html index b6ffc180c648590..610fb13d302bd9b 100644 --- a/files/en-us/web/api/event/index.html +++ b/files/en-us/web/api/event/index.html @@ -192,8 +192,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event")}}

    See also

    diff --git a/files/en-us/web/api/event/initevent/index.html b/files/en-us/web/api/event/initevent/index.html index 1a6130f51da4ad5..5e56fe1f7dd8d23 100644 --- a/files/en-us/web/api/event/initevent/index.html +++ b/files/en-us/web/api/event/initevent/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.initEvent")}}

    See also

    diff --git a/files/en-us/web/api/event/istrusted/index.html b/files/en-us/web/api/event/istrusted/index.html index 0889d1bf401d925..4277a081351c3e4 100644 --- a/files/en-us/web/api/event/istrusted/index.html +++ b/files/en-us/web/api/event/istrusted/index.html @@ -56,6 +56,5 @@

    Browser compatibility

    -

    {{Compat("api.Event.isTrusted")}}

    diff --git a/files/en-us/web/api/event/originaltarget/index.html b/files/en-us/web/api/event/originaltarget/index.html index 490dcbb8d9eb2f2..da778e9934adc74 100644 --- a/files/en-us/web/api/event/originaltarget/index.html +++ b/files/en-us/web/api/event/originaltarget/index.html @@ -34,6 +34,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.originalTarget")}}

    diff --git a/files/en-us/web/api/event/preventdefault/index.html b/files/en-us/web/api/event/preventdefault/index.html index 229e01404e9e218..60a4aa0e665d405 100644 --- a/files/en-us/web/api/event/preventdefault/index.html +++ b/files/en-us/web/api/event/preventdefault/index.html @@ -158,6 +158,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.preventDefault")}}

    diff --git a/files/en-us/web/api/event/returnvalue/index.html b/files/en-us/web/api/event/returnvalue/index.html index e85ca76bbf7e12f..73a1aea89b423f0 100644 --- a/files/en-us/web/api/event/returnvalue/index.html +++ b/files/en-us/web/api/event/returnvalue/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.returnValue")}}

    diff --git a/files/en-us/web/api/event/srcelement/index.html b/files/en-us/web/api/event/srcelement/index.html index d817c9e88ad16ce..6dcb1aa7f4c814d 100644 --- a/files/en-us/web/api/event/srcelement/index.html +++ b/files/en-us/web/api/event/srcelement/index.html @@ -32,8 +32,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.srcElement")}}

    See also

    diff --git a/files/en-us/web/api/event/stopimmediatepropagation/index.html b/files/en-us/web/api/event/stopimmediatepropagation/index.html index f7cb8409b7989e8..af2bcde509d2ed5 100644 --- a/files/en-us/web/api/event/stopimmediatepropagation/index.html +++ b/files/en-us/web/api/event/stopimmediatepropagation/index.html @@ -40,6 +40,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.stopImmediatePropagation")}}

    diff --git a/files/en-us/web/api/event/stoppropagation/index.html b/files/en-us/web/api/event/stoppropagation/index.html index 80f62bd367d1450..57588f2b718accc 100644 --- a/files/en-us/web/api/event/stoppropagation/index.html +++ b/files/en-us/web/api/event/stoppropagation/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.stopPropagation")}}

    See also

    diff --git a/files/en-us/web/api/event/target/index.html b/files/en-us/web/api/event/target/index.html index c8455cc1191ff83..a151b9ae839ccc8 100644 --- a/files/en-us/web/api/event/target/index.html +++ b/files/en-us/web/api/event/target/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.target")}}

    Compatibility notes

    diff --git a/files/en-us/web/api/event/timestamp/index.html b/files/en-us/web/api/event/timestamp/index.html index 34eb213c7c649d3..be5bf5a648d038a 100644 --- a/files/en-us/web/api/event/timestamp/index.html +++ b/files/en-us/web/api/event/timestamp/index.html @@ -63,7 +63,6 @@

    Reduced time precision

    // 1519211811670 // ... - // reduced time precision with `privacy.resistFingerprinting` enabled event.timeStamp; // 1519129853500 @@ -95,6 +94,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.timeStamp")}}

    diff --git a/files/en-us/web/api/event/type/index.html b/files/en-us/web/api/event/type/index.html index 055d8403d41d9da..f4fefd293c1e903 100644 --- a/files/en-us/web/api/event/type/index.html +++ b/files/en-us/web/api/event/type/index.html @@ -80,8 +80,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Event.type")}}

    See also

    diff --git a/files/en-us/web/api/eventlistener/handleevent/index.html b/files/en-us/web/api/eventlistener/handleevent/index.html index 6e29689089a887c..b2af51c839bb058 100644 --- a/files/en-us/web/api/eventlistener/handleevent/index.html +++ b/files/en-us/web/api/eventlistener/handleevent/index.html @@ -62,6 +62,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EventListener.handleEvent")}}

    diff --git a/files/en-us/web/api/eventlistener/index.html b/files/en-us/web/api/eventlistener/index.html index bdbcf82c8cfaa8d..5f579b2b0ad5088 100644 --- a/files/en-us/web/api/eventlistener/index.html +++ b/files/en-us/web/api/eventlistener/index.html @@ -91,6 +91,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EventListener")}}

    diff --git a/files/en-us/web/api/eventsource/close/index.html b/files/en-us/web/api/eventsource/close/index.html index be5f57041b8c712..32839eaee66aaed 100644 --- a/files/en-us/web/api/eventsource/close/index.html +++ b/files/en-us/web/api/eventsource/close/index.html @@ -68,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.EventSource.close")}}

    diff --git a/files/en-us/web/api/eventsource/eventsource/index.html b/files/en-us/web/api/eventsource/eventsource/index.html index ccff5a51e0dbcfa..d0db7404bc6b630 100644 --- a/files/en-us/web/api/eventsource/eventsource/index.html +++ b/files/en-us/web/api/eventsource/eventsource/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EventSource.EventSource")}}

    See also

    diff --git a/files/en-us/web/api/eventsource/index.html b/files/en-us/web/api/eventsource/index.html index acbb72a97047da1..c6c0216bb783ae0 100644 --- a/files/en-us/web/api/eventsource/index.html +++ b/files/en-us/web/api/eventsource/index.html @@ -152,7 +152,6 @@

    Browser compatibility

    -

    {{Compat("api.EventSource")}}

    diff --git a/files/en-us/web/api/eventsource/onerror/index.html b/files/en-us/web/api/eventsource/onerror/index.html index 156f889d213b2d4..88a5fc3b44dec9e 100644 --- a/files/en-us/web/api/eventsource/onerror/index.html +++ b/files/en-us/web/api/eventsource/onerror/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.EventSource.onerror")}}

    diff --git a/files/en-us/web/api/eventsource/onmessage/index.html b/files/en-us/web/api/eventsource/onmessage/index.html index f3f01813580be4b..f4a83e349a19a7f 100644 --- a/files/en-us/web/api/eventsource/onmessage/index.html +++ b/files/en-us/web/api/eventsource/onmessage/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.EventSource.onmessage")}}

    diff --git a/files/en-us/web/api/eventsource/onopen/index.html b/files/en-us/web/api/eventsource/onopen/index.html index 23d16e2f02e6c46..7ec8ca36d380d7f 100644 --- a/files/en-us/web/api/eventsource/onopen/index.html +++ b/files/en-us/web/api/eventsource/onopen/index.html @@ -52,7 +52,6 @@

    Browser compatibility

    -

    {{Compat("api.EventSource.onopen")}}

    diff --git a/files/en-us/web/api/eventsource/readystate/index.html b/files/en-us/web/api/eventsource/readystate/index.html index 373fab83c5a7593..dc94c92fcd1cee9 100644 --- a/files/en-us/web/api/eventsource/readystate/index.html +++ b/files/en-us/web/api/eventsource/readystate/index.html @@ -60,7 +60,6 @@

    Browser compatibility

    -

    {{Compat("api.EventSource.readyState")}}

    diff --git a/files/en-us/web/api/eventsource/url/index.html b/files/en-us/web/api/eventsource/url/index.html index 78489ebac11fa27..b7587c4c1e9dcb3 100644 --- a/files/en-us/web/api/eventsource/url/index.html +++ b/files/en-us/web/api/eventsource/url/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.EventSource.url")}}

    diff --git a/files/en-us/web/api/eventsource/withcredentials/index.html b/files/en-us/web/api/eventsource/withcredentials/index.html index 777cab72b7314f6..7c1e266628d116b 100644 --- a/files/en-us/web/api/eventsource/withcredentials/index.html +++ b/files/en-us/web/api/eventsource/withcredentials/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.EventSource.withCredentials")}}

    diff --git a/files/en-us/web/api/eventtarget/addeventlistener/index.html b/files/en-us/web/api/eventtarget/addeventlistener/index.html index febbd6f00309751..39e8e65cab25cc1 100644 --- a/files/en-us/web/api/eventtarget/addeventlistener/index.html +++ b/files/en-us/web/api/eventtarget/addeventlistener/index.html @@ -773,8 +773,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EventTarget.addEventListener", 3)}}

    See also

    diff --git a/files/en-us/web/api/eventtarget/dispatchevent/index.html b/files/en-us/web/api/eventtarget/dispatchevent/index.html index a0508ceae3d49c5..1929891b1d1b4a5 100644 --- a/files/en-us/web/api/eventtarget/dispatchevent/index.html +++ b/files/en-us/web/api/eventtarget/dispatchevent/index.html @@ -69,6 +69,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EventTarget.dispatchEvent")}}

    diff --git a/files/en-us/web/api/eventtarget/eventtarget/index.html b/files/en-us/web/api/eventtarget/eventtarget/index.html index 570df825a56f80e..c61e944143837e0 100644 --- a/files/en-us/web/api/eventtarget/eventtarget/index.html +++ b/files/en-us/web/api/eventtarget/eventtarget/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EventTarget.EventTarget")}}

    See also

    diff --git a/files/en-us/web/api/eventtarget/index.html b/files/en-us/web/api/eventtarget/index.html index 9c14cc5d116341f..69b988bde94b034 100644 --- a/files/en-us/web/api/eventtarget/index.html +++ b/files/en-us/web/api/eventtarget/index.html @@ -122,7 +122,6 @@

    Browser compatibility

    -

    {{Compat("api.EventTarget")}}

    diff --git a/files/en-us/web/api/eventtarget/removeeventlistener/index.html b/files/en-us/web/api/eventtarget/removeeventlistener/index.html index 56c45f0f488ce90..c3a882e6dc22259 100644 --- a/files/en-us/web/api/eventtarget/removeeventlistener/index.html +++ b/files/en-us/web/api/eventtarget/removeeventlistener/index.html @@ -155,8 +155,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EventTarget.removeEventListener", 3)}}

    Polyfill to support older browsers

    diff --git a/files/en-us/web/api/ext_disjoint_timer_query/getqueryobjectext/index.html b/files/en-us/web/api/ext_disjoint_timer_query/getqueryobjectext/index.html index 38397889c05e63f..59f56687006dcfe 100644 --- a/files/en-us/web/api/ext_disjoint_timer_query/getqueryobjectext/index.html +++ b/files/en-us/web/api/ext_disjoint_timer_query/getqueryobjectext/index.html @@ -45,8 +45,6 @@

    Examples

    ext.endQueryEXT(ext.TIME_ELAPSED_EXT); - - // At some point in the future, after returning control to the browser var available = ext.getQueryObjectEXT(query, ext.QUERY_RESULT_AVAILABLE_EXT); var disjoint = gl.getParameter(ext.GPU_DISJOINT_EXT); diff --git a/files/en-us/web/api/ext_float_blend/index.html b/files/en-us/web/api/ext_float_blend/index.html index 6ae13a82ff7b66e..5bdcaf6269f257c 100644 --- a/files/en-us/web/api/ext_float_blend/index.html +++ b/files/en-us/web/api/ext_float_blend/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.EXT_float_blend")}}

    See also

    diff --git a/files/en-us/web/api/extendableevent/extendableevent/index.html b/files/en-us/web/api/extendableevent/extendableevent/index.html index 475e97c5ec864c8..419a0648458e205 100644 --- a/files/en-us/web/api/extendableevent/extendableevent/index.html +++ b/files/en-us/web/api/extendableevent/extendableevent/index.html @@ -48,7 +48,6 @@

    Browser compatibility

    -

    {{Compat("api.ExtendableEvent.ExtendableEvent")}}

    diff --git a/files/en-us/web/api/extendableevent/index.html b/files/en-us/web/api/extendableevent/index.html index bf63e19822275b7..b64c7c2a7701bd3 100644 --- a/files/en-us/web/api/extendableevent/index.html +++ b/files/en-us/web/api/extendableevent/index.html @@ -112,7 +112,6 @@

    Browser compatibility

    -

    {{Compat("api.ExtendableEvent")}}

    diff --git a/files/en-us/web/api/extendableevent/waituntil/index.html b/files/en-us/web/api/extendableevent/waituntil/index.html index 8ecdd1c8a3d084c..4da2123777f51d9 100644 --- a/files/en-us/web/api/extendableevent/waituntil/index.html +++ b/files/en-us/web/api/extendableevent/waituntil/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ExtendableEvent.waitUntil")}}

    See also

    diff --git a/files/en-us/web/api/extendablemessageevent/data/index.html b/files/en-us/web/api/extendablemessageevent/data/index.html index 46b7e7597ab18d1..c72165bd2b9fb75 100644 --- a/files/en-us/web/api/extendablemessageevent/data/index.html +++ b/files/en-us/web/api/extendablemessageevent/data/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.ExtendableMessageEvent.data")}}

    diff --git a/files/en-us/web/api/extendablemessageevent/extendablemessageevent/index.html b/files/en-us/web/api/extendablemessageevent/extendablemessageevent/index.html index d1b44452092b1ef..c18ed29496867d3 100644 --- a/files/en-us/web/api/extendablemessageevent/extendablemessageevent/index.html +++ b/files/en-us/web/api/extendablemessageevent/extendablemessageevent/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.ExtendableMessageEvent.ExtendableMessageEvent")}}

    diff --git a/files/en-us/web/api/extendablemessageevent/index.html b/files/en-us/web/api/extendablemessageevent/index.html index 9c18a65dcac10e1..066d8f354641a6d 100644 --- a/files/en-us/web/api/extendablemessageevent/index.html +++ b/files/en-us/web/api/extendablemessageevent/index.html @@ -96,7 +96,6 @@

    Browser compatibility

    -

    {{Compat("api.ExtendableMessageEvent")}}

    diff --git a/files/en-us/web/api/extendablemessageevent/lasteventid/index.html b/files/en-us/web/api/extendablemessageevent/lasteventid/index.html index f238c1465e264ae..528e3ef3dddcaab 100644 --- a/files/en-us/web/api/extendablemessageevent/lasteventid/index.html +++ b/files/en-us/web/api/extendablemessageevent/lasteventid/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.ExtendableMessageEvent.lastEventId")}}

    diff --git a/files/en-us/web/api/extendablemessageevent/origin/index.html b/files/en-us/web/api/extendablemessageevent/origin/index.html index 37b83f2a365555d..4baf5ba64ba655b 100644 --- a/files/en-us/web/api/extendablemessageevent/origin/index.html +++ b/files/en-us/web/api/extendablemessageevent/origin/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.ExtendableMessageEvent.origin")}}

    diff --git a/files/en-us/web/api/extendablemessageevent/ports/index.html b/files/en-us/web/api/extendablemessageevent/ports/index.html index ef27ae5e1cd0c27..2ddd03a1eb39372 100644 --- a/files/en-us/web/api/extendablemessageevent/ports/index.html +++ b/files/en-us/web/api/extendablemessageevent/ports/index.html @@ -64,7 +64,6 @@

    Browser compatibility

    -

    {{Compat("api.ExtendableMessageEvent.ports")}}

    diff --git a/files/en-us/web/api/extendablemessageevent/source/index.html b/files/en-us/web/api/extendablemessageevent/source/index.html index a3ba44fad699f1c..904d7ace99f025f 100644 --- a/files/en-us/web/api/extendablemessageevent/source/index.html +++ b/files/en-us/web/api/extendablemessageevent/source/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.ExtendableMessageEvent.source")}}

    diff --git a/files/en-us/web/api/featurepolicy/allowedfeatures/index.html b/files/en-us/web/api/featurepolicy/allowedfeatures/index.html index 0fff0ad24a30506..cbe57ad859f2315 100644 --- a/files/en-us/web/api/featurepolicy/allowedfeatures/index.html +++ b/files/en-us/web/api/featurepolicy/allowedfeatures/index.html @@ -60,6 +60,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FeaturePolicy.allowedFeatures")}}

    diff --git a/files/en-us/web/api/featurepolicy/allowsfeature/index.html b/files/en-us/web/api/featurepolicy/allowsfeature/index.html index 9378ffd8f95ec8e..fef277d91f1d3d6 100644 --- a/files/en-us/web/api/featurepolicy/allowsfeature/index.html +++ b/files/en-us/web/api/featurepolicy/allowsfeature/index.html @@ -65,6 +65,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FeaturePolicy.allowsFeature")}}

    diff --git a/files/en-us/web/api/featurepolicy/features/index.html b/files/en-us/web/api/featurepolicy/features/index.html index 0a30ea4cddcb3fe..679904fa9a88937 100644 --- a/files/en-us/web/api/featurepolicy/features/index.html +++ b/files/en-us/web/api/featurepolicy/features/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FeaturePolicy.features")}}

    diff --git a/files/en-us/web/api/featurepolicy/getallowlistforfeature/index.html b/files/en-us/web/api/featurepolicy/getallowlistforfeature/index.html index eda891bff1cc802..e62201ed61e4423 100644 --- a/files/en-us/web/api/featurepolicy/getallowlistforfeature/index.html +++ b/files/en-us/web/api/featurepolicy/getallowlistforfeature/index.html @@ -64,6 +64,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FeaturePolicy.getAllowlistForFeature")}}

    diff --git a/files/en-us/web/api/featurepolicy/index.html b/files/en-us/web/api/featurepolicy/index.html index b956781dfae4cce..c6f3b3f76efbd22 100644 --- a/files/en-us/web/api/featurepolicy/index.html +++ b/files/en-us/web/api/featurepolicy/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FeaturePolicy")}}

    See also

    diff --git a/files/en-us/web/api/federatedcredential/federatedcredential/index.html b/files/en-us/web/api/federatedcredential/federatedcredential/index.html index bfb67aa338f97d8..cc91fa9028806f1 100644 --- a/files/en-us/web/api/federatedcredential/federatedcredential/index.html +++ b/files/en-us/web/api/federatedcredential/federatedcredential/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FederatedCredential.FederatedCredential")}}

    diff --git a/files/en-us/web/api/federatedcredential/index.html b/files/en-us/web/api/federatedcredential/index.html index 9822e269f4e8f9c..f369fe1e7b8775f 100644 --- a/files/en-us/web/api/federatedcredential/index.html +++ b/files/en-us/web/api/federatedcredential/index.html @@ -75,6 +75,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FederatedCredential")}}

    diff --git a/files/en-us/web/api/federatedcredential/protocol/index.html b/files/en-us/web/api/federatedcredential/protocol/index.html index b78d024f61ad493..03d4eafcf4ea2b4 100644 --- a/files/en-us/web/api/federatedcredential/protocol/index.html +++ b/files/en-us/web/api/federatedcredential/protocol/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FederatedCredential.protocol")}}

    diff --git a/files/en-us/web/api/federatedcredential/provider/index.html b/files/en-us/web/api/federatedcredential/provider/index.html index 4215d0a7c1ab231..bf3da62b7ec2d94 100644 --- a/files/en-us/web/api/federatedcredential/provider/index.html +++ b/files/en-us/web/api/federatedcredential/provider/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FederatedCredential.provider")}}

    diff --git a/files/en-us/web/api/fetch_api/index.html b/files/en-us/web/api/fetch_api/index.html index 100257bd05e0e24..3779ebed93e3133 100644 --- a/files/en-us/web/api/fetch_api/index.html +++ b/files/en-us/web/api/fetch_api/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WindowOrWorkerGlobalScope.fetch")}}

    See also

    diff --git a/files/en-us/web/api/fetch_api/using_fetch/index.html b/files/en-us/web/api/fetch_api/using_fetch/index.html index 58f64752c91ba4c..901a9d90c5423cb 100644 --- a/files/en-us/web/api/fetch_api/using_fetch/index.html +++ b/files/en-us/web/api/fetch_api/using_fetch/index.html @@ -467,8 +467,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WindowOrWorkerGlobalScope.fetch")}}

    See also

    diff --git a/files/en-us/web/api/fetchevent/client/index.html b/files/en-us/web/api/fetchevent/client/index.html index 6187e096d4c5890..9a4a47789b99321 100644 --- a/files/en-us/web/api/fetchevent/client/index.html +++ b/files/en-us/web/api/fetchevent/client/index.html @@ -38,7 +38,6 @@

    Browser compatibility

    -

    {{Compat("api.FetchEvent.client")}}

    diff --git a/files/en-us/web/api/fetchevent/clientid/index.html b/files/en-us/web/api/fetchevent/clientid/index.html index c2e18e54a4250ef..3f098445c9eef29 100644 --- a/files/en-us/web/api/fetchevent/clientid/index.html +++ b/files/en-us/web/api/fetchevent/clientid/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.FetchEvent.clientId")}}

    diff --git a/files/en-us/web/api/fetchevent/fetchevent/index.html b/files/en-us/web/api/fetchevent/fetchevent/index.html index f21b99c5227a022..fa45a35c8b3cdf6 100644 --- a/files/en-us/web/api/fetchevent/fetchevent/index.html +++ b/files/en-us/web/api/fetchevent/fetchevent/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FetchEvent.FetchEvent")}}

    See also

    diff --git a/files/en-us/web/api/fetchevent/index.html b/files/en-us/web/api/fetchevent/index.html index bf26c7b14eca9f1..2828c4336790c8b 100644 --- a/files/en-us/web/api/fetchevent/index.html +++ b/files/en-us/web/api/fetchevent/index.html @@ -99,7 +99,6 @@

    Browser compatibility

    -

    {{Compat("api.FetchEvent")}}

    diff --git a/files/en-us/web/api/fetchevent/isreload/index.html b/files/en-us/web/api/fetchevent/isreload/index.html index 6158004d863e872..04a41c05c4fb477 100644 --- a/files/en-us/web/api/fetchevent/isreload/index.html +++ b/files/en-us/web/api/fetchevent/isreload/index.html @@ -38,8 +38,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.FetchEvent.isReload")}}

    See also

    diff --git a/files/en-us/web/api/fetchevent/navigationpreload/index.html b/files/en-us/web/api/fetchevent/navigationpreload/index.html index d199dba03e6630e..5e00b87d67301cd 100644 --- a/files/en-us/web/api/fetchevent/navigationpreload/index.html +++ b/files/en-us/web/api/fetchevent/navigationpreload/index.html @@ -63,6 +63,5 @@

    Browser Compatibility

    -

    {{Compat("api.FetchEvent.navigationPreload")}}

    diff --git a/files/en-us/web/api/fetchevent/preloadresponse/index.html b/files/en-us/web/api/fetchevent/preloadresponse/index.html index 8741e392487a22a..f5df62c2088a2d7 100644 --- a/files/en-us/web/api/fetchevent/preloadresponse/index.html +++ b/files/en-us/web/api/fetchevent/preloadresponse/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.FetchEvent.preloadResponse")}}

    diff --git a/files/en-us/web/api/fetchevent/replacesclientid/index.html b/files/en-us/web/api/fetchevent/replacesclientid/index.html index c338ea5ff34f345..7170a4ae58c9097 100644 --- a/files/en-us/web/api/fetchevent/replacesclientid/index.html +++ b/files/en-us/web/api/fetchevent/replacesclientid/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.FetchEvent.replacesClientId")}}

    diff --git a/files/en-us/web/api/fetchevent/request/index.html b/files/en-us/web/api/fetchevent/request/index.html index 2a6af0d1b205d21..605ad3729f187f5 100644 --- a/files/en-us/web/api/fetchevent/request/index.html +++ b/files/en-us/web/api/fetchevent/request/index.html @@ -78,7 +78,6 @@

    Browser compatibility

    -

    {{Compat("api.FetchEvent.request")}}

    diff --git a/files/en-us/web/api/fetchevent/respondwith/index.html b/files/en-us/web/api/fetchevent/respondwith/index.html index f709acc7f59b152..ddaadfa5f5a2e3f 100644 --- a/files/en-us/web/api/fetchevent/respondwith/index.html +++ b/files/en-us/web/api/fetchevent/respondwith/index.html @@ -118,7 +118,6 @@

    Browser compatibility

    -

    {{Compat("api.FetchEvent.respondWith")}}

    diff --git a/files/en-us/web/api/fetchevent/resultingclientid/index.html b/files/en-us/web/api/fetchevent/resultingclientid/index.html index ffa7cb17b4e5ef7..c5fad3694d57b0e 100644 --- a/files/en-us/web/api/fetchevent/resultingclientid/index.html +++ b/files/en-us/web/api/fetchevent/resultingclientid/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.FetchEvent.resultingClientId")}}

    diff --git a/files/en-us/web/api/file/file/index.html b/files/en-us/web/api/file/file/index.html index 6bc1d48019eeacd..9ef4dc5536f512e 100644 --- a/files/en-us/web/api/file/file/index.html +++ b/files/en-us/web/api/file/file/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.File.File")}}

    See also

    diff --git a/files/en-us/web/api/file/index.html b/files/en-us/web/api/file/index.html index 7759792f4108e63..b2bf7ba72632399 100644 --- a/files/en-us/web/api/file/index.html +++ b/files/en-us/web/api/file/index.html @@ -85,8 +85,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.File")}}

    See also

    diff --git a/files/en-us/web/api/file/lastmodified/index.html b/files/en-us/web/api/file/lastmodified/index.html index 1ad5c6a0f7b09f8..200cd5c6b1fcb97 100644 --- a/files/en-us/web/api/file/lastmodified/index.html +++ b/files/en-us/web/api/file/lastmodified/index.html @@ -69,7 +69,6 @@

    Reduced time precision

    // 1519211811670 // ... - // reduced time precision with `privacy.resistFingerprinting` enabled someFile.lastModified; // 1519129853500 @@ -101,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.File.lastModified")}}

    See also

    diff --git a/files/en-us/web/api/file/lastmodifieddate/index.html b/files/en-us/web/api/file/lastmodifieddate/index.html index 8f1a205ce0f7d7b..446ef7c5dd33037 100644 --- a/files/en-us/web/api/file/lastmodifieddate/index.html +++ b/files/en-us/web/api/file/lastmodifieddate/index.html @@ -49,7 +49,6 @@

    Reduced time precision

    // 1519211811670 // ... - // reduced time precision with `privacy.resistFingerprinting` enabled someFile.lastModifiedDate.getTime(); // 1519129853500 @@ -68,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.File.lastModifiedDate")}}

    diff --git a/files/en-us/web/api/file/name/index.html b/files/en-us/web/api/file/name/index.html index 6ac1b7f7163a5d6..3ea5703142c797e 100644 --- a/files/en-us/web/api/file/name/index.html +++ b/files/en-us/web/api/file/name/index.html @@ -60,7 +60,6 @@

    Browser compatibility

    -

    {{Compat("api.File.name")}}

    diff --git a/files/en-us/web/api/file/type/index.html b/files/en-us/web/api/file/type/index.html index 9b6ea08d92a2c58..bc1977bb9086fbf 100644 --- a/files/en-us/web/api/file/type/index.html +++ b/files/en-us/web/api/file/type/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.File.type")}}

    See also

    diff --git a/files/en-us/web/api/file/webkitrelativepath/index.html b/files/en-us/web/api/file/webkitrelativepath/index.html index 9c1425253ca0de0..b90dc0fac4852d6 100644 --- a/files/en-us/web/api/file/webkitrelativepath/index.html +++ b/files/en-us/web/api/file/webkitrelativepath/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.File.webkitRelativePath")}}

    See also

    diff --git a/files/en-us/web/api/file_and_directory_entries_api/index.html b/files/en-us/web/api/file_and_directory_entries_api/index.html index c92a57457e6acf5..ce31a68a1802868 100644 --- a/files/en-us/web/api/file_and_directory_entries_api/index.html +++ b/files/en-us/web/api/file_and_directory_entries_api/index.html @@ -113,8 +113,6 @@

    Browser compatibility

    FileSystem

    - -

    {{Compat("api.FileSystem", 0)}}

    FileSystemSync property

    diff --git a/files/en-us/web/api/file_and_directory_entries_api/introduction/index.html b/files/en-us/web/api/file_and_directory_entries_api/introduction/index.html index 6edcd236763266f..be59aecbb276b79 100644 --- a/files/en-us/web/api/file_and_directory_entries_api/introduction/index.html +++ b/files/en-us/web/api/file_and_directory_entries_api/introduction/index.html @@ -222,8 +222,6 @@

    Browser compatibility

    FileSystem

    - -

    {{Compat("api.FileSystem", 0)}}

    FileSystemSync property

    diff --git a/files/en-us/web/api/file_system_access_api/index.html b/files/en-us/web/api/file_system_access_api/index.html index 6ddf1584f0ae664..b9c3610892ba122 100644 --- a/files/en-us/web/api/file_system_access_api/index.html +++ b/files/en-us/web/api/file_system_access_api/index.html @@ -182,8 +182,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemAccess")}}

    See also

    diff --git a/files/en-us/web/api/fileentrysync/index.html b/files/en-us/web/api/fileentrysync/index.html index 7b78300c0078264..5890312e3916bc7 100644 --- a/files/en-us/web/api/fileentrysync/index.html +++ b/files/en-us/web/api/fileentrysync/index.html @@ -122,8 +122,6 @@
    Exceptions

    Browser compatibility

    - -

    {{Compat("api.FileEntrySync")}}

    See also

    diff --git a/files/en-us/web/api/fileerror/index.html b/files/en-us/web/api/fileerror/index.html index c7aa9359eaec80f..5cd6673bcda5cab 100644 --- a/files/en-us/web/api/fileerror/index.html +++ b/files/en-us/web/api/fileerror/index.html @@ -127,8 +127,6 @@

    Error codes

    Browser compatibility

    - -

    {{Compat("api.FileError")}}

    See also

    diff --git a/files/en-us/web/api/fileexception/index.html b/files/en-us/web/api/fileexception/index.html index f5be5c9ea2d5537..141866fe18770e0 100644 --- a/files/en-us/web/api/fileexception/index.html +++ b/files/en-us/web/api/fileexception/index.html @@ -131,8 +131,6 @@

    Constants

    Browser compatibility

    - -

    {{Compat("api.FileException")}}

    See also

    diff --git a/files/en-us/web/api/filelist/index.html b/files/en-us/web/api/filelist/index.html index b15d90e1b844467..9bbc4212a1e59b9 100644 --- a/files/en-us/web/api/filelist/index.html +++ b/files/en-us/web/api/filelist/index.html @@ -163,8 +163,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileList")}}

     

    diff --git a/files/en-us/web/api/filereader/abort/index.html b/files/en-us/web/api/filereader/abort/index.html index 5ec4293106e85aa..df613bbd053fc11 100644 --- a/files/en-us/web/api/filereader/abort/index.html +++ b/files/en-us/web/api/filereader/abort/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.abort")}}

    See also

    diff --git a/files/en-us/web/api/filereader/abort_event/index.html b/files/en-us/web/api/filereader/abort_event/index.html index 7ed11d2ec2a4647..0ae2446d5ea4290 100644 --- a/files/en-us/web/api/filereader/abort_event/index.html +++ b/files/en-us/web/api/filereader/abort_event/index.html @@ -162,8 +162,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.abort_event")}}

    See also

    diff --git a/files/en-us/web/api/filereader/error/index.html b/files/en-us/web/api/filereader/error/index.html index b4f90351d7208ce..5b25c8329d6d4ae 100644 --- a/files/en-us/web/api/filereader/error/index.html +++ b/files/en-us/web/api/filereader/error/index.html @@ -42,8 +42,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.error")}}

    See also

    diff --git a/files/en-us/web/api/filereader/error_event/index.html b/files/en-us/web/api/filereader/error_event/index.html index 9d03cf47af19a9c..9e11fb42e34c7f5 100644 --- a/files/en-us/web/api/filereader/error_event/index.html +++ b/files/en-us/web/api/filereader/error_event/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.error_event")}}

    See also

    diff --git a/files/en-us/web/api/filereader/index.html b/files/en-us/web/api/filereader/index.html index 24219a6152e9efa..6a50c90b8c063bf 100644 --- a/files/en-us/web/api/filereader/index.html +++ b/files/en-us/web/api/filereader/index.html @@ -142,8 +142,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader")}}

    See also

    diff --git a/files/en-us/web/api/filereader/load_event/index.html b/files/en-us/web/api/filereader/load_event/index.html index 4122bd0e0fa21d0..903a7cb6d8a1700 100644 --- a/files/en-us/web/api/filereader/load_event/index.html +++ b/files/en-us/web/api/filereader/load_event/index.html @@ -159,8 +159,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.load_event")}}

    See also

    diff --git a/files/en-us/web/api/filereader/loadend_event/index.html b/files/en-us/web/api/filereader/loadend_event/index.html index 2433883716abf9e..1ae20bd25213e0d 100644 --- a/files/en-us/web/api/filereader/loadend_event/index.html +++ b/files/en-us/web/api/filereader/loadend_event/index.html @@ -160,8 +160,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.loadend_event")}}

    See also

    diff --git a/files/en-us/web/api/filereader/loadstart_event/index.html b/files/en-us/web/api/filereader/loadstart_event/index.html index 0f08a704da79aa6..e49bce54ea95513 100644 --- a/files/en-us/web/api/filereader/loadstart_event/index.html +++ b/files/en-us/web/api/filereader/loadstart_event/index.html @@ -160,8 +160,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.loadstart_event")}}

    See also

    diff --git a/files/en-us/web/api/filereader/onabort/index.html b/files/en-us/web/api/filereader/onabort/index.html index f930fbfc36a305d..e10bc3aa6c58729 100644 --- a/files/en-us/web/api/filereader/onabort/index.html +++ b/files/en-us/web/api/filereader/onabort/index.html @@ -16,6 +16,4 @@

    Syntax

    Browser compatibility

    - -

    {{Compat("api.FileReader.onabort")}}

    diff --git a/files/en-us/web/api/filereader/onerror/index.html b/files/en-us/web/api/filereader/onerror/index.html index d70fb06fa22aea2..9eddd2ae898eb53 100644 --- a/files/en-us/web/api/filereader/onerror/index.html +++ b/files/en-us/web/api/filereader/onerror/index.html @@ -19,6 +19,4 @@

    Browser compatibility

    - -

    {{Compat("api.FileReader.onerror")}}

    diff --git a/files/en-us/web/api/filereader/onload/index.html b/files/en-us/web/api/filereader/onload/index.html index 6425e08c51cd61e..c2e175482649f8e 100644 --- a/files/en-us/web/api/filereader/onload/index.html +++ b/files/en-us/web/api/filereader/onload/index.html @@ -29,6 +29,4 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.FileReader.onload")}}

    diff --git a/files/en-us/web/api/filereader/progress_event/index.html b/files/en-us/web/api/filereader/progress_event/index.html index d3f9ae974381f05..31649635b1b8e6d 100644 --- a/files/en-us/web/api/filereader/progress_event/index.html +++ b/files/en-us/web/api/filereader/progress_event/index.html @@ -161,8 +161,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.progress_event")}}

    See also

    diff --git a/files/en-us/web/api/filereader/readasarraybuffer/index.html b/files/en-us/web/api/filereader/readasarraybuffer/index.html index 0ca07e4f8a62e0a..a192406bb66446d 100644 --- a/files/en-us/web/api/filereader/readasarraybuffer/index.html +++ b/files/en-us/web/api/filereader/readasarraybuffer/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.readAsArrayBuffer")}}

    See also

    diff --git a/files/en-us/web/api/filereader/readasbinarystring/index.html b/files/en-us/web/api/filereader/readasbinarystring/index.html index e33a3d7bbbf27c4..b1aa84412158ef7 100644 --- a/files/en-us/web/api/filereader/readasbinarystring/index.html +++ b/files/en-us/web/api/filereader/readasbinarystring/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.readAsBinaryString")}}

    See also

    diff --git a/files/en-us/web/api/filereader/readasdataurl/index.html b/files/en-us/web/api/filereader/readasdataurl/index.html index 211222be8ba63ae..71090ac9850db23 100644 --- a/files/en-us/web/api/filereader/readasdataurl/index.html +++ b/files/en-us/web/api/filereader/readasdataurl/index.html @@ -118,8 +118,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.readAsDataURL")}}

    See also

    diff --git a/files/en-us/web/api/filereader/readastext/index.html b/files/en-us/web/api/filereader/readastext/index.html index a520e20174e159b..42f6d3de2036629 100644 --- a/files/en-us/web/api/filereader/readastext/index.html +++ b/files/en-us/web/api/filereader/readastext/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.readAsText")}}

    See also

    diff --git a/files/en-us/web/api/filereader/readystate/index.html b/files/en-us/web/api/filereader/readystate/index.html index 60b528d951ff1da..cfee02f43520f2d 100644 --- a/files/en-us/web/api/filereader/readystate/index.html +++ b/files/en-us/web/api/filereader/readystate/index.html @@ -84,8 +84,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.readyState")}}

    See also

    diff --git a/files/en-us/web/api/filereader/result/index.html b/files/en-us/web/api/filereader/result/index.html index 9d09181accc0350..fec049c4fd56098 100644 --- a/files/en-us/web/api/filereader/result/index.html +++ b/files/en-us/web/api/filereader/result/index.html @@ -93,8 +93,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileReader.result")}}

    See also

    diff --git a/files/en-us/web/api/filereadersync/index.html b/files/en-us/web/api/filereadersync/index.html index 85f1241821688aa..01f0d801747f26e 100644 --- a/files/en-us/web/api/filereadersync/index.html +++ b/files/en-us/web/api/filereadersync/index.html @@ -53,7 +53,6 @@

    Browser Compatibility

    -

    {{Compat("api.FileReaderSync")}}

    diff --git a/files/en-us/web/api/filereadersync/readasarraybuffer/index.html b/files/en-us/web/api/filereadersync/readasarraybuffer/index.html index da40280ab849b76..3ad7b661014aad5 100644 --- a/files/en-us/web/api/filereadersync/readasarraybuffer/index.html +++ b/files/en-us/web/api/filereadersync/readasarraybuffer/index.html @@ -66,7 +66,6 @@

    Browser Compatibility

    -

    {{Compat("api.FileReaderSync.readAsArrayBuffer")}}

    diff --git a/files/en-us/web/api/filereadersync/readasbinarystring/index.html b/files/en-us/web/api/filereadersync/readasbinarystring/index.html index ed1d6b92f714c42..4c2c7abbd02c2de 100644 --- a/files/en-us/web/api/filereadersync/readasbinarystring/index.html +++ b/files/en-us/web/api/filereadersync/readasbinarystring/index.html @@ -52,7 +52,6 @@

    Browser Compatibility

    -

    {{Compat("api.FileReaderSync.readAsBinaryString")}}

    diff --git a/files/en-us/web/api/filereadersync/readasdataurl/index.html b/files/en-us/web/api/filereadersync/readasdataurl/index.html index 132912b245e723e..7e30ef31643826e 100644 --- a/files/en-us/web/api/filereadersync/readasdataurl/index.html +++ b/files/en-us/web/api/filereadersync/readasdataurl/index.html @@ -48,7 +48,6 @@

    Browser Compatibility

    -

    {{Compat("api.FileReaderSync.readAsDataURL")}}

    diff --git a/files/en-us/web/api/filereadersync/readastext/index.html b/files/en-us/web/api/filereadersync/readastext/index.html index ae62a1020e20028..72e5a4481af1884 100644 --- a/files/en-us/web/api/filereadersync/readastext/index.html +++ b/files/en-us/web/api/filereadersync/readastext/index.html @@ -52,7 +52,6 @@

    Browser Compatibility

    -

    {{Compat("api.FileReaderSync.readAsText")}}

    diff --git a/files/en-us/web/api/filesystem/index.html b/files/en-us/web/api/filesystem/index.html index 6e2bece77f6d12b..9492be695ff1cce 100644 --- a/files/en-us/web/api/filesystem/index.html +++ b/files/en-us/web/api/filesystem/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystem")}}

    See also

    diff --git a/files/en-us/web/api/filesystem/name/index.html b/files/en-us/web/api/filesystem/name/index.html index 3cbc42cb8649ded..fb7db10fcece2ae 100644 --- a/files/en-us/web/api/filesystem/name/index.html +++ b/files/en-us/web/api/filesystem/name/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystem.name")}}

    See also

    diff --git a/files/en-us/web/api/filesystem/root/index.html b/files/en-us/web/api/filesystem/root/index.html index 241ebadd934953a..775560d7c531fa6 100644 --- a/files/en-us/web/api/filesystem/root/index.html +++ b/files/en-us/web/api/filesystem/root/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystem.root")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryentry/createreader/index.html b/files/en-us/web/api/filesystemdirectoryentry/createreader/index.html index f9ba794572e7595..5a920c1769dac16 100644 --- a/files/en-us/web/api/filesystemdirectoryentry/createreader/index.html +++ b/files/en-us/web/api/filesystemdirectoryentry/createreader/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryEntry.createReader")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryentry/getdirectory/index.html b/files/en-us/web/api/filesystemdirectoryentry/getdirectory/index.html index 75cb34ded935e13..7c4b8ec4366ce66 100644 --- a/files/en-us/web/api/filesystemdirectoryentry/getdirectory/index.html +++ b/files/en-us/web/api/filesystemdirectoryentry/getdirectory/index.html @@ -106,8 +106,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryEntry.getDirectory")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryentry/index.html b/files/en-us/web/api/filesystemdirectoryentry/index.html index 66f4166dde6994d..1bb09a035078e93 100644 --- a/files/en-us/web/api/filesystemdirectoryentry/index.html +++ b/files/en-us/web/api/filesystemdirectoryentry/index.html @@ -91,8 +91,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryEntry")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryentry/removerecursively/index.html b/files/en-us/web/api/filesystemdirectoryentry/removerecursively/index.html index 3e56bb31a922dcc..d9175f1ac3731ff 100644 --- a/files/en-us/web/api/filesystemdirectoryentry/removerecursively/index.html +++ b/files/en-us/web/api/filesystemdirectoryentry/removerecursively/index.html @@ -73,8 +73,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryEntry.removeRecursively")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryhandle/entries/index.html b/files/en-us/web/api/filesystemdirectoryhandle/entries/index.html index 8ab78c75ddbe5c6..fa503ce708e2ef9 100644 --- a/files/en-us/web/api/filesystemdirectoryhandle/entries/index.html +++ b/files/en-us/web/api/filesystemdirectoryhandle/entries/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryHandle.entries")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryhandle/getdirectoryhandle/index.html b/files/en-us/web/api/filesystemdirectoryhandle/getdirectoryhandle/index.html index aa55cf0fdb8cb9f..bc8c6832f42628b 100644 --- a/files/en-us/web/api/filesystemdirectoryhandle/getdirectoryhandle/index.html +++ b/files/en-us/web/api/filesystemdirectoryhandle/getdirectoryhandle/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryHandle.getDirectoryHandle")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryhandle/getfilehandle/index.html b/files/en-us/web/api/filesystemdirectoryhandle/getfilehandle/index.html index 21c399a5f0e254b..97170c1a5d4a8a7 100644 --- a/files/en-us/web/api/filesystemdirectoryhandle/getfilehandle/index.html +++ b/files/en-us/web/api/filesystemdirectoryhandle/getfilehandle/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryHandle.getFileHandle")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryhandle/index.html b/files/en-us/web/api/filesystemdirectoryhandle/index.html index 2bbe3cbbb126b83..33ba95e0dbdd230 100644 --- a/files/en-us/web/api/filesystemdirectoryhandle/index.html +++ b/files/en-us/web/api/filesystemdirectoryhandle/index.html @@ -94,8 +94,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryHandle")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryhandle/keys/index.html b/files/en-us/web/api/filesystemdirectoryhandle/keys/index.html index e8be36bdf6f16c8..d0eb2375e4653f8 100644 --- a/files/en-us/web/api/filesystemdirectoryhandle/keys/index.html +++ b/files/en-us/web/api/filesystemdirectoryhandle/keys/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryHandle.keys")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryhandle/removeentry/index.html b/files/en-us/web/api/filesystemdirectoryhandle/removeentry/index.html index 94e1ef82ace65db..1836ddf3fbc9209 100644 --- a/files/en-us/web/api/filesystemdirectoryhandle/removeentry/index.html +++ b/files/en-us/web/api/filesystemdirectoryhandle/removeentry/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryHandle.removeEntry")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryhandle/resolve/index.html b/files/en-us/web/api/filesystemdirectoryhandle/resolve/index.html index dc6dd23ab93447b..ed66f7d6db05c10 100644 --- a/files/en-us/web/api/filesystemdirectoryhandle/resolve/index.html +++ b/files/en-us/web/api/filesystemdirectoryhandle/resolve/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryHandle.resolve")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryhandle/values/index.html b/files/en-us/web/api/filesystemdirectoryhandle/values/index.html index 0ce251af1605676..89846cdd8362a8d 100644 --- a/files/en-us/web/api/filesystemdirectoryhandle/values/index.html +++ b/files/en-us/web/api/filesystemdirectoryhandle/values/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryHandle.values")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryreader/index.html b/files/en-us/web/api/filesystemdirectoryreader/index.html index f817d515eb4a3c4..26730cba91a66a9 100644 --- a/files/en-us/web/api/filesystemdirectoryreader/index.html +++ b/files/en-us/web/api/filesystemdirectoryreader/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryReader")}}

    See also

    diff --git a/files/en-us/web/api/filesystemdirectoryreader/readentries/index.html b/files/en-us/web/api/filesystemdirectoryreader/readentries/index.html index 91fc41d068468e8..dcde12c4c706234 100644 --- a/files/en-us/web/api/filesystemdirectoryreader/readentries/index.html +++ b/files/en-us/web/api/filesystemdirectoryreader/readentries/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemDirectoryReader.readEntries")}}

    On Chrome 77, readEntries() will only return the first 100 FileSystemEntry instances. In order to obtain all of the instances, readEntries() must be called multiple times.

    diff --git a/files/en-us/web/api/filesystementry/copyto/index.html b/files/en-us/web/api/filesystementry/copyto/index.html index 70b620dfa2bd005..4522e92edb0d33c 100644 --- a/files/en-us/web/api/filesystementry/copyto/index.html +++ b/files/en-us/web/api/filesystementry/copyto/index.html @@ -64,8 +64,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.FileSystemEntry.copyTo")}}

    See also

    diff --git a/files/en-us/web/api/filesystementry/filesystem/index.html b/files/en-us/web/api/filesystementry/filesystem/index.html index 3553cf236928552..f339a323b960a33 100644 --- a/files/en-us/web/api/filesystementry/filesystem/index.html +++ b/files/en-us/web/api/filesystementry/filesystem/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemEntry.filesystem")}}

    See also

    diff --git a/files/en-us/web/api/filesystementry/fullpath/index.html b/files/en-us/web/api/filesystementry/fullpath/index.html index 3ee122f46471af7..fa45e3542545a39 100644 --- a/files/en-us/web/api/filesystementry/fullpath/index.html +++ b/files/en-us/web/api/filesystementry/fullpath/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemEntry.fullPath")}}

    See also

    diff --git a/files/en-us/web/api/filesystementry/getmetadata/index.html b/files/en-us/web/api/filesystementry/getmetadata/index.html index a414157ee422d0c..553d2297e6f2302 100644 --- a/files/en-us/web/api/filesystementry/getmetadata/index.html +++ b/files/en-us/web/api/filesystementry/getmetadata/index.html @@ -58,8 +58,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.FileSystemEntry.getMetadata")}}

    See also

    diff --git a/files/en-us/web/api/filesystementry/getparent/index.html b/files/en-us/web/api/filesystementry/getparent/index.html index 529ca4a86f4b7a0..a8126fd705bcf01 100644 --- a/files/en-us/web/api/filesystementry/getparent/index.html +++ b/files/en-us/web/api/filesystementry/getparent/index.html @@ -92,8 +92,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemEntry.getParent")}}

    See also

    diff --git a/files/en-us/web/api/filesystementry/index.html b/files/en-us/web/api/filesystementry/index.html index a7f7fc388466b5e..8bbf56eabd9a0a6 100644 --- a/files/en-us/web/api/filesystementry/index.html +++ b/files/en-us/web/api/filesystementry/index.html @@ -109,7 +109,6 @@

    Browser compatibility

    -

    {{Compat("api.FileSystemEntry")}}

    diff --git a/files/en-us/web/api/filesystementry/isdirectory/index.html b/files/en-us/web/api/filesystementry/isdirectory/index.html index f6e890b0b7aef58..a294cd112e048a0 100644 --- a/files/en-us/web/api/filesystementry/isdirectory/index.html +++ b/files/en-us/web/api/filesystementry/isdirectory/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemEntry.isDirectory")}}

    See also

    diff --git a/files/en-us/web/api/filesystementry/isfile/index.html b/files/en-us/web/api/filesystementry/isfile/index.html index 8b0ff58cb516995..ca9a9401f098780 100644 --- a/files/en-us/web/api/filesystementry/isfile/index.html +++ b/files/en-us/web/api/filesystementry/isfile/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemEntry.isFile")}}

    See also

    diff --git a/files/en-us/web/api/filesystementry/moveto/index.html b/files/en-us/web/api/filesystementry/moveto/index.html index c5fb3f56739d4ee..aa599d68c051480 100644 --- a/files/en-us/web/api/filesystementry/moveto/index.html +++ b/files/en-us/web/api/filesystementry/moveto/index.html @@ -70,8 +70,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.FileSystemEntry.moveTo")}}

    See also

    diff --git a/files/en-us/web/api/filesystementry/name/index.html b/files/en-us/web/api/filesystementry/name/index.html index 795e291ad6eb636..90ea1389b522df3 100644 --- a/files/en-us/web/api/filesystementry/name/index.html +++ b/files/en-us/web/api/filesystementry/name/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemEntry.name")}}

    See also

    diff --git a/files/en-us/web/api/filesystementry/remove/index.html b/files/en-us/web/api/filesystementry/remove/index.html index 59fee819e51c829..691db72713f0586 100644 --- a/files/en-us/web/api/filesystementry/remove/index.html +++ b/files/en-us/web/api/filesystementry/remove/index.html @@ -63,8 +63,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.FileSystemEntry.remove")}}

    See also

    diff --git a/files/en-us/web/api/filesystementry/tourl/index.html b/files/en-us/web/api/filesystementry/tourl/index.html index f9493819b607454..6032d8fdf2cf1eb 100644 --- a/files/en-us/web/api/filesystementry/tourl/index.html +++ b/files/en-us/web/api/filesystementry/tourl/index.html @@ -48,8 +48,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.FileSystemEntry.toURL")}}

    See also

    diff --git a/files/en-us/web/api/filesystementrysync/index.html b/files/en-us/web/api/filesystementrysync/index.html index 67e7f29ac4192b9..85e4346ca95a8f2 100644 --- a/files/en-us/web/api/filesystementrysync/index.html +++ b/files/en-us/web/api/filesystementrysync/index.html @@ -374,8 +374,6 @@
    Exceptions

    Browser compatibility

    - -

    {{Compat("api.FileSystemEntrySync")}}

    See also

    diff --git a/files/en-us/web/api/filesystemfileentry/createwriter/index.html b/files/en-us/web/api/filesystemfileentry/createwriter/index.html index 00ba4c853518532..eee1b88320d2d39 100644 --- a/files/en-us/web/api/filesystemfileentry/createwriter/index.html +++ b/files/en-us/web/api/filesystemfileentry/createwriter/index.html @@ -55,8 +55,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.FileSystemFileEntry.createWriter")}}

    See also

    diff --git a/files/en-us/web/api/filesystemfileentry/file/index.html b/files/en-us/web/api/filesystemfileentry/file/index.html index 2a12a57bbff29fa..c46c1d1c01bde3c 100644 --- a/files/en-us/web/api/filesystemfileentry/file/index.html +++ b/files/en-us/web/api/filesystemfileentry/file/index.html @@ -81,8 +81,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemFileEntry.file")}}

    See also

    diff --git a/files/en-us/web/api/filesystemfileentry/index.html b/files/en-us/web/api/filesystemfileentry/index.html index 20dc854ac8285f2..0cc5f40d29567d2 100644 --- a/files/en-us/web/api/filesystemfileentry/index.html +++ b/files/en-us/web/api/filesystemfileentry/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemFileEntry")}}

    See also

    diff --git a/files/en-us/web/api/filesystemfilehandle/createwritable/index.html b/files/en-us/web/api/filesystemfilehandle/createwritable/index.html index e6624c8741f6f87..43ce3a8ed068e38 100644 --- a/files/en-us/web/api/filesystemfilehandle/createwritable/index.html +++ b/files/en-us/web/api/filesystemfilehandle/createwritable/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemFileHandle.createWritable")}}

    See also

    diff --git a/files/en-us/web/api/filesystemfilehandle/getfile/index.html b/files/en-us/web/api/filesystemfilehandle/getfile/index.html index 4cd7f00e1c0c6df..c9b3640cac8ab78 100644 --- a/files/en-us/web/api/filesystemfilehandle/getfile/index.html +++ b/files/en-us/web/api/filesystemfilehandle/getfile/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemFileHandle.getFile")}}

    See also

    diff --git a/files/en-us/web/api/filesystemfilehandle/index.html b/files/en-us/web/api/filesystemfilehandle/index.html index 7921c38869513af..3ed4b909f204e06 100644 --- a/files/en-us/web/api/filesystemfilehandle/index.html +++ b/files/en-us/web/api/filesystemfilehandle/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemFileHandle")}}

    See also

    diff --git a/files/en-us/web/api/filesystemflags/create/index.html b/files/en-us/web/api/filesystemflags/create/index.html index a66befed844dc93..f2f3b0e841b5117 100644 --- a/files/en-us/web/api/filesystemflags/create/index.html +++ b/files/en-us/web/api/filesystemflags/create/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemFlags.create")}}

    See also

    diff --git a/files/en-us/web/api/filesystemflags/exclusive/index.html b/files/en-us/web/api/filesystemflags/exclusive/index.html index 01498bb07807d37..6049de273a8d76f 100644 --- a/files/en-us/web/api/filesystemflags/exclusive/index.html +++ b/files/en-us/web/api/filesystemflags/exclusive/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemFlags.exclusive")}}

    See also

    diff --git a/files/en-us/web/api/filesystemflags/index.html b/files/en-us/web/api/filesystemflags/index.html index c93836fcc2ce4da..7b306c0ec7917b5 100644 --- a/files/en-us/web/api/filesystemflags/index.html +++ b/files/en-us/web/api/filesystemflags/index.html @@ -114,8 +114,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemFlags")}}

    See also

    diff --git a/files/en-us/web/api/filesystemhandle/index.html b/files/en-us/web/api/filesystemhandle/index.html index 2348e1ca658f781..39442655b34b828 100644 --- a/files/en-us/web/api/filesystemhandle/index.html +++ b/files/en-us/web/api/filesystemhandle/index.html @@ -126,8 +126,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemHandle")}}

    See also

    diff --git a/files/en-us/web/api/filesystemhandle/issameentry/index.html b/files/en-us/web/api/filesystemhandle/issameentry/index.html index a5c044b8edb8833..b128bec26809c2f 100644 --- a/files/en-us/web/api/filesystemhandle/issameentry/index.html +++ b/files/en-us/web/api/filesystemhandle/issameentry/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemHandle.isSameEntry")}}

    See also

    diff --git a/files/en-us/web/api/filesystemhandle/kind/index.html b/files/en-us/web/api/filesystemhandle/kind/index.html index 66a0a4c1c4d0310..ee7f08cd20ec6d0 100644 --- a/files/en-us/web/api/filesystemhandle/kind/index.html +++ b/files/en-us/web/api/filesystemhandle/kind/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemHandle.kind")}}

    See also

    diff --git a/files/en-us/web/api/filesystemhandle/name/index.html b/files/en-us/web/api/filesystemhandle/name/index.html index 2ae4dbc8915b7b3..2a7500902529942 100644 --- a/files/en-us/web/api/filesystemhandle/name/index.html +++ b/files/en-us/web/api/filesystemhandle/name/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemHandle.name")}}

    See also

    diff --git a/files/en-us/web/api/filesystemhandle/querypermission/index.html b/files/en-us/web/api/filesystemhandle/querypermission/index.html index aa1cec244da7555..7a0675a85c7a5de 100644 --- a/files/en-us/web/api/filesystemhandle/querypermission/index.html +++ b/files/en-us/web/api/filesystemhandle/querypermission/index.html @@ -84,8 +84,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemHandle.queryPermission")}}

    See also

    diff --git a/files/en-us/web/api/filesystemhandle/requestpermission/index.html b/files/en-us/web/api/filesystemhandle/requestpermission/index.html index 97d66e0574583ab..05941c2af0a0b4f 100644 --- a/files/en-us/web/api/filesystemhandle/requestpermission/index.html +++ b/files/en-us/web/api/filesystemhandle/requestpermission/index.html @@ -85,8 +85,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemHandle.requestPermission")}}

    See also

    diff --git a/files/en-us/web/api/filesystemsync/index.html b/files/en-us/web/api/filesystemsync/index.html index b32986cb5a549e6..6b2b303ff4ebda0 100644 --- a/files/en-us/web/api/filesystemsync/index.html +++ b/files/en-us/web/api/filesystemsync/index.html @@ -51,8 +51,6 @@

    Attributes

    Browser compatibility

    - -

    {{Compat("api.FileSystemSync")}}

    See also

    diff --git a/files/en-us/web/api/filesystemwritablefilestream/index.html b/files/en-us/web/api/filesystemwritablefilestream/index.html index 47685654627e68e..310052e4f21e332 100644 --- a/files/en-us/web/api/filesystemwritablefilestream/index.html +++ b/files/en-us/web/api/filesystemwritablefilestream/index.html @@ -86,8 +86,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemWritableFileStream")}}

    See also

    diff --git a/files/en-us/web/api/filesystemwritablefilestream/seek/index.html b/files/en-us/web/api/filesystemwritablefilestream/seek/index.html index b7f4280c8dc86a8..0be88e02af56296 100644 --- a/files/en-us/web/api/filesystemwritablefilestream/seek/index.html +++ b/files/en-us/web/api/filesystemwritablefilestream/seek/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemWritableFileStream.seek")}}

    See also

    diff --git a/files/en-us/web/api/filesystemwritablefilestream/truncate/index.html b/files/en-us/web/api/filesystemwritablefilestream/truncate/index.html index eab93cae6d4b97d..8a0651b7fa68933 100644 --- a/files/en-us/web/api/filesystemwritablefilestream/truncate/index.html +++ b/files/en-us/web/api/filesystemwritablefilestream/truncate/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemWritableFileStream.truncate")}}

    See also

    diff --git a/files/en-us/web/api/filesystemwritablefilestream/write/index.html b/files/en-us/web/api/filesystemwritablefilestream/write/index.html index 3a9165e185f712d..d605f60a1bd746f 100644 --- a/files/en-us/web/api/filesystemwritablefilestream/write/index.html +++ b/files/en-us/web/api/filesystemwritablefilestream/write/index.html @@ -105,8 +105,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FileSystemWritableFileStream.write")}}

    See also

    diff --git a/files/en-us/web/api/focusevent/focusevent/index.html b/files/en-us/web/api/focusevent/focusevent/index.html index 06936ed8206073d..8fe35bf55b2ebac 100644 --- a/files/en-us/web/api/focusevent/focusevent/index.html +++ b/files/en-us/web/api/focusevent/focusevent/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FocusEvent.FocusEvent")}}

    See also

    diff --git a/files/en-us/web/api/focusevent/index.html b/files/en-us/web/api/focusevent/index.html index 095ea57d8f8bd31..ed4b248c4492734 100644 --- a/files/en-us/web/api/focusevent/index.html +++ b/files/en-us/web/api/focusevent/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FocusEvent")}}

    See also

    diff --git a/files/en-us/web/api/focusevent/relatedtarget/index.html b/files/en-us/web/api/focusevent/relatedtarget/index.html index 79edf8437347b10..993ebd667e1a2f3 100644 --- a/files/en-us/web/api/focusevent/relatedtarget/index.html +++ b/files/en-us/web/api/focusevent/relatedtarget/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FocusEvent.relatedTarget")}}

    See also

    diff --git a/files/en-us/web/api/fontface/display/index.html b/files/en-us/web/api/fontface/display/index.html index 924aafaf65ab5df..0d5948596bfae3b 100644 --- a/files/en-us/web/api/fontface/display/index.html +++ b/files/en-us/web/api/fontface/display/index.html @@ -69,6 +69,5 @@

    Browser Compatibility

    -

    {{Compat("api.FontFace.display")}}

    diff --git a/files/en-us/web/api/fontface/family/index.html b/files/en-us/web/api/fontface/family/index.html index 1a5a645e10fd1e9..3c7641646458db7 100644 --- a/files/en-us/web/api/fontface/family/index.html +++ b/files/en-us/web/api/fontface/family/index.html @@ -54,6 +54,5 @@

    Browser compatibility

    -

    {{Compat("api.FontFace.family")}}

    diff --git a/files/en-us/web/api/fontface/featuresettings/index.html b/files/en-us/web/api/fontface/featuresettings/index.html index a6e6cbac72ee97c..e57c061e64b1f1e 100644 --- a/files/en-us/web/api/fontface/featuresettings/index.html +++ b/files/en-us/web/api/fontface/featuresettings/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FontFace.featureSettings")}}

    diff --git a/files/en-us/web/api/fontface/fontface/index.html b/files/en-us/web/api/fontface/fontface/index.html index 86a9c24b0183914..f301bc367071ff8 100644 --- a/files/en-us/web/api/fontface/fontface/index.html +++ b/files/en-us/web/api/fontface/fontface/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FontFace.FontFace")}}

    See also

    diff --git a/files/en-us/web/api/fontface/index.html b/files/en-us/web/api/fontface/index.html index b2af0e789a7bf6d..fd7c81ff7d76288 100644 --- a/files/en-us/web/api/fontface/index.html +++ b/files/en-us/web/api/fontface/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FontFace")}}

    See Also

    diff --git a/files/en-us/web/api/fontface/load/index.html b/files/en-us/web/api/fontface/load/index.html index ba8cdf3282f979b..b43d6e415692ed9 100644 --- a/files/en-us/web/api/fontface/load/index.html +++ b/files/en-us/web/api/fontface/load/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FontFace.load")}}

    diff --git a/files/en-us/web/api/fontface/loaded/index.html b/files/en-us/web/api/fontface/loaded/index.html index a7f7098d5074964..aad6f4228184ce0 100644 --- a/files/en-us/web/api/fontface/loaded/index.html +++ b/files/en-us/web/api/fontface/loaded/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FontFace.loaded")}}

    diff --git a/files/en-us/web/api/fontface/status/index.html b/files/en-us/web/api/fontface/status/index.html index 9d3d6de7e296a34..0bfded80d3a1368 100644 --- a/files/en-us/web/api/fontface/status/index.html +++ b/files/en-us/web/api/fontface/status/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FontFace.status")}}

    diff --git a/files/en-us/web/api/fontface/stretch/index.html b/files/en-us/web/api/fontface/stretch/index.html index 85f655d0e67a9c1..2c4d871d54638df 100644 --- a/files/en-us/web/api/fontface/stretch/index.html +++ b/files/en-us/web/api/fontface/stretch/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FontFace.stretch")}}

    diff --git a/files/en-us/web/api/fontface/style/index.html b/files/en-us/web/api/fontface/style/index.html index fdfe499c11f20c7..e73629788908796 100644 --- a/files/en-us/web/api/fontface/style/index.html +++ b/files/en-us/web/api/fontface/style/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FontFace.style")}}

    diff --git a/files/en-us/web/api/fontface/unicoderange/index.html b/files/en-us/web/api/fontface/unicoderange/index.html index 1fceaa0ac845597..059f30c5f4a148e 100644 --- a/files/en-us/web/api/fontface/unicoderange/index.html +++ b/files/en-us/web/api/fontface/unicoderange/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FontFace.unicodeRange")}}

    diff --git a/files/en-us/web/api/fontface/variant/index.html b/files/en-us/web/api/fontface/variant/index.html index c024685107aefde..4da629328c73fe5 100644 --- a/files/en-us/web/api/fontface/variant/index.html +++ b/files/en-us/web/api/fontface/variant/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FontFace.variant")}}

    diff --git a/files/en-us/web/api/fontface/weight/index.html b/files/en-us/web/api/fontface/weight/index.html index b77332b592a787e..4e7c3efea1568ac 100644 --- a/files/en-us/web/api/fontface/weight/index.html +++ b/files/en-us/web/api/fontface/weight/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FontFace.weight")}}

    diff --git a/files/en-us/web/api/fontfaceset/check/index.html b/files/en-us/web/api/fontfaceset/check/index.html index 1db9f56a7bdb1d5..8d99f5b415a78e7 100644 --- a/files/en-us/web/api/fontfaceset/check/index.html +++ b/files/en-us/web/api/fontfaceset/check/index.html @@ -59,6 +59,5 @@

    Browser compatibility

    -

    {{Compat("api.FontFaceSet.check")}}

    diff --git a/files/en-us/web/api/fontfaceset/index.html b/files/en-us/web/api/fontfaceset/index.html index d6c25a8fe411d1f..f10e7964d8f93c2 100644 --- a/files/en-us/web/api/fontfaceset/index.html +++ b/files/en-us/web/api/fontfaceset/index.html @@ -73,6 +73,5 @@

    Browser compatibility

    -

    {{Compat("api.FontFaceSet")}}

    diff --git a/files/en-us/web/api/fontfaceset/load/index.html b/files/en-us/web/api/fontfaceset/load/index.html index 29f3092d222903f..5f1860b04526db1 100644 --- a/files/en-us/web/api/fontfaceset/load/index.html +++ b/files/en-us/web/api/fontfaceset/load/index.html @@ -61,6 +61,5 @@

    Browser compatibility

    -

    {{Compat("api.FontFaceSet.load")}}

    diff --git a/files/en-us/web/api/fontfaceset/ready/index.html b/files/en-us/web/api/fontfaceset/ready/index.html index 892edfd87c1a51e..f48feefed3c974c 100644 --- a/files/en-us/web/api/fontfaceset/ready/index.html +++ b/files/en-us/web/api/fontfaceset/ready/index.html @@ -51,6 +51,5 @@

    Browser compatibility

    -

    {{Compat("api.FontFaceSet.ready")}}

    diff --git a/files/en-us/web/api/fontfacesetloadevent/fontfaces/index.html b/files/en-us/web/api/fontfacesetloadevent/fontfaces/index.html index 4050e49c14bfbe9..1e9fadb03e7d4d2 100644 --- a/files/en-us/web/api/fontfacesetloadevent/fontfaces/index.html +++ b/files/en-us/web/api/fontfacesetloadevent/fontfaces/index.html @@ -45,6 +45,5 @@

    Browser Compatibility

    -

    {{Compat("api.FontFaceSetLoadEvent.fontfaces")}}

    diff --git a/files/en-us/web/api/fontfacesetloadevent/fontfacesetloadevent/index.html b/files/en-us/web/api/fontfacesetloadevent/fontfacesetloadevent/index.html index bff76ff3322be78..2eff6b6cfdef8b0 100644 --- a/files/en-us/web/api/fontfacesetloadevent/fontfacesetloadevent/index.html +++ b/files/en-us/web/api/fontfacesetloadevent/fontfacesetloadevent/index.html @@ -53,6 +53,5 @@

    Browser Compatibility

    -

    {{Compat("api.FontFaceSetLoadEvent.FontFaceSetLoadEvent")}}

    diff --git a/files/en-us/web/api/fontfacesetloadevent/index.html b/files/en-us/web/api/fontfacesetloadevent/index.html index 03ed80788b99f38..c05e7e655a593a7 100644 --- a/files/en-us/web/api/fontfacesetloadevent/index.html +++ b/files/en-us/web/api/fontfacesetloadevent/index.html @@ -51,6 +51,5 @@

    Browser Compatibility

    -

    {{Compat("api.FontFaceSetLoadEvent")}}

    diff --git a/files/en-us/web/api/formdata/append/index.html b/files/en-us/web/api/formdata/append/index.html index 4f7bee1c3aeee41..f92940dd81908b0 100644 --- a/files/en-us/web/api/formdata/append/index.html +++ b/files/en-us/web/api/formdata/append/index.html @@ -92,8 +92,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormData.append")}}

    See also

    diff --git a/files/en-us/web/api/formdata/delete/index.html b/files/en-us/web/api/formdata/delete/index.html index eea5a2aa2c11e22..60a559507762984 100644 --- a/files/en-us/web/api/formdata/delete/index.html +++ b/files/en-us/web/api/formdata/delete/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormData.delete")}}

    See also

    diff --git a/files/en-us/web/api/formdata/entries/index.html b/files/en-us/web/api/formdata/entries/index.html index ac51f7de4236738..5426ac191e12216 100644 --- a/files/en-us/web/api/formdata/entries/index.html +++ b/files/en-us/web/api/formdata/entries/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormData.entries")}}

    See also

    diff --git a/files/en-us/web/api/formdata/formdata/index.html b/files/en-us/web/api/formdata/formdata/index.html index 162db18a5106491..92758fa30e7820d 100644 --- a/files/en-us/web/api/formdata/formdata/index.html +++ b/files/en-us/web/api/formdata/formdata/index.html @@ -84,8 +84,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormData.FormData")}}

    See also

    diff --git a/files/en-us/web/api/formdata/get/index.html b/files/en-us/web/api/formdata/get/index.html index 405972cd24c6296..1eb6238121900e0 100644 --- a/files/en-us/web/api/formdata/get/index.html +++ b/files/en-us/web/api/formdata/get/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormData.get")}}

    See also

    diff --git a/files/en-us/web/api/formdata/getall/index.html b/files/en-us/web/api/formdata/getall/index.html index a286185ba88900d..cba6a8ee4b714ad 100644 --- a/files/en-us/web/api/formdata/getall/index.html +++ b/files/en-us/web/api/formdata/getall/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormData.getAll")}}

    See also

    diff --git a/files/en-us/web/api/formdata/has/index.html b/files/en-us/web/api/formdata/has/index.html index 84fc13ed46ef0e4..ca5f67ba32858c0 100644 --- a/files/en-us/web/api/formdata/has/index.html +++ b/files/en-us/web/api/formdata/has/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormData.has")}}

    See also

    diff --git a/files/en-us/web/api/formdata/index.html b/files/en-us/web/api/formdata/index.html index d0cd909286ee9cb..a3fd9e9c0feb553 100644 --- a/files/en-us/web/api/formdata/index.html +++ b/files/en-us/web/api/formdata/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormData")}}

    See also

    diff --git a/files/en-us/web/api/formdata/keys/index.html b/files/en-us/web/api/formdata/keys/index.html index 932e3505be9a54a..f0add285c7516e8 100644 --- a/files/en-us/web/api/formdata/keys/index.html +++ b/files/en-us/web/api/formdata/keys/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormData.keys")}}

    See also

    diff --git a/files/en-us/web/api/formdata/set/index.html b/files/en-us/web/api/formdata/set/index.html index d401531634fac81..a1428e4322e03b0 100644 --- a/files/en-us/web/api/formdata/set/index.html +++ b/files/en-us/web/api/formdata/set/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormData.set")}}

    See also

    diff --git a/files/en-us/web/api/formdata/values/index.html b/files/en-us/web/api/formdata/values/index.html index cdf9016f9664851..ae75b5d0f7f9d10 100644 --- a/files/en-us/web/api/formdata/values/index.html +++ b/files/en-us/web/api/formdata/values/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormData.values")}}

    See also

    diff --git a/files/en-us/web/api/formdataevent/formdata/index.html b/files/en-us/web/api/formdataevent/formdata/index.html index 3c204f6cfc47fc2..9415239c42625af 100644 --- a/files/en-us/web/api/formdataevent/formdata/index.html +++ b/files/en-us/web/api/formdataevent/formdata/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormDataEvent.formData")}}

    See also

    diff --git a/files/en-us/web/api/formdataevent/formdataevent/index.html b/files/en-us/web/api/formdataevent/formdataevent/index.html index 44a048f66a43648..3afe1ccbe4a58b5 100644 --- a/files/en-us/web/api/formdataevent/formdataevent/index.html +++ b/files/en-us/web/api/formdataevent/formdataevent/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormDataEvent.FormDataEvent")}}

    See also

    diff --git a/files/en-us/web/api/formdataevent/index.html b/files/en-us/web/api/formdataevent/index.html index c483f2a60915837..551b4125607e5a2 100644 --- a/files/en-us/web/api/formdataevent/index.html +++ b/files/en-us/web/api/formdataevent/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FormDataEvent")}}

    See also

    diff --git a/files/en-us/web/api/fullscreen_api/guide/index.html b/files/en-us/web/api/fullscreen_api/guide/index.html index 773638b21732dee..381a0a58db9a97b 100644 --- a/files/en-us/web/api/fullscreen_api/guide/index.html +++ b/files/en-us/web/api/fullscreen_api/guide/index.html @@ -205,8 +205,6 @@

    Browser compatibility

    Document.fullscreen

    - -

    {{Compat("api.Document.fullscreen")}}

    Document.fullscreenEnabled

    diff --git a/files/en-us/web/api/fullscreen_api/index.html b/files/en-us/web/api/fullscreen_api/index.html index 527333c018a3c77..0dd52d5ff947b32 100644 --- a/files/en-us/web/api/fullscreen_api/index.html +++ b/files/en-us/web/api/fullscreen_api/index.html @@ -185,8 +185,6 @@

    Browser compatibility

    Document.fullscreen

    - -

    {{Compat("api.Document.fullscreen")}}

    Document.fullscreenElement

    diff --git a/files/en-us/web/api/fullscreenoptions/index.html b/files/en-us/web/api/fullscreenoptions/index.html index 18dc0d14e3aba8a..933911fdeceb539 100644 --- a/files/en-us/web/api/fullscreenoptions/index.html +++ b/files/en-us/web/api/fullscreenoptions/index.html @@ -29,8 +29,6 @@

    Properties

    Browser compatibility

    - -

    {{Compat("api.FullscreenOptions")}}

    See also

    diff --git a/files/en-us/web/api/fullscreenoptions/navigationui/index.html b/files/en-us/web/api/fullscreenoptions/navigationui/index.html index 8a3111d49064620..f6566a411cb1de8 100644 --- a/files/en-us/web/api/fullscreenoptions/navigationui/index.html +++ b/files/en-us/web/api/fullscreenoptions/navigationui/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.FullscreenOptions.navigationUI")}}

    See also

    diff --git a/files/en-us/web/api/gainnode/gain/index.html b/files/en-us/web/api/gainnode/gain/index.html index b56b60e3454af2b..ac44667970898ec 100644 --- a/files/en-us/web/api/gainnode/gain/index.html +++ b/files/en-us/web/api/gainnode/gain/index.html @@ -55,7 +55,6 @@

    Browser compatibility

    -

    {{Compat("api.GainNode.gain")}}

    diff --git a/files/en-us/web/api/gainnode/gainnode/index.html b/files/en-us/web/api/gainnode/gainnode/index.html index 377614794ad800f..c47fec2f531d2d8 100644 --- a/files/en-us/web/api/gainnode/gainnode/index.html +++ b/files/en-us/web/api/gainnode/gainnode/index.html @@ -62,6 +62,5 @@

    Browser Compatibility

    -

    {{Compat("api.GainNode.GainNode")}}

    diff --git a/files/en-us/web/api/gainnode/index.html b/files/en-us/web/api/gainnode/index.html index 8858ceb3671a4b8..7872698249ff240 100644 --- a/files/en-us/web/api/gainnode/index.html +++ b/files/en-us/web/api/gainnode/index.html @@ -86,7 +86,6 @@

    Browser compatibility

    -

    {{Compat("api.GainNode")}}

    diff --git a/files/en-us/web/api/gamepad/axes/index.html b/files/en-us/web/api/gamepad/axes/index.html index 0436d98cd64296a..ceeba48f6207e7c 100644 --- a/files/en-us/web/api/gamepad/axes/index.html +++ b/files/en-us/web/api/gamepad/axes/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Gamepad.axes")}}

    See also

    diff --git a/files/en-us/web/api/gamepad/buttons/index.html b/files/en-us/web/api/gamepad/buttons/index.html index 94d219bde125631..9924de8957f1f90 100644 --- a/files/en-us/web/api/gamepad/buttons/index.html +++ b/files/en-us/web/api/gamepad/buttons/index.html @@ -86,8 +86,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Gamepad.buttons")}}

     
    diff --git a/files/en-us/web/api/gamepad/index.html b/files/en-us/web/api/gamepad/index.html index 491c7b6f1f0c598..193c3a9c0516584 100644 --- a/files/en-us/web/api/gamepad/index.html +++ b/files/en-us/web/api/gamepad/index.html @@ -85,8 +85,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Gamepad")}}

    See also

    diff --git a/files/en-us/web/api/gamepad_api/index.html b/files/en-us/web/api/gamepad_api/index.html index 7d03b4ae0e8a97b..0fb7a21183728e1 100644 --- a/files/en-us/web/api/gamepad_api/index.html +++ b/files/en-us/web/api/gamepad_api/index.html @@ -83,8 +83,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Gamepad")}}

    See also

    diff --git a/files/en-us/web/api/gamepadevent/gamepadevent/index.html b/files/en-us/web/api/gamepadevent/gamepadevent/index.html index 940c650c3121ed1..4dd89b61da81389 100644 --- a/files/en-us/web/api/gamepadevent/gamepadevent/index.html +++ b/files/en-us/web/api/gamepadevent/gamepadevent/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GamepadEvent.GamepadEvent")}}

    diff --git a/files/en-us/web/api/geolocation/clearwatch/index.html b/files/en-us/web/api/geolocation/clearwatch/index.html index 0493701ca5c5cdc..cf934c9625d3bc5 100644 --- a/files/en-us/web/api/geolocation/clearwatch/index.html +++ b/files/en-us/web/api/geolocation/clearwatch/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Geolocation.clearWatch")}}

    See also

    diff --git a/files/en-us/web/api/geolocation/getcurrentposition/index.html b/files/en-us/web/api/geolocation/getcurrentposition/index.html index 8886e22cab3c938..21132034a1d81e7 100644 --- a/files/en-us/web/api/geolocation/getcurrentposition/index.html +++ b/files/en-us/web/api/geolocation/getcurrentposition/index.html @@ -81,8 +81,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Geolocation.getCurrentPosition")}}

    See also

    diff --git a/files/en-us/web/api/geolocation/index.html b/files/en-us/web/api/geolocation/index.html index 6737db250c460dd..8e177fb8d24a507 100644 --- a/files/en-us/web/api/geolocation/index.html +++ b/files/en-us/web/api/geolocation/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Geolocation")}}

    See also

    diff --git a/files/en-us/web/api/geolocation/watchposition/index.html b/files/en-us/web/api/geolocation/watchposition/index.html index bf261c91f68b98c..91d69b04967e009 100644 --- a/files/en-us/web/api/geolocation/watchposition/index.html +++ b/files/en-us/web/api/geolocation/watchposition/index.html @@ -84,8 +84,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Geolocation.watchPosition")}}

    See also

    diff --git a/files/en-us/web/api/geolocationcoordinates/accuracy/index.html b/files/en-us/web/api/geolocationcoordinates/accuracy/index.html index 7c9ac444b4a9c1c..4d33ae75f422ffc 100644 --- a/files/en-us/web/api/geolocationcoordinates/accuracy/index.html +++ b/files/en-us/web/api/geolocationcoordinates/accuracy/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationCoordinates.accuracy")}}

    See also

    diff --git a/files/en-us/web/api/geolocationcoordinates/altitude/index.html b/files/en-us/web/api/geolocationcoordinates/altitude/index.html index 87684598d7d1df9..b0ee1545f2b5d41 100644 --- a/files/en-us/web/api/geolocationcoordinates/altitude/index.html +++ b/files/en-us/web/api/geolocationcoordinates/altitude/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationCoordinates.altitude")}}

    See also

    diff --git a/files/en-us/web/api/geolocationcoordinates/altitudeaccuracy/index.html b/files/en-us/web/api/geolocationcoordinates/altitudeaccuracy/index.html index 2f15bd295100988..0c597e10a4f1988 100644 --- a/files/en-us/web/api/geolocationcoordinates/altitudeaccuracy/index.html +++ b/files/en-us/web/api/geolocationcoordinates/altitudeaccuracy/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationCoordinates.altitudeAccuracy")}}

    See also

    diff --git a/files/en-us/web/api/geolocationcoordinates/heading/index.html b/files/en-us/web/api/geolocationcoordinates/heading/index.html index f8e2fe7ed8cca6b..de134dfcf2fbe1d 100644 --- a/files/en-us/web/api/geolocationcoordinates/heading/index.html +++ b/files/en-us/web/api/geolocationcoordinates/heading/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationCoordinates.heading")}}

    See also

    diff --git a/files/en-us/web/api/geolocationcoordinates/index.html b/files/en-us/web/api/geolocationcoordinates/index.html index 9d588707f1faae5..471df0a3eaa6fc9 100644 --- a/files/en-us/web/api/geolocationcoordinates/index.html +++ b/files/en-us/web/api/geolocationcoordinates/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationCoordinates")}}

    See also

    diff --git a/files/en-us/web/api/geolocationcoordinates/latitude/index.html b/files/en-us/web/api/geolocationcoordinates/latitude/index.html index 561870839bf956e..76d197a94fc472a 100644 --- a/files/en-us/web/api/geolocationcoordinates/latitude/index.html +++ b/files/en-us/web/api/geolocationcoordinates/latitude/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationCoordinates.latitude")}}

    See also

    diff --git a/files/en-us/web/api/geolocationcoordinates/longitude/index.html b/files/en-us/web/api/geolocationcoordinates/longitude/index.html index f88ce02d61bc894..fcab4ea605afd71 100644 --- a/files/en-us/web/api/geolocationcoordinates/longitude/index.html +++ b/files/en-us/web/api/geolocationcoordinates/longitude/index.html @@ -98,8 +98,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationCoordinates.longitude")}}

    See also

    diff --git a/files/en-us/web/api/geolocationcoordinates/speed/index.html b/files/en-us/web/api/geolocationcoordinates/speed/index.html index 008943ed80590c0..92a81678bdb3748 100644 --- a/files/en-us/web/api/geolocationcoordinates/speed/index.html +++ b/files/en-us/web/api/geolocationcoordinates/speed/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationCoordinates.speed")}}

    See also

    diff --git a/files/en-us/web/api/geolocationposition/coords/index.html b/files/en-us/web/api/geolocationposition/coords/index.html index 1c2acf4cef87264..2561debfdd4f949 100644 --- a/files/en-us/web/api/geolocationposition/coords/index.html +++ b/files/en-us/web/api/geolocationposition/coords/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationPosition.coords")}}

    See also

    diff --git a/files/en-us/web/api/geolocationposition/index.html b/files/en-us/web/api/geolocationposition/index.html index bff9ed91c0c57d5..4f0f8d8856e974f 100644 --- a/files/en-us/web/api/geolocationposition/index.html +++ b/files/en-us/web/api/geolocationposition/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationPosition")}}

    See also

    diff --git a/files/en-us/web/api/geolocationposition/timestamp/index.html b/files/en-us/web/api/geolocationposition/timestamp/index.html index 2566895fe7d0afe..71f14680ec63c1d 100644 --- a/files/en-us/web/api/geolocationposition/timestamp/index.html +++ b/files/en-us/web/api/geolocationposition/timestamp/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationPosition.timestamp")}}

    See also

    diff --git a/files/en-us/web/api/geolocationpositionerror/code/index.html b/files/en-us/web/api/geolocationpositionerror/code/index.html index 2a48361686c6382..fe741f392af55b2 100644 --- a/files/en-us/web/api/geolocationpositionerror/code/index.html +++ b/files/en-us/web/api/geolocationpositionerror/code/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationPositionError.code")}}

    See also

    diff --git a/files/en-us/web/api/geolocationpositionerror/index.html b/files/en-us/web/api/geolocationpositionerror/index.html index 666240dbbfafa9c..b921ee8a5202afa 100644 --- a/files/en-us/web/api/geolocationpositionerror/index.html +++ b/files/en-us/web/api/geolocationpositionerror/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationPositionError")}}

    See also

    diff --git a/files/en-us/web/api/geolocationpositionerror/message/index.html b/files/en-us/web/api/geolocationpositionerror/message/index.html index 98ddeeed65627a7..2857291cd7fb3f6 100644 --- a/files/en-us/web/api/geolocationpositionerror/message/index.html +++ b/files/en-us/web/api/geolocationpositionerror/message/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeolocationPositionError.message")}}

    See also

    diff --git a/files/en-us/web/api/geometryutils/index.html b/files/en-us/web/api/geometryutils/index.html index 913fac9ba975334..6c9baca9f424afb 100644 --- a/files/en-us/web/api/geometryutils/index.html +++ b/files/en-us/web/api/geometryutils/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GeometryUtils")}}

    diff --git a/files/en-us/web/api/gestureevent/index.html b/files/en-us/web/api/gestureevent/index.html index 9621737c8d05cc7..88c4f8bdb5e5436 100644 --- a/files/en-us/web/api/gestureevent/index.html +++ b/files/en-us/web/api/gestureevent/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GestureEvent")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/index.html b/files/en-us/web/api/globaleventhandlers/index.html index 5f68f3985d91253..370f72eb03b10e5 100644 --- a/files/en-us/web/api/globaleventhandlers/index.html +++ b/files/en-us/web/api/globaleventhandlers/index.html @@ -257,7 +257,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onabort/index.html b/files/en-us/web/api/globaleventhandlers/onabort/index.html index d549b7f811619b2..36acb583d62f275 100644 --- a/files/en-us/web/api/globaleventhandlers/onabort/index.html +++ b/files/en-us/web/api/globaleventhandlers/onabort/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onabort")}}

    This property is not available with Firefox 2 or Safari.

    diff --git a/files/en-us/web/api/globaleventhandlers/onanimationcancel/index.html b/files/en-us/web/api/globaleventhandlers/onanimationcancel/index.html index 07f653df953bef0..2ede4c3b6f4d8a7 100644 --- a/files/en-us/web/api/globaleventhandlers/onanimationcancel/index.html +++ b/files/en-us/web/api/globaleventhandlers/onanimationcancel/index.html @@ -189,8 +189,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onanimationcancel")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onanimationend/index.html b/files/en-us/web/api/globaleventhandlers/onanimationend/index.html index b8c9ffb6b2ea907..f57ac3efe803fd4 100644 --- a/files/en-us/web/api/globaleventhandlers/onanimationend/index.html +++ b/files/en-us/web/api/globaleventhandlers/onanimationend/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onanimationend")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onanimationiteration/index.html b/files/en-us/web/api/globaleventhandlers/onanimationiteration/index.html index ab6efadc6158b04..4ad53f210159194 100644 --- a/files/en-us/web/api/globaleventhandlers/onanimationiteration/index.html +++ b/files/en-us/web/api/globaleventhandlers/onanimationiteration/index.html @@ -176,8 +176,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onanimationiteration")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onanimationstart/index.html b/files/en-us/web/api/globaleventhandlers/onanimationstart/index.html index 9df83d2ce98bbb9..3aecbceaba1f338 100644 --- a/files/en-us/web/api/globaleventhandlers/onanimationstart/index.html +++ b/files/en-us/web/api/globaleventhandlers/onanimationstart/index.html @@ -191,8 +191,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onanimationstart")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onauxclick/index.html b/files/en-us/web/api/globaleventhandlers/onauxclick/index.html index dbff4977573d2bc..e77fd9ec302d79c 100644 --- a/files/en-us/web/api/globaleventhandlers/onauxclick/index.html +++ b/files/en-us/web/api/globaleventhandlers/onauxclick/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onauxclick")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onblur/index.html b/files/en-us/web/api/globaleventhandlers/onblur/index.html index 9441125ad53083d..411f5db2f1676fb 100644 --- a/files/en-us/web/api/globaleventhandlers/onblur/index.html +++ b/files/en-us/web/api/globaleventhandlers/onblur/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onblur")}}

    In contrast to IE, in which almost all kinds of elements receive the blur event, only a few kinds of elements on Gecko browsers work with this event.

    diff --git a/files/en-us/web/api/globaleventhandlers/oncancel/index.html b/files/en-us/web/api/globaleventhandlers/oncancel/index.html index 2a0dc9879f88c76..21ae3fe64cdb48d 100644 --- a/files/en-us/web/api/globaleventhandlers/oncancel/index.html +++ b/files/en-us/web/api/globaleventhandlers/oncancel/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.oncancel")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/oncanplay/index.html b/files/en-us/web/api/globaleventhandlers/oncanplay/index.html index 58dd81e072c4df5..c58b59c57d1c760 100644 --- a/files/en-us/web/api/globaleventhandlers/oncanplay/index.html +++ b/files/en-us/web/api/globaleventhandlers/oncanplay/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.oncanplay")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/oncanplaythrough/index.html b/files/en-us/web/api/globaleventhandlers/oncanplaythrough/index.html index 502ddcb12e614e9..1d327882abb1104 100644 --- a/files/en-us/web/api/globaleventhandlers/oncanplaythrough/index.html +++ b/files/en-us/web/api/globaleventhandlers/oncanplaythrough/index.html @@ -10,7 +10,6 @@ ---
    {{ ApiRef("HTML DOM") }}
    -

    The oncanplaythrough property of the {{domxref("GlobalEventHandlers")}} mixin is the {{domxref("EventHandler")}} for processing {{event("canplaythrough")}} events.

    The canplaythrough event is fired when the user agent can play the media and estimates that enough data has been loaded to play the media up to its end without having to stop for further buffering of content.

    @@ -42,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.oncanplaythrough")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onchange/index.html b/files/en-us/web/api/globaleventhandlers/onchange/index.html index 365a287bf34a1b0..0b1ca8b8f84e7f4 100644 --- a/files/en-us/web/api/globaleventhandlers/onchange/index.html +++ b/files/en-us/web/api/globaleventhandlers/onchange/index.html @@ -72,7 +72,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onchange")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onclick/index.html b/files/en-us/web/api/globaleventhandlers/onclick/index.html index b74df7d6996e686..aaa55e63d858dc0 100644 --- a/files/en-us/web/api/globaleventhandlers/onclick/index.html +++ b/files/en-us/web/api/globaleventhandlers/onclick/index.html @@ -97,7 +97,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onclick")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onclose/index.html b/files/en-us/web/api/globaleventhandlers/onclose/index.html index bc06dca0572c920..c8ec9d7042e8fce 100644 --- a/files/en-us/web/api/globaleventhandlers/onclose/index.html +++ b/files/en-us/web/api/globaleventhandlers/onclose/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onclose")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/oncontextmenu/index.html b/files/en-us/web/api/globaleventhandlers/oncontextmenu/index.html index 755e060dbfb14c4..3fb43a0485c0af6 100644 --- a/files/en-us/web/api/globaleventhandlers/oncontextmenu/index.html +++ b/files/en-us/web/api/globaleventhandlers/oncontextmenu/index.html @@ -130,7 +130,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.oncontextmenu")}}

    Unless the default behavior is prevented, the browser context menu will activate upon right-click. However, IE8 has a bug with this and will not activate the context menu if a contextmenu event handler is defined.

    diff --git a/files/en-us/web/api/globaleventhandlers/oncuechange/index.html b/files/en-us/web/api/globaleventhandlers/oncuechange/index.html index 54e7630e98dd9e1..e2b50a566965ff8 100644 --- a/files/en-us/web/api/globaleventhandlers/oncuechange/index.html +++ b/files/en-us/web/api/globaleventhandlers/oncuechange/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.oncuechange")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ondblclick/index.html b/files/en-us/web/api/globaleventhandlers/ondblclick/index.html index 7db6c6f45611cf0..11aae36a71c6e4c 100644 --- a/files/en-us/web/api/globaleventhandlers/ondblclick/index.html +++ b/files/en-us/web/api/globaleventhandlers/ondblclick/index.html @@ -70,7 +70,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.ondblclick")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/ondrag/index.html b/files/en-us/web/api/globaleventhandlers/ondrag/index.html index 64267a41dbf3ca7..454cd7d5ac9bfa7 100644 --- a/files/en-us/web/api/globaleventhandlers/ondrag/index.html +++ b/files/en-us/web/api/globaleventhandlers/ondrag/index.html @@ -104,8 +104,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ondrag")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ondragend/index.html b/files/en-us/web/api/globaleventhandlers/ondragend/index.html index 42fd505474b35b5..9c6f78acd9ade75 100644 --- a/files/en-us/web/api/globaleventhandlers/ondragend/index.html +++ b/files/en-us/web/api/globaleventhandlers/ondragend/index.html @@ -138,8 +138,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ondragend")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ondragenter/index.html b/files/en-us/web/api/globaleventhandlers/ondragenter/index.html index 6622ef0793d3125..6e58d4230a1416e 100644 --- a/files/en-us/web/api/globaleventhandlers/ondragenter/index.html +++ b/files/en-us/web/api/globaleventhandlers/ondragenter/index.html @@ -138,8 +138,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ondragenter")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ondragleave/index.html b/files/en-us/web/api/globaleventhandlers/ondragleave/index.html index d97a45caefad86c..d1c41fb36b8b79c 100644 --- a/files/en-us/web/api/globaleventhandlers/ondragleave/index.html +++ b/files/en-us/web/api/globaleventhandlers/ondragleave/index.html @@ -139,8 +139,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ondragleave")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ondragover/index.html b/files/en-us/web/api/globaleventhandlers/ondragover/index.html index e019475fc51b6e6..a4ed16ff87832ec 100644 --- a/files/en-us/web/api/globaleventhandlers/ondragover/index.html +++ b/files/en-us/web/api/globaleventhandlers/ondragover/index.html @@ -104,8 +104,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ondragover")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ondragstart/index.html b/files/en-us/web/api/globaleventhandlers/ondragstart/index.html index 823a5d9f4776f27..c308e9bdd8e5e3d 100644 --- a/files/en-us/web/api/globaleventhandlers/ondragstart/index.html +++ b/files/en-us/web/api/globaleventhandlers/ondragstart/index.html @@ -104,8 +104,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ondragstart")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ondrop/index.html b/files/en-us/web/api/globaleventhandlers/ondrop/index.html index 80acc4447061457..07fb074617abd74 100644 --- a/files/en-us/web/api/globaleventhandlers/ondrop/index.html +++ b/files/en-us/web/api/globaleventhandlers/ondrop/index.html @@ -104,8 +104,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ondrop")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ondurationchange/index.html b/files/en-us/web/api/globaleventhandlers/ondurationchange/index.html index a654fa4ec2a3b0b..0095ca75510436f 100644 --- a/files/en-us/web/api/globaleventhandlers/ondurationchange/index.html +++ b/files/en-us/web/api/globaleventhandlers/ondurationchange/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ondurationchange")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onemptied/index.html b/files/en-us/web/api/globaleventhandlers/onemptied/index.html index 6c16028e7c36c02..c23298ae4977467 100644 --- a/files/en-us/web/api/globaleventhandlers/onemptied/index.html +++ b/files/en-us/web/api/globaleventhandlers/onemptied/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onemptied")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onended/index.html b/files/en-us/web/api/globaleventhandlers/onended/index.html index dd4592b29a77c69..88b86c12a371ef4 100644 --- a/files/en-us/web/api/globaleventhandlers/onended/index.html +++ b/files/en-us/web/api/globaleventhandlers/onended/index.html @@ -41,8 +41,6 @@

    Specifications

     Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onended")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onerror/index.html b/files/en-us/web/api/globaleventhandlers/onerror/index.html index 1a0aebdcaeb386b..b7f8864d015170f 100644 --- a/files/en-us/web/api/globaleventhandlers/onerror/index.html +++ b/files/en-us/web/api/globaleventhandlers/onerror/index.html @@ -109,8 +109,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onerror")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onfocus/index.html b/files/en-us/web/api/globaleventhandlers/onfocus/index.html index e00e20c7b18644e..263ad3f5d2db697 100644 --- a/files/en-us/web/api/globaleventhandlers/onfocus/index.html +++ b/files/en-us/web/api/globaleventhandlers/onfocus/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onfocus")}}

    In contrast to IE, in which almost all kinds of elements receive the focus event, almost all kinds of elements on Gecko browsers do NOT work with this event.

    diff --git a/files/en-us/web/api/globaleventhandlers/onformdata/index.html b/files/en-us/web/api/globaleventhandlers/onformdata/index.html index c12bb5b9f6185f9..4780a7c3125de95 100644 --- a/files/en-us/web/api/globaleventhandlers/onformdata/index.html +++ b/files/en-us/web/api/globaleventhandlers/onformdata/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onformdata")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ongotpointercapture/index.html b/files/en-us/web/api/globaleventhandlers/ongotpointercapture/index.html index 2202705cb15dc01..dbcf19ea11dd664 100644 --- a/files/en-us/web/api/globaleventhandlers/ongotpointercapture/index.html +++ b/files/en-us/web/api/globaleventhandlers/ongotpointercapture/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ongotpointercapture")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/oninput/index.html b/files/en-us/web/api/globaleventhandlers/oninput/index.html index 8da622c7b1814ab..8a6432cad7b34d6 100644 --- a/files/en-us/web/api/globaleventhandlers/oninput/index.html +++ b/files/en-us/web/api/globaleventhandlers/oninput/index.html @@ -71,8 +71,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.oninput")}}

    The following links discuss compatibility issues and fixes that may be helpful when working with older browsers:

    diff --git a/files/en-us/web/api/globaleventhandlers/oninvalid/index.html b/files/en-us/web/api/globaleventhandlers/oninvalid/index.html index a6265e22daebc71..4c53ac8fdbec043 100644 --- a/files/en-us/web/api/globaleventhandlers/oninvalid/index.html +++ b/files/en-us/web/api/globaleventhandlers/oninvalid/index.html @@ -85,8 +85,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.oninvalid")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onkeydown/index.html b/files/en-us/web/api/globaleventhandlers/onkeydown/index.html index 05b071d0f521d20..febea44447c2ebf 100644 --- a/files/en-us/web/api/globaleventhandlers/onkeydown/index.html +++ b/files/en-us/web/api/globaleventhandlers/onkeydown/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onkeydown")}}

    Compatibility notes

    diff --git a/files/en-us/web/api/globaleventhandlers/onkeypress/index.html b/files/en-us/web/api/globaleventhandlers/onkeypress/index.html index 4f510f342d8e442..4be8de61c579a5e 100644 --- a/files/en-us/web/api/globaleventhandlers/onkeypress/index.html +++ b/files/en-us/web/api/globaleventhandlers/onkeypress/index.html @@ -142,7 +142,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onkeypress")}}

    Browser compatibility notes

    diff --git a/files/en-us/web/api/globaleventhandlers/onkeyup/index.html b/files/en-us/web/api/globaleventhandlers/onkeyup/index.html index 5883a5f2405f66d..e05dcff88c5948a 100644 --- a/files/en-us/web/api/globaleventhandlers/onkeyup/index.html +++ b/files/en-us/web/api/globaleventhandlers/onkeyup/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onkeyup")}}

    Compatibility notes

    diff --git a/files/en-us/web/api/globaleventhandlers/onload/index.html b/files/en-us/web/api/globaleventhandlers/onload/index.html index 2338546eb151c8d..213a6df54e02986 100644 --- a/files/en-us/web/api/globaleventhandlers/onload/index.html +++ b/files/en-us/web/api/globaleventhandlers/onload/index.html @@ -87,7 +87,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onload")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onloadeddata/index.html b/files/en-us/web/api/globaleventhandlers/onloadeddata/index.html index baa0cb651bf0c93..4a98a13b0729e4c 100644 --- a/files/en-us/web/api/globaleventhandlers/onloadeddata/index.html +++ b/files/en-us/web/api/globaleventhandlers/onloadeddata/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onloadeddata")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onloadedmetadata/index.html b/files/en-us/web/api/globaleventhandlers/onloadedmetadata/index.html index 286fc4cbdaf615d..5b48bed0d99dc9f 100644 --- a/files/en-us/web/api/globaleventhandlers/onloadedmetadata/index.html +++ b/files/en-us/web/api/globaleventhandlers/onloadedmetadata/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onloadedmetadata")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onloadend/index.html b/files/en-us/web/api/globaleventhandlers/onloadend/index.html index 8f9a7d31cb2dd17..9e5e62daafdee3f 100644 --- a/files/en-us/web/api/globaleventhandlers/onloadend/index.html +++ b/files/en-us/web/api/globaleventhandlers/onloadend/index.html @@ -51,6 +51,5 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onloadend")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onloadstart/index.html b/files/en-us/web/api/globaleventhandlers/onloadstart/index.html index 0af2abec462d856..60b133694f34b8e 100644 --- a/files/en-us/web/api/globaleventhandlers/onloadstart/index.html +++ b/files/en-us/web/api/globaleventhandlers/onloadstart/index.html @@ -70,6 +70,5 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onloadstart")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onlostpointercapture/index.html b/files/en-us/web/api/globaleventhandlers/onlostpointercapture/index.html index ea07fce6e1461c9..bf464c6660ed1d1 100644 --- a/files/en-us/web/api/globaleventhandlers/onlostpointercapture/index.html +++ b/files/en-us/web/api/globaleventhandlers/onlostpointercapture/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onlostpointercapture")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onmousedown/index.html b/files/en-us/web/api/globaleventhandlers/onmousedown/index.html index 9194861c4b4c6fe..d31b617aa7660f3 100644 --- a/files/en-us/web/api/globaleventhandlers/onmousedown/index.html +++ b/files/en-us/web/api/globaleventhandlers/onmousedown/index.html @@ -109,7 +109,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onmousedown")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onmouseenter/index.html b/files/en-us/web/api/globaleventhandlers/onmouseenter/index.html index a0a7c3d3fccfb30..b8108f21d79143d 100644 --- a/files/en-us/web/api/globaleventhandlers/onmouseenter/index.html +++ b/files/en-us/web/api/globaleventhandlers/onmouseenter/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onmouseenter")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onmouseleave/index.html b/files/en-us/web/api/globaleventhandlers/onmouseleave/index.html index 7e784122ce67189..c73dc1745983354 100644 --- a/files/en-us/web/api/globaleventhandlers/onmouseleave/index.html +++ b/files/en-us/web/api/globaleventhandlers/onmouseleave/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onmouseleave")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onmousemove/index.html b/files/en-us/web/api/globaleventhandlers/onmousemove/index.html index f92a309f8cf5042..8df18a803709d4b 100644 --- a/files/en-us/web/api/globaleventhandlers/onmousemove/index.html +++ b/files/en-us/web/api/globaleventhandlers/onmousemove/index.html @@ -106,7 +106,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onmousemove")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onmouseout/index.html b/files/en-us/web/api/globaleventhandlers/onmouseout/index.html index 4574041c53c578b..dc79f8a7931a34d 100644 --- a/files/en-us/web/api/globaleventhandlers/onmouseout/index.html +++ b/files/en-us/web/api/globaleventhandlers/onmouseout/index.html @@ -67,6 +67,5 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onmouseout")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onmouseover/index.html b/files/en-us/web/api/globaleventhandlers/onmouseover/index.html index 653fb731eca4582..12da526fc49178c 100644 --- a/files/en-us/web/api/globaleventhandlers/onmouseover/index.html +++ b/files/en-us/web/api/globaleventhandlers/onmouseover/index.html @@ -67,6 +67,5 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onmouseover")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onmouseup/index.html b/files/en-us/web/api/globaleventhandlers/onmouseup/index.html index a5713fbbd1144cb..1dbeb03762a6074 100644 --- a/files/en-us/web/api/globaleventhandlers/onmouseup/index.html +++ b/files/en-us/web/api/globaleventhandlers/onmouseup/index.html @@ -113,7 +113,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onmouseup")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onmousewheel/index.html b/files/en-us/web/api/globaleventhandlers/onmousewheel/index.html index 6ac4db8ed28ac9e..82091c0b9429059 100644 --- a/files/en-us/web/api/globaleventhandlers/onmousewheel/index.html +++ b/files/en-us/web/api/globaleventhandlers/onmousewheel/index.html @@ -28,6 +28,4 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onmousewheel")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onpause/index.html b/files/en-us/web/api/globaleventhandlers/onpause/index.html index 677d580706cbc20..b7fba15610ff6b9 100644 --- a/files/en-us/web/api/globaleventhandlers/onpause/index.html +++ b/files/en-us/web/api/globaleventhandlers/onpause/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onpause")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onplay/index.html b/files/en-us/web/api/globaleventhandlers/onplay/index.html index 34203b02201675a..d07b7603d3b3d59 100644 --- a/files/en-us/web/api/globaleventhandlers/onplay/index.html +++ b/files/en-us/web/api/globaleventhandlers/onplay/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onplay")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onplaying/index.html b/files/en-us/web/api/globaleventhandlers/onplaying/index.html index 34e2bfb567aa53f..c0fbcd964ac5e89 100644 --- a/files/en-us/web/api/globaleventhandlers/onplaying/index.html +++ b/files/en-us/web/api/globaleventhandlers/onplaying/index.html @@ -43,8 +43,6 @@

    Specifications

     Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onplaying")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onpointercancel/index.html b/files/en-us/web/api/globaleventhandlers/onpointercancel/index.html index e8dc81fc7663e3c..52149ba174fde60 100644 --- a/files/en-us/web/api/globaleventhandlers/onpointercancel/index.html +++ b/files/en-us/web/api/globaleventhandlers/onpointercancel/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onpointercancel")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onpointerdown/index.html b/files/en-us/web/api/globaleventhandlers/onpointerdown/index.html index 061b42aa41dc681..fbad55247efab46 100644 --- a/files/en-us/web/api/globaleventhandlers/onpointerdown/index.html +++ b/files/en-us/web/api/globaleventhandlers/onpointerdown/index.html @@ -151,8 +151,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onpointerdown")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onpointerenter/index.html b/files/en-us/web/api/globaleventhandlers/onpointerenter/index.html index 438c0ae4328ef14..886053d221d253d 100644 --- a/files/en-us/web/api/globaleventhandlers/onpointerenter/index.html +++ b/files/en-us/web/api/globaleventhandlers/onpointerenter/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onpointerenter")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onpointerleave/index.html b/files/en-us/web/api/globaleventhandlers/onpointerleave/index.html index 38328b22eaaaa52..2e3b55ef4a89f3e 100644 --- a/files/en-us/web/api/globaleventhandlers/onpointerleave/index.html +++ b/files/en-us/web/api/globaleventhandlers/onpointerleave/index.html @@ -78,8 +78,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onpointerleave")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onpointermove/index.html b/files/en-us/web/api/globaleventhandlers/onpointermove/index.html index 665c7ca884e69ac..2c8b1d73df54d7f 100644 --- a/files/en-us/web/api/globaleventhandlers/onpointermove/index.html +++ b/files/en-us/web/api/globaleventhandlers/onpointermove/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onpointermove")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onpointerout/index.html b/files/en-us/web/api/globaleventhandlers/onpointerout/index.html index 4f8e853f78c01bb..4f7755b56e8aeee 100644 --- a/files/en-us/web/api/globaleventhandlers/onpointerout/index.html +++ b/files/en-us/web/api/globaleventhandlers/onpointerout/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onpointerout")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onpointerover/index.html b/files/en-us/web/api/globaleventhandlers/onpointerover/index.html index 27a0510cdaa8420..36297383678eff6 100644 --- a/files/en-us/web/api/globaleventhandlers/onpointerover/index.html +++ b/files/en-us/web/api/globaleventhandlers/onpointerover/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onpointerover")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onpointerup/index.html b/files/en-us/web/api/globaleventhandlers/onpointerup/index.html index f4bd8838a3c1ca9..a956879c4635177 100644 --- a/files/en-us/web/api/globaleventhandlers/onpointerup/index.html +++ b/files/en-us/web/api/globaleventhandlers/onpointerup/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onpointerup")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onreset/index.html b/files/en-us/web/api/globaleventhandlers/onreset/index.html index 3a967ecb6c7c27e..33ea045eecdc778 100644 --- a/files/en-us/web/api/globaleventhandlers/onreset/index.html +++ b/files/en-us/web/api/globaleventhandlers/onreset/index.html @@ -72,7 +72,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onreset")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onresize/index.html b/files/en-us/web/api/globaleventhandlers/onresize/index.html index a15fdb3bfc9dbb3..1bb0e4b850960ae 100644 --- a/files/en-us/web/api/globaleventhandlers/onresize/index.html +++ b/files/en-us/web/api/globaleventhandlers/onresize/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onresize")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onscroll/index.html b/files/en-us/web/api/globaleventhandlers/onscroll/index.html index 9a1599cb92450cb..7d3541c27aba7a3 100644 --- a/files/en-us/web/api/globaleventhandlers/onscroll/index.html +++ b/files/en-us/web/api/globaleventhandlers/onscroll/index.html @@ -95,8 +95,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onscroll")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onselect/index.html b/files/en-us/web/api/globaleventhandlers/onselect/index.html index 86b088e336df79c..a3194d43c9a81a5 100644 --- a/files/en-us/web/api/globaleventhandlers/onselect/index.html +++ b/files/en-us/web/api/globaleventhandlers/onselect/index.html @@ -69,7 +69,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onselect")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/onselectionchange/index.html b/files/en-us/web/api/globaleventhandlers/onselectionchange/index.html index 455e30857d61ee2..8ce9e60fea884ca 100644 --- a/files/en-us/web/api/globaleventhandlers/onselectionchange/index.html +++ b/files/en-us/web/api/globaleventhandlers/onselectionchange/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onselectionchange")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onselectstart/index.html b/files/en-us/web/api/globaleventhandlers/onselectstart/index.html index 82acd1eb804c589..5401d36c886b006 100644 --- a/files/en-us/web/api/globaleventhandlers/onselectstart/index.html +++ b/files/en-us/web/api/globaleventhandlers/onselectstart/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onselectstart")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onsubmit/index.html b/files/en-us/web/api/globaleventhandlers/onsubmit/index.html index 4350e7789edda6d..d8fe08ad42fe70c 100644 --- a/files/en-us/web/api/globaleventhandlers/onsubmit/index.html +++ b/files/en-us/web/api/globaleventhandlers/onsubmit/index.html @@ -87,7 +87,6 @@

    Browser compatibility

    -

    {{Compat("api.GlobalEventHandlers.onsubmit")}}

    diff --git a/files/en-us/web/api/globaleventhandlers/ontouchcancel/index.html b/files/en-us/web/api/globaleventhandlers/ontouchcancel/index.html index 82a1b3adec2415b..73ee9a9a240cb8f 100644 --- a/files/en-us/web/api/globaleventhandlers/ontouchcancel/index.html +++ b/files/en-us/web/api/globaleventhandlers/ontouchcancel/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ontouchcancel")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ontouchend/index.html b/files/en-us/web/api/globaleventhandlers/ontouchend/index.html index b66ad781e807c28..b2359f8403bd838 100644 --- a/files/en-us/web/api/globaleventhandlers/ontouchend/index.html +++ b/files/en-us/web/api/globaleventhandlers/ontouchend/index.html @@ -71,8 +71,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ontouchend")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ontouchmove/index.html b/files/en-us/web/api/globaleventhandlers/ontouchmove/index.html index cdb6f072b35cca3..16aedfb216560e2 100644 --- a/files/en-us/web/api/globaleventhandlers/ontouchmove/index.html +++ b/files/en-us/web/api/globaleventhandlers/ontouchmove/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ontouchmove")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ontouchstart/index.html b/files/en-us/web/api/globaleventhandlers/ontouchstart/index.html index ca8c29bc47bd61d..66afa20f2504e75 100644 --- a/files/en-us/web/api/globaleventhandlers/ontouchstart/index.html +++ b/files/en-us/web/api/globaleventhandlers/ontouchstart/index.html @@ -71,8 +71,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ontouchstart")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ontransitioncancel/index.html b/files/en-us/web/api/globaleventhandlers/ontransitioncancel/index.html index 51ed62e0517f152..09dcbc8dde0a561 100644 --- a/files/en-us/web/api/globaleventhandlers/ontransitioncancel/index.html +++ b/files/en-us/web/api/globaleventhandlers/ontransitioncancel/index.html @@ -136,8 +136,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ontransitioncancel")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/ontransitionend/index.html b/files/en-us/web/api/globaleventhandlers/ontransitionend/index.html index bc3b781e1524c58..243f71e5fe59bd5 100644 --- a/files/en-us/web/api/globaleventhandlers/ontransitionend/index.html +++ b/files/en-us/web/api/globaleventhandlers/ontransitionend/index.html @@ -120,8 +120,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.ontransitionend")}}

    See also

    diff --git a/files/en-us/web/api/globaleventhandlers/onwheel/index.html b/files/en-us/web/api/globaleventhandlers/onwheel/index.html index 75da0e2b67f9f45..416601f2e74c1c8 100644 --- a/files/en-us/web/api/globaleventhandlers/onwheel/index.html +++ b/files/en-us/web/api/globaleventhandlers/onwheel/index.html @@ -105,8 +105,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onwheel")}}

    See also

    diff --git a/files/en-us/web/api/gyroscope/gyroscope/index.html b/files/en-us/web/api/gyroscope/gyroscope/index.html index f5133acd2e8f67d..7ddaf5f63a7b3c6 100644 --- a/files/en-us/web/api/gyroscope/gyroscope/index.html +++ b/files/en-us/web/api/gyroscope/gyroscope/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Gyroscope.Gyroscope")}}

    diff --git a/files/en-us/web/api/gyroscope/index.html b/files/en-us/web/api/gyroscope/index.html index 4775f4c39a5d950..d312f47d5b939ee 100644 --- a/files/en-us/web/api/gyroscope/index.html +++ b/files/en-us/web/api/gyroscope/index.html @@ -75,6 +75,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Gyroscope")}}

    diff --git a/files/en-us/web/api/gyroscope/x/index.html b/files/en-us/web/api/gyroscope/x/index.html index b2bde100eab204f..cdebb704cedd091 100644 --- a/files/en-us/web/api/gyroscope/x/index.html +++ b/files/en-us/web/api/gyroscope/x/index.html @@ -63,6 +63,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Gyroscope.x")}}

    diff --git a/files/en-us/web/api/gyroscope/y/index.html b/files/en-us/web/api/gyroscope/y/index.html index 0c5e637bcdbda88..b03886108f23438 100644 --- a/files/en-us/web/api/gyroscope/y/index.html +++ b/files/en-us/web/api/gyroscope/y/index.html @@ -63,6 +63,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Gyroscope.y")}}

    diff --git a/files/en-us/web/api/gyroscope/z/index.html b/files/en-us/web/api/gyroscope/z/index.html index e086b8187af7e59..5621fe416fb7713 100644 --- a/files/en-us/web/api/gyroscope/z/index.html +++ b/files/en-us/web/api/gyroscope/z/index.html @@ -63,6 +63,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Gyroscope.z")}}

    diff --git a/files/en-us/web/api/hashchangeevent/index.html b/files/en-us/web/api/hashchangeevent/index.html index 6397917628f536c..13d22ef5e36ddb4 100644 --- a/files/en-us/web/api/hashchangeevent/index.html +++ b/files/en-us/web/api/hashchangeevent/index.html @@ -63,7 +63,6 @@

    Basic example

    window.addEventListener('hashchange', locationHashChanged);

    -

    Polyfill

    There are several fallback scripts listed on the Modernizr GitHub page. Basically, those scripts check the {{domxref("HTMLHyperlinkElementUtils.hash", "location.hash")}} at a regular interval. Here is a version that allows only one handler to be bound to the {{domxref("WindowEventHandlers.onhashchange", "onhashchange")}} property:

    @@ -119,8 +118,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HashChangeEvent")}}

    diff --git a/files/en-us/web/api/hashchangeevent/newurl/index.html b/files/en-us/web/api/hashchangeevent/newurl/index.html index c6fa72f82468b1c..5f2553e49463e55 100644 --- a/files/en-us/web/api/hashchangeevent/newurl/index.html +++ b/files/en-us/web/api/hashchangeevent/newurl/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HashChangeEvent.newURL")}}

    diff --git a/files/en-us/web/api/hashchangeevent/oldurl/index.html b/files/en-us/web/api/hashchangeevent/oldurl/index.html index 547380732a6da73..f6d6a99c59c865a 100644 --- a/files/en-us/web/api/hashchangeevent/oldurl/index.html +++ b/files/en-us/web/api/hashchangeevent/oldurl/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HashChangeEvent.oldURL")}}

    diff --git a/files/en-us/web/api/headers/append/index.html b/files/en-us/web/api/headers/append/index.html index 41e56c92cb35146..301cd928c9ef173 100644 --- a/files/en-us/web/api/headers/append/index.html +++ b/files/en-us/web/api/headers/append/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Headers.append")}}

    See also

    diff --git a/files/en-us/web/api/headers/delete/index.html b/files/en-us/web/api/headers/delete/index.html index 9c875db0ddc05c2..3efc8de836418fc 100644 --- a/files/en-us/web/api/headers/delete/index.html +++ b/files/en-us/web/api/headers/delete/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Headers.delete")}}

    See also

    diff --git a/files/en-us/web/api/headers/entries/index.html b/files/en-us/web/api/headers/entries/index.html index e30f17e4e0ea2b0..fa8c66950fada27 100644 --- a/files/en-us/web/api/headers/entries/index.html +++ b/files/en-us/web/api/headers/entries/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.Headers.entries")}}

    diff --git a/files/en-us/web/api/headers/get/index.html b/files/en-us/web/api/headers/get/index.html index b634f0b742385bf..1f804162aff0b6e 100644 --- a/files/en-us/web/api/headers/get/index.html +++ b/files/en-us/web/api/headers/get/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Headers.get")}}

    See also

    diff --git a/files/en-us/web/api/headers/getall/index.html b/files/en-us/web/api/headers/getall/index.html index 2137f154a4439f5..e7321d0c3e5cedd 100644 --- a/files/en-us/web/api/headers/getall/index.html +++ b/files/en-us/web/api/headers/getall/index.html @@ -58,8 +58,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.Headers.getAll")}}

    See also

    diff --git a/files/en-us/web/api/headers/has/index.html b/files/en-us/web/api/headers/has/index.html index 9b432091b6e2f06..4b99905ce488252 100644 --- a/files/en-us/web/api/headers/has/index.html +++ b/files/en-us/web/api/headers/has/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Headers.has")}}

    See also

    diff --git a/files/en-us/web/api/headers/headers/index.html b/files/en-us/web/api/headers/headers/index.html index 3c5ccc9aa671171..13775c63d7edc39 100644 --- a/files/en-us/web/api/headers/headers/index.html +++ b/files/en-us/web/api/headers/headers/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Headers.Headers")}}

    See also

    diff --git a/files/en-us/web/api/headers/index.html b/files/en-us/web/api/headers/index.html index 469b12ed03d96f9..628f5cdc3b06c69 100644 --- a/files/en-us/web/api/headers/index.html +++ b/files/en-us/web/api/headers/index.html @@ -118,8 +118,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Headers")}}

    See also

    diff --git a/files/en-us/web/api/headers/keys/index.html b/files/en-us/web/api/headers/keys/index.html index b1c5844b90307d9..b3dec5483e568bf 100644 --- a/files/en-us/web/api/headers/keys/index.html +++ b/files/en-us/web/api/headers/keys/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.Headers.keys")}}

    diff --git a/files/en-us/web/api/headers/set/index.html b/files/en-us/web/api/headers/set/index.html index 51e07dd44a52a16..98ef0b73d1cc414 100644 --- a/files/en-us/web/api/headers/set/index.html +++ b/files/en-us/web/api/headers/set/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Headers.set")}}

    See also

    diff --git a/files/en-us/web/api/headers/values/index.html b/files/en-us/web/api/headers/values/index.html index 943e2733ec4022e..7822dec105c6e0f 100644 --- a/files/en-us/web/api/headers/values/index.html +++ b/files/en-us/web/api/headers/values/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.Headers.values")}}

    diff --git a/files/en-us/web/api/history/back/index.html b/files/en-us/web/api/history/back/index.html index da411c99c2a3feb..b5d9e80c3665f97 100644 --- a/files/en-us/web/api/history/back/index.html +++ b/files/en-us/web/api/history/back/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.History.back")}}

    See also

    diff --git a/files/en-us/web/api/history/forward/index.html b/files/en-us/web/api/history/forward/index.html index 773d9abbed69824..0c959759f7730e7 100644 --- a/files/en-us/web/api/history/forward/index.html +++ b/files/en-us/web/api/history/forward/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.History.forward")}}

    See also

    diff --git a/files/en-us/web/api/history/go/index.html b/files/en-us/web/api/history/go/index.html index 18ff70b91ebd517..95629e3e5d028ce 100644 --- a/files/en-us/web/api/history/go/index.html +++ b/files/en-us/web/api/history/go/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.History.go")}}

    See also

    diff --git a/files/en-us/web/api/history/index.html b/files/en-us/web/api/history/index.html index 8925bc112421cb8..445ec61aa12aa01 100644 --- a/files/en-us/web/api/history/index.html +++ b/files/en-us/web/api/history/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.History")}}

    See also

    diff --git a/files/en-us/web/api/history/length/index.html b/files/en-us/web/api/history/length/index.html index ec6808ab662e0f6..66fd305ec29b01d 100644 --- a/files/en-us/web/api/history/length/index.html +++ b/files/en-us/web/api/history/length/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.History.length")}}

    See also

    diff --git a/files/en-us/web/api/history/pushstate/index.html b/files/en-us/web/api/history/pushstate/index.html index cb5e21b0a501e8e..0d58a67c31b24db 100644 --- a/files/en-us/web/api/history/pushstate/index.html +++ b/files/en-us/web/api/history/pushstate/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.History.pushState")}}

    See also

    diff --git a/files/en-us/web/api/history/replacestate/index.html b/files/en-us/web/api/history/replacestate/index.html index a53cc9d9419a3a7..47b6fa70837cf07 100644 --- a/files/en-us/web/api/history/replacestate/index.html +++ b/files/en-us/web/api/history/replacestate/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.History.replaceState")}}

    diff --git a/files/en-us/web/api/history/scrollrestoration/index.html b/files/en-us/web/api/history/scrollrestoration/index.html index 8095ddd1b2dc24f..fd16cd16bce61de 100644 --- a/files/en-us/web/api/history/scrollrestoration/index.html +++ b/files/en-us/web/api/history/scrollrestoration/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.History.scrollRestoration")}}

    diff --git a/files/en-us/web/api/history/state/index.html b/files/en-us/web/api/history/state/index.html index 3c59f7f9e2ffec1..fe01a837868bc8d 100644 --- a/files/en-us/web/api/history/state/index.html +++ b/files/en-us/web/api/history/state/index.html @@ -58,8 +58,6 @@

    SpecificationsBrowser compatibility

    - -

    {{Compat("api.History.state")}}

    See also

    diff --git a/files/en-us/web/api/history_api/index.html b/files/en-us/web/api/history_api/index.html index 4ea78d709741db0..a178b37785a6b2f 100644 --- a/files/en-us/web/api/history_api/index.html +++ b/files/en-us/web/api/history_api/index.html @@ -108,8 +108,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.History")}}

    See also

    diff --git a/files/en-us/web/api/hmdvrdevice/geteyeparameters/index.html b/files/en-us/web/api/hmdvrdevice/geteyeparameters/index.html index 60eb0955cf9baa3..c07bd4d271c77f6 100644 --- a/files/en-us/web/api/hmdvrdevice/geteyeparameters/index.html +++ b/files/en-us/web/api/hmdvrdevice/geteyeparameters/index.html @@ -53,8 +53,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.HMDVRDevice.getEyeParameters")}}

    See also

    diff --git a/files/en-us/web/api/hmdvrdevice/index.html b/files/en-us/web/api/hmdvrdevice/index.html index 52dbeb694450a82..7dcc61b20e7c95e 100644 --- a/files/en-us/web/api/hmdvrdevice/index.html +++ b/files/en-us/web/api/hmdvrdevice/index.html @@ -64,8 +64,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.HMDVRDevice")}}

    See also

    diff --git a/files/en-us/web/api/hmdvrdevice/setfieldofview/index.html b/files/en-us/web/api/hmdvrdevice/setfieldofview/index.html index 9e8052337e452ce..d5d3a4ef538aa91 100644 --- a/files/en-us/web/api/hmdvrdevice/setfieldofview/index.html +++ b/files/en-us/web/api/hmdvrdevice/setfieldofview/index.html @@ -60,8 +60,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.HMDVRDevice.setFieldOfView")}}

    See also

    diff --git a/files/en-us/web/api/html_dom_api/index.html b/files/en-us/web/api/html_dom_api/index.html index 682de62f06f8ed5..9c8d4dfe171068b 100644 --- a/files/en-us/web/api/html_dom_api/index.html +++ b/files/en-us/web/api/html_dom_api/index.html @@ -471,7 +471,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLElement")}}

    diff --git a/files/en-us/web/api/html_sanitizer_api/index.html b/files/en-us/web/api/html_sanitizer_api/index.html index f24280f5d73d973..277fe377430cdd0 100644 --- a/files/en-us/web/api/html_sanitizer_api/index.html +++ b/files/en-us/web/api/html_sanitizer_api/index.html @@ -68,6 +68,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sanitizer")}}

    diff --git a/files/en-us/web/api/htmlanchorelement/download/index.html b/files/en-us/web/api/htmlanchorelement/download/index.html index 8a0f17e905a3000..db03de9a8b0a47d 100644 --- a/files/en-us/web/api/htmlanchorelement/download/index.html +++ b/files/en-us/web/api/htmlanchorelement/download/index.html @@ -46,6 +46,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLAnchorElement.download")}}

    diff --git a/files/en-us/web/api/htmlanchorelement/index.html b/files/en-us/web/api/htmlanchorelement/index.html index fef43eb1e7fcec7..c0d5afad114e573 100644 --- a/files/en-us/web/api/htmlanchorelement/index.html +++ b/files/en-us/web/api/htmlanchorelement/index.html @@ -133,7 +133,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLAnchorElement")}}

    diff --git a/files/en-us/web/api/htmlanchorelement/referrerpolicy/index.html b/files/en-us/web/api/htmlanchorelement/referrerpolicy/index.html index 5340983758a8818..abf245c6821e3c5 100644 --- a/files/en-us/web/api/htmlanchorelement/referrerpolicy/index.html +++ b/files/en-us/web/api/htmlanchorelement/referrerpolicy/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLAnchorElement.referrerPolicy")}}

    See also

    diff --git a/files/en-us/web/api/htmlanchorelement/rel/index.html b/files/en-us/web/api/htmlanchorelement/rel/index.html index 588fbb003890c63..1dfbb7ca183b4de 100644 --- a/files/en-us/web/api/htmlanchorelement/rel/index.html +++ b/files/en-us/web/api/htmlanchorelement/rel/index.html @@ -60,7 +60,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLAnchorElement.rel")}}

    diff --git a/files/en-us/web/api/htmlanchorelement/rellist/index.html b/files/en-us/web/api/htmlanchorelement/rellist/index.html index bf71876b1d02182..cb014364d61c525 100644 --- a/files/en-us/web/api/htmlanchorelement/rellist/index.html +++ b/files/en-us/web/api/htmlanchorelement/rellist/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLAnchorElement.relList")}}

    diff --git a/files/en-us/web/api/htmlareaelement/index.html b/files/en-us/web/api/htmlareaelement/index.html index 31ac1d4be7a65f5..058743dc6790477 100644 --- a/files/en-us/web/api/htmlareaelement/index.html +++ b/files/en-us/web/api/htmlareaelement/index.html @@ -110,8 +110,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLAreaElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlareaelement/referrerpolicy/index.html b/files/en-us/web/api/htmlareaelement/referrerpolicy/index.html index 1295f7d53950e84..1cd0bd6f711fb92 100644 --- a/files/en-us/web/api/htmlareaelement/referrerpolicy/index.html +++ b/files/en-us/web/api/htmlareaelement/referrerpolicy/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLAreaElement.referrerPolicy")}}

    See also

    diff --git a/files/en-us/web/api/htmlareaelement/rel/index.html b/files/en-us/web/api/htmlareaelement/rel/index.html index 73c95d4a7e854b7..9977446a8563f84 100644 --- a/files/en-us/web/api/htmlareaelement/rel/index.html +++ b/files/en-us/web/api/htmlareaelement/rel/index.html @@ -50,7 +50,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLAreaElement.rel")}}

    diff --git a/files/en-us/web/api/htmlareaelement/rellist/index.html b/files/en-us/web/api/htmlareaelement/rellist/index.html index 9f81b1a1f584a9b..c2aedc3db2b8316 100644 --- a/files/en-us/web/api/htmlareaelement/rellist/index.html +++ b/files/en-us/web/api/htmlareaelement/rellist/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLAreaElement.relList")}}

    diff --git a/files/en-us/web/api/htmlaudioelement/index.html b/files/en-us/web/api/htmlaudioelement/index.html index 318958d6efa3b6c..93735340fa958b6 100644 --- a/files/en-us/web/api/htmlaudioelement/index.html +++ b/files/en-us/web/api/htmlaudioelement/index.html @@ -71,7 +71,6 @@

    Basic usage

    // The duration variable now holds the duration (in seconds) of the audio clip })
    -

    Events

    Inherits methods from its parent, {{domxref("HTMLMediaElement")}}, and from its ancestor {{domxref("HTMLElement")}}. Listen to events using addEventListener() or by assigning an event listener to the oneventname property of this interface.

    @@ -102,8 +101,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLAudioElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlbaseelement/index.html b/files/en-us/web/api/htmlbaseelement/index.html index bcadbe9bf01d2a5..856a84651e08c4f 100644 --- a/files/en-us/web/api/htmlbaseelement/index.html +++ b/files/en-us/web/api/htmlbaseelement/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLBaseElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlbasefontelement/index.html b/files/en-us/web/api/htmlbasefontelement/index.html index 47088a777c2141f..5f00b5c686c84b5 100644 --- a/files/en-us/web/api/htmlbasefontelement/index.html +++ b/files/en-us/web/api/htmlbasefontelement/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLBaseFontElement")}}

    diff --git a/files/en-us/web/api/htmlbodyelement/index.html b/files/en-us/web/api/htmlbodyelement/index.html index 659d01e40c0f315..bca7667c2866242 100644 --- a/files/en-us/web/api/htmlbodyelement/index.html +++ b/files/en-us/web/api/htmlbodyelement/index.html @@ -118,8 +118,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLBodyElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlbrelement/index.html b/files/en-us/web/api/htmlbrelement/index.html index 97436f98fff4e45..be5036474e88963 100644 --- a/files/en-us/web/api/htmlbrelement/index.html +++ b/files/en-us/web/api/htmlbrelement/index.html @@ -52,7 +52,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLBRElement")}}

    diff --git a/files/en-us/web/api/htmlbuttonelement/index.html b/files/en-us/web/api/htmlbuttonelement/index.html index 837bdda27de8b8f..aaaadfbf149a085 100644 --- a/files/en-us/web/api/htmlbuttonelement/index.html +++ b/files/en-us/web/api/htmlbuttonelement/index.html @@ -148,8 +148,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLButtonElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlbuttonelement/labels/index.html b/files/en-us/web/api/htmlbuttonelement/labels/index.html index 3112f61e68302c6..42e0a8b9e5e210a 100644 --- a/files/en-us/web/api/htmlbuttonelement/labels/index.html +++ b/files/en-us/web/api/htmlbuttonelement/labels/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLButtonElement.labels")}}

    diff --git a/files/en-us/web/api/htmlcanvaselement/capturestream/index.html b/files/en-us/web/api/htmlcanvaselement/capturestream/index.html index 85fc855568091a8..93a6152a586cde7 100644 --- a/files/en-us/web/api/htmlcanvaselement/capturestream/index.html +++ b/files/en-us/web/api/htmlcanvaselement/capturestream/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLCanvasElement.captureStream")}}

    See also

    diff --git a/files/en-us/web/api/htmlcanvaselement/getcontext/index.html b/files/en-us/web/api/htmlcanvaselement/getcontext/index.html index 495aa7107a5608d..f895c80aa8c59cb 100644 --- a/files/en-us/web/api/htmlcanvaselement/getcontext/index.html +++ b/files/en-us/web/api/htmlcanvaselement/getcontext/index.html @@ -132,8 +132,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLCanvasElement.getContext")}}

    See also

    diff --git a/files/en-us/web/api/htmlcanvaselement/height/index.html b/files/en-us/web/api/htmlcanvaselement/height/index.html index d8ca1b18ccfb6cc..13b623996ff789d 100644 --- a/files/en-us/web/api/htmlcanvaselement/height/index.html +++ b/files/en-us/web/api/htmlcanvaselement/height/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLCanvasElement.height")}}

    See also

    diff --git a/files/en-us/web/api/htmlcanvaselement/index.html b/files/en-us/web/api/htmlcanvaselement/index.html index 94aebe4c3aebe8d..22e952dc6fdb6f8 100644 --- a/files/en-us/web/api/htmlcanvaselement/index.html +++ b/files/en-us/web/api/htmlcanvaselement/index.html @@ -94,7 +94,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLCanvasElement")}}

    diff --git a/files/en-us/web/api/htmlcanvaselement/mozfetchasstream/index.html b/files/en-us/web/api/htmlcanvaselement/mozfetchasstream/index.html index 6c101ad2947fbcc..5b8c01159ad37a6 100644 --- a/files/en-us/web/api/htmlcanvaselement/mozfetchasstream/index.html +++ b/files/en-us/web/api/htmlcanvaselement/mozfetchasstream/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLCanvasElement.mozFetchAsStream")}}

    See also

    diff --git a/files/en-us/web/api/htmlcanvaselement/mozgetasfile/index.html b/files/en-us/web/api/htmlcanvaselement/mozgetasfile/index.html index 7b8ee2ffe93375c..a3bda43fbaace2d 100644 --- a/files/en-us/web/api/htmlcanvaselement/mozgetasfile/index.html +++ b/files/en-us/web/api/htmlcanvaselement/mozgetasfile/index.html @@ -89,6 +89,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLCanvasElement.mozGetAsFile")}}

    diff --git a/files/en-us/web/api/htmlcanvaselement/mozopaque/index.html b/files/en-us/web/api/htmlcanvaselement/mozopaque/index.html index eed3fc0c59c824b..51ee1324ea26ae7 100644 --- a/files/en-us/web/api/htmlcanvaselement/mozopaque/index.html +++ b/files/en-us/web/api/htmlcanvaselement/mozopaque/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLCanvasElement.mozOpaque")}}

    See also

    diff --git a/files/en-us/web/api/htmlcanvaselement/toblob/index.html b/files/en-us/web/api/htmlcanvaselement/toblob/index.html index d44cd6f84eef7d7..7856eac72de4687 100644 --- a/files/en-us/web/api/htmlcanvaselement/toblob/index.html +++ b/files/en-us/web/api/htmlcanvaselement/toblob/index.html @@ -167,8 +167,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLCanvasElement.toBlob")}}

    See also

    diff --git a/files/en-us/web/api/htmlcanvaselement/todataurl/index.html b/files/en-us/web/api/htmlcanvaselement/todataurl/index.html index fb06d8b74fd2747..0992428aec39807 100644 --- a/files/en-us/web/api/htmlcanvaselement/todataurl/index.html +++ b/files/en-us/web/api/htmlcanvaselement/todataurl/index.html @@ -148,8 +148,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLCanvasElement.toDataURL")}}

    See also

    diff --git a/files/en-us/web/api/htmlcanvaselement/transfercontroltooffscreen/index.html b/files/en-us/web/api/htmlcanvaselement/transfercontroltooffscreen/index.html index 88a10ee860687b9..7295aa07315b025 100644 --- a/files/en-us/web/api/htmlcanvaselement/transfercontroltooffscreen/index.html +++ b/files/en-us/web/api/htmlcanvaselement/transfercontroltooffscreen/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLCanvasElement.transferControlToOffscreen")}}

    diff --git a/files/en-us/web/api/htmlcanvaselement/webglcontextcreationerror_event/index.html b/files/en-us/web/api/htmlcanvaselement/webglcontextcreationerror_event/index.html index abca8f765f39715..b7a626486190471 100644 --- a/files/en-us/web/api/htmlcanvaselement/webglcontextcreationerror_event/index.html +++ b/files/en-us/web/api/htmlcanvaselement/webglcontextcreationerror_event/index.html @@ -66,7 +66,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLCanvasElement.webglcontextcreationerror_event")}}

    diff --git a/files/en-us/web/api/htmlcanvaselement/webglcontextlost_event/index.html b/files/en-us/web/api/htmlcanvaselement/webglcontextlost_event/index.html index 6496dca0e2684f5..7333d978ad9fd84 100644 --- a/files/en-us/web/api/htmlcanvaselement/webglcontextlost_event/index.html +++ b/files/en-us/web/api/htmlcanvaselement/webglcontextlost_event/index.html @@ -69,7 +69,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLCanvasElement.webglcontextlost_event")}}

    diff --git a/files/en-us/web/api/htmlcanvaselement/webglcontextrestored_event/index.html b/files/en-us/web/api/htmlcanvaselement/webglcontextrestored_event/index.html index b23aa94eef3c0e2..149843fa77a390d 100644 --- a/files/en-us/web/api/htmlcanvaselement/webglcontextrestored_event/index.html +++ b/files/en-us/web/api/htmlcanvaselement/webglcontextrestored_event/index.html @@ -69,7 +69,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLCanvasElement.webglcontextrestored_event")}}

    diff --git a/files/en-us/web/api/htmlcanvaselement/width/index.html b/files/en-us/web/api/htmlcanvaselement/width/index.html index 6c4092b44357eb1..fa9430ad83c0f51 100644 --- a/files/en-us/web/api/htmlcanvaselement/width/index.html +++ b/files/en-us/web/api/htmlcanvaselement/width/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLCanvasElement.width")}}

    See also

    diff --git a/files/en-us/web/api/htmlcollection/htmlcollection.length/index.html b/files/en-us/web/api/htmlcollection/htmlcollection.length/index.html index aa76c33139ec359..b437387efb0dea9 100644 --- a/files/en-us/web/api/htmlcollection/htmlcollection.length/index.html +++ b/files/en-us/web/api/htmlcollection/htmlcollection.length/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLCollection.length")}}

    diff --git a/files/en-us/web/api/htmlcollection/index.html b/files/en-us/web/api/htmlcollection/index.html index bd8b9e74c9e5d4f..80ea4ea4aa846e5 100644 --- a/files/en-us/web/api/htmlcollection/index.html +++ b/files/en-us/web/api/htmlcollection/index.html @@ -78,8 +78,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLCollection")}}

    See also

    diff --git a/files/en-us/web/api/htmlcollection/item/index.html b/files/en-us/web/api/htmlcollection/item/index.html index 181bde0b8911533..37fde9c2d06265d 100644 --- a/files/en-us/web/api/htmlcollection/item/index.html +++ b/files/en-us/web/api/htmlcollection/item/index.html @@ -45,8 +45,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.HTMLCollection.item")}}

    See also

    diff --git a/files/en-us/web/api/htmlcontentelement/getdistributednodes/index.html b/files/en-us/web/api/htmlcontentelement/getdistributednodes/index.html index 1d11b58e21138b1..70d5d2248a29025 100644 --- a/files/en-us/web/api/htmlcontentelement/getdistributednodes/index.html +++ b/files/en-us/web/api/htmlcontentelement/getdistributednodes/index.html @@ -29,8 +29,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLContentElement.getDistributedNodes")}}

    See also

    diff --git a/files/en-us/web/api/htmlcontentelement/index.html b/files/en-us/web/api/htmlcontentelement/index.html index f4fbdc68f4aa180..59fe28b311d3df1 100644 --- a/files/en-us/web/api/htmlcontentelement/index.html +++ b/files/en-us/web/api/htmlcontentelement/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLContentElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlcontentelement/select/index.html b/files/en-us/web/api/htmlcontentelement/select/index.html index a349ae480fb9216..b1a6bb79dfad455 100644 --- a/files/en-us/web/api/htmlcontentelement/select/index.html +++ b/files/en-us/web/api/htmlcontentelement/select/index.html @@ -29,8 +29,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLContentElement.select")}}

    See also

    diff --git a/files/en-us/web/api/htmldataelement/index.html b/files/en-us/web/api/htmldataelement/index.html index 2d4986657bbc1c3..a1b238f00e12b0d 100644 --- a/files/en-us/web/api/htmldataelement/index.html +++ b/files/en-us/web/api/htmldataelement/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLDataElement")}}

    diff --git a/files/en-us/web/api/htmldataelement/value/index.html b/files/en-us/web/api/htmldataelement/value/index.html index 074b7edf9b73ec3..af1e2d59f4ed0b3 100644 --- a/files/en-us/web/api/htmldataelement/value/index.html +++ b/files/en-us/web/api/htmldataelement/value/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDataElement.value")}}

    diff --git a/files/en-us/web/api/htmldatalistelement/index.html b/files/en-us/web/api/htmldatalistelement/index.html index 6dccaba21fcf53e..3a9cc8ccba1d35e 100644 --- a/files/en-us/web/api/htmldatalistelement/index.html +++ b/files/en-us/web/api/htmldatalistelement/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDataListElement")}}

    See also

    diff --git a/files/en-us/web/api/htmldetailselement/index.html b/files/en-us/web/api/htmldetailselement/index.html index 133116d653a199c..b4076826e6b4182 100644 --- a/files/en-us/web/api/htmldetailselement/index.html +++ b/files/en-us/web/api/htmldetailselement/index.html @@ -58,7 +58,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLDetailsElement")}}

    diff --git a/files/en-us/web/api/htmldetailselement/toggle_event/index.html b/files/en-us/web/api/htmldetailselement/toggle_event/index.html index ad5662cd7c3b3b3..e06f7099d9220fc 100644 --- a/files/en-us/web/api/htmldetailselement/toggle_event/index.html +++ b/files/en-us/web/api/htmldetailselement/toggle_event/index.html @@ -118,6 +118,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDetailsElement.toggle_event")}}

    diff --git a/files/en-us/web/api/htmldialogelement/cancel_event/index.html b/files/en-us/web/api/htmldialogelement/cancel_event/index.html index 803a2997874865a..11a6a4f0b6f8da3 100644 --- a/files/en-us/web/api/htmldialogelement/cancel_event/index.html +++ b/files/en-us/web/api/htmldialogelement/cancel_event/index.html @@ -106,8 +106,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDialogElement.cancel_event")}}

    See also

    diff --git a/files/en-us/web/api/htmldialogelement/close/index.html b/files/en-us/web/api/htmldialogelement/close/index.html index 5ee38895188179d..7ca5b5e0a3e9728 100644 --- a/files/en-us/web/api/htmldialogelement/close/index.html +++ b/files/en-us/web/api/htmldialogelement/close/index.html @@ -118,8 +118,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDialogElement.close")}}

    See also

    diff --git a/files/en-us/web/api/htmldialogelement/close_event/index.html b/files/en-us/web/api/htmldialogelement/close_event/index.html index 68c41c9ed574381..8b1eb786c3f27e0 100644 --- a/files/en-us/web/api/htmldialogelement/close_event/index.html +++ b/files/en-us/web/api/htmldialogelement/close_event/index.html @@ -104,8 +104,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDialogElement.close_event")}}

    See also

    diff --git a/files/en-us/web/api/htmldialogelement/index.html b/files/en-us/web/api/htmldialogelement/index.html index f9f4f50ba1fd2a7..28f1f69e6bf82e8 100644 --- a/files/en-us/web/api/htmldialogelement/index.html +++ b/files/en-us/web/api/htmldialogelement/index.html @@ -134,8 +134,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDialogElement")}}

    See also

    diff --git a/files/en-us/web/api/htmldialogelement/open/index.html b/files/en-us/web/api/htmldialogelement/open/index.html index 42b2525fde50ae6..940f05acf5e59a2 100644 --- a/files/en-us/web/api/htmldialogelement/open/index.html +++ b/files/en-us/web/api/htmldialogelement/open/index.html @@ -116,8 +116,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDialogElement.open")}}

    See also

    diff --git a/files/en-us/web/api/htmldialogelement/returnvalue/index.html b/files/en-us/web/api/htmldialogelement/returnvalue/index.html index c5c9b1f44d32c41..354649132a25236 100644 --- a/files/en-us/web/api/htmldialogelement/returnvalue/index.html +++ b/files/en-us/web/api/htmldialogelement/returnvalue/index.html @@ -112,8 +112,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDialogElement.returnValue")}}

    See also

    diff --git a/files/en-us/web/api/htmldialogelement/show/index.html b/files/en-us/web/api/htmldialogelement/show/index.html index c0a7114b00617e6..5a83190ff6290de 100644 --- a/files/en-us/web/api/htmldialogelement/show/index.html +++ b/files/en-us/web/api/htmldialogelement/show/index.html @@ -109,8 +109,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDialogElement.show")}}

    See also

    diff --git a/files/en-us/web/api/htmldialogelement/showmodal/index.html b/files/en-us/web/api/htmldialogelement/showmodal/index.html index 6d104b53e91750b..c1c5d1c1d5ef108 100644 --- a/files/en-us/web/api/htmldialogelement/showmodal/index.html +++ b/files/en-us/web/api/htmldialogelement/showmodal/index.html @@ -117,8 +117,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDialogElement.showModal")}}

    See also

    diff --git a/files/en-us/web/api/htmldivelement/index.html b/files/en-us/web/api/htmldivelement/index.html index dcdbd9698c9eb96..0fae27da3d86084 100644 --- a/files/en-us/web/api/htmldivelement/index.html +++ b/files/en-us/web/api/htmldivelement/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDivElement")}}

    See also

    diff --git a/files/en-us/web/api/htmldlistelement/index.html b/files/en-us/web/api/htmldlistelement/index.html index 4d3534ffabd63cd..ce168e25efbc951 100644 --- a/files/en-us/web/api/htmldlistelement/index.html +++ b/files/en-us/web/api/htmldlistelement/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLDListElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/accesskey/index.html b/files/en-us/web/api/htmlelement/accesskey/index.html index b11a9d96c711101..ad81265f3a0a017 100644 --- a/files/en-us/web/api/htmlelement/accesskey/index.html +++ b/files/en-us/web/api/htmlelement/accesskey/index.html @@ -12,8 +12,6 @@

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.accessKey")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/accesskeylabel/index.html b/files/en-us/web/api/htmlelement/accesskeylabel/index.html index 73ed2a57f5cc09b..063d3b950deb3af 100644 --- a/files/en-us/web/api/htmlelement/accesskeylabel/index.html +++ b/files/en-us/web/api/htmlelement/accesskeylabel/index.html @@ -68,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLElement.accessKeyLabel")}}

    diff --git a/files/en-us/web/api/htmlelement/animationcancel_event/index.html b/files/en-us/web/api/htmlelement/animationcancel_event/index.html index 3850072426b3b18..1f50df0546c1aca 100644 --- a/files/en-us/web/api/htmlelement/animationcancel_event/index.html +++ b/files/en-us/web/api/htmlelement/animationcancel_event/index.html @@ -166,8 +166,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.animationcancel_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/animationend_event/index.html b/files/en-us/web/api/htmlelement/animationend_event/index.html index bc01e8e85688786..ed68e2259776a0d 100644 --- a/files/en-us/web/api/htmlelement/animationend_event/index.html +++ b/files/en-us/web/api/htmlelement/animationend_event/index.html @@ -165,8 +165,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.animationend_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/animationiteration_event/index.html b/files/en-us/web/api/htmlelement/animationiteration_event/index.html index d46353110e27017..e924e3009bbc679 100644 --- a/files/en-us/web/api/htmlelement/animationiteration_event/index.html +++ b/files/en-us/web/api/htmlelement/animationiteration_event/index.html @@ -166,8 +166,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.animationiteration_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/animationstart_event/index.html b/files/en-us/web/api/htmlelement/animationstart_event/index.html index 9657910ab71c970..8bf991779204dbc 100644 --- a/files/en-us/web/api/htmlelement/animationstart_event/index.html +++ b/files/en-us/web/api/htmlelement/animationstart_event/index.html @@ -162,8 +162,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.animationstart_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/beforeinput_event/index.html b/files/en-us/web/api/htmlelement/beforeinput_event/index.html index 48aaa4412217ff6..0be9965b9fe3ea5 100644 --- a/files/en-us/web/api/htmlelement/beforeinput_event/index.html +++ b/files/en-us/web/api/htmlelement/beforeinput_event/index.html @@ -60,7 +60,6 @@

    Feature Detection

    } -

    Simple logger

    This example logs the current value of the element, immediately before replacing that value with the new one applied to the {{HtmlElement("input")}} element.

    @@ -102,8 +101,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.beforeinput_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/change_event/index.html b/files/en-us/web/api/htmlelement/change_event/index.html index 5967ac6ee95f233..b3250749365122d 100644 --- a/files/en-us/web/api/htmlelement/change_event/index.html +++ b/files/en-us/web/api/htmlelement/change_event/index.html @@ -137,8 +137,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.GlobalEventHandlers.onchange")}}

    Different browsers do not always agree whether a change event should be fired for certain types of interaction. For example, keyboard navigation in {{HTMLElement("select")}} elements used to never fire a change event in Gecko until the user hit Enter or switched the focus away from the <select> (see {{bug("126379")}}). Since Firefox 63 (Quantum), this behavior is consistent between all major browsers, however.

    diff --git a/files/en-us/web/api/htmlelement/click/index.html b/files/en-us/web/api/htmlelement/click/index.html index 6bfa2847b4b38a1..65b39d7786cef3b 100644 --- a/files/en-us/web/api/htmlelement/click/index.html +++ b/files/en-us/web/api/htmlelement/click/index.html @@ -64,12 +64,8 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.click")}}

    - -

    See also

    - -
    diff --git a/files/en-us/web/api/htmlelement/contenteditable/index.html b/files/en-us/web/api/htmlelement/contenteditable/index.html index c8900476d6cbaa4..99b0f6c0da80b49 100644 --- a/files/en-us/web/api/htmlelement/contenteditable/index.html +++ b/files/en-us/web/api/htmlelement/contenteditable/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.contentEditable")}}

    In Internet Explorer, contenteditable cannot be applied to the {{htmlelement("table")}}, {{htmlelement("col")}}, {{htmlelement("colgroup")}}, {{htmlelement("tbody")}}, {{htmlelement("td")}}, {{htmlelement("tfoot")}}, {{htmlelement("th")}}, {{htmlelement("thead")}}, and {{htmlelement("tr")}} elements directly. A content editable {{htmlelement("span")}} or {{htmlelement("div")}} element can be placed inside the individual table cells.

    diff --git a/files/en-us/web/api/htmlelement/contextmenu/index.html b/files/en-us/web/api/htmlelement/contextmenu/index.html index ae99adeba3d1960..44cb489badc86c1 100644 --- a/files/en-us/web/api/htmlelement/contextmenu/index.html +++ b/files/en-us/web/api/htmlelement/contextmenu/index.html @@ -29,8 +29,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.contextMenu")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/dir/index.html b/files/en-us/web/api/htmlelement/dir/index.html index 70913ec2d91124b..67f3ec0c16a5fca 100644 --- a/files/en-us/web/api/htmlelement/dir/index.html +++ b/files/en-us/web/api/htmlelement/dir/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.dir")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/forcespellcheck/index.html b/files/en-us/web/api/htmlelement/forcespellcheck/index.html index 1e00e8d52a30589..fdefba394242661 100644 --- a/files/en-us/web/api/htmlelement/forcespellcheck/index.html +++ b/files/en-us/web/api/htmlelement/forcespellcheck/index.html @@ -21,8 +21,6 @@

    Syntax

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.forceSpellCheck")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/gotpointercapture_event/index.html b/files/en-us/web/api/htmlelement/gotpointercapture_event/index.html index 7477aa292c41b78..e8ff122836dc61c 100644 --- a/files/en-us/web/api/htmlelement/gotpointercapture_event/index.html +++ b/files/en-us/web/api/htmlelement/gotpointercapture_event/index.html @@ -82,8 +82,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.gotpointercapture_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/hidden/index.html b/files/en-us/web/api/htmlelement/hidden/index.html index 96bf9d708316b67..8488a605703dd3a 100644 --- a/files/en-us/web/api/htmlelement/hidden/index.html +++ b/files/en-us/web/api/htmlelement/hidden/index.html @@ -41,7 +41,6 @@

    Syntax

    isHidden = HTMLElement.hidden;
     
    -
     HTMLElement.hidden = true | false;

    Value

    @@ -142,8 +141,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.hidden")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/index.html b/files/en-us/web/api/htmlelement/index.html index 7e35914fd4394c5..65414a60f1fbc11 100644 --- a/files/en-us/web/api/htmlelement/index.html +++ b/files/en-us/web/api/htmlelement/index.html @@ -263,8 +263,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/inert/index.html b/files/en-us/web/api/htmlelement/inert/index.html index 44f6dfbccda7d82..1a21d37445b5fd9 100644 --- a/files/en-us/web/api/htmlelement/inert/index.html +++ b/files/en-us/web/api/htmlelement/inert/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.inert")}}

    See Also

    diff --git a/files/en-us/web/api/htmlelement/innertext/index.html b/files/en-us/web/api/htmlelement/innertext/index.html index f00af377427b607..7213937d976fb4b 100644 --- a/files/en-us/web/api/htmlelement/innertext/index.html +++ b/files/en-us/web/api/htmlelement/innertext/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.innerText")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/input_event/index.html b/files/en-us/web/api/htmlelement/input_event/index.html index e26f2bca0defd49..27a132648736d1d 100644 --- a/files/en-us/web/api/htmlelement/input_event/index.html +++ b/files/en-us/web/api/htmlelement/input_event/index.html @@ -95,8 +95,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.input_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/iscontenteditable/index.html b/files/en-us/web/api/htmlelement/iscontenteditable/index.html index fcbfceb756eb8cc..eedf25b4bb509f1 100644 --- a/files/en-us/web/api/htmlelement/iscontenteditable/index.html +++ b/files/en-us/web/api/htmlelement/iscontenteditable/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.isContentEditable")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/lang/index.html b/files/en-us/web/api/htmlelement/lang/index.html index 71da2d86a7ce2dd..e4e3f2cc0410f1b 100644 --- a/files/en-us/web/api/htmlelement/lang/index.html +++ b/files/en-us/web/api/htmlelement/lang/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.lang")}}

    diff --git a/files/en-us/web/api/htmlelement/lostpointercapture_event/index.html b/files/en-us/web/api/htmlelement/lostpointercapture_event/index.html index 1a86db7919959b9..6bd3da5764003ba 100644 --- a/files/en-us/web/api/htmlelement/lostpointercapture_event/index.html +++ b/files/en-us/web/api/htmlelement/lostpointercapture_event/index.html @@ -83,8 +83,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.lostpointercapture_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/offsetheight/index.html b/files/en-us/web/api/htmlelement/offsetheight/index.html index 2baec32a1e5cb48..21496d8f912cb3a 100644 --- a/files/en-us/web/api/htmlelement/offsetheight/index.html +++ b/files/en-us/web/api/htmlelement/offsetheight/index.html @@ -58,8 +58,6 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.offsetHeight")}}

    See Also

    diff --git a/files/en-us/web/api/htmlelement/offsetleft/index.html b/files/en-us/web/api/htmlelement/offsetleft/index.html index e8241d27c0b2b2f..195c64015b421cd 100644 --- a/files/en-us/web/api/htmlelement/offsetleft/index.html +++ b/files/en-us/web/api/htmlelement/offsetleft/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.offsetLeft")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/offsetparent/index.html b/files/en-us/web/api/htmlelement/offsetparent/index.html index fd559cd03d1ddbd..c4134b5e3043563 100644 --- a/files/en-us/web/api/htmlelement/offsetparent/index.html +++ b/files/en-us/web/api/htmlelement/offsetparent/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.offsetParent")}}

    diff --git a/files/en-us/web/api/htmlelement/offsettop/index.html b/files/en-us/web/api/htmlelement/offsettop/index.html index 7e10f9f2b114786..d9b357c2889f63e 100644 --- a/files/en-us/web/api/htmlelement/offsettop/index.html +++ b/files/en-us/web/api/htmlelement/offsettop/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.offsetTop")}}

    In compliance with the specification, this property will return null on Webkit if the element is hidden (the style.display of this element or any ancestor is "none") or if the style.position of the element itself is set to "fixed".

    diff --git a/files/en-us/web/api/htmlelement/offsetwidth/index.html b/files/en-us/web/api/htmlelement/offsetwidth/index.html index 50c2b9aed6cd086..f11393a74b8dfbe 100644 --- a/files/en-us/web/api/htmlelement/offsetwidth/index.html +++ b/files/en-us/web/api/htmlelement/offsetwidth/index.html @@ -57,8 +57,6 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.offsetWidth")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/oncopy/index.html b/files/en-us/web/api/htmlelement/oncopy/index.html index 771d126d3a35015..33f0284185a6e39 100644 --- a/files/en-us/web/api/htmlelement/oncopy/index.html +++ b/files/en-us/web/api/htmlelement/oncopy/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.oncopy")}}

    Since Firefox 13, the preference dom.event.clipboardevents.enabled controls this feature. It defaults to true but can be disabled.

    diff --git a/files/en-us/web/api/htmlelement/oncut/index.html b/files/en-us/web/api/htmlelement/oncut/index.html index 4bf7e5e9f939106..63803c519402979 100644 --- a/files/en-us/web/api/htmlelement/oncut/index.html +++ b/files/en-us/web/api/htmlelement/oncut/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.oncut")}}

    Since Firefox 13, the preference dom.event.clipboardevents.enabled controls this feature. It defaults to true but can be disabled.

    diff --git a/files/en-us/web/api/htmlelement/onpaste/index.html b/files/en-us/web/api/htmlelement/onpaste/index.html index bbc711c6d02df31..eecd843ec0aec6b 100644 --- a/files/en-us/web/api/htmlelement/onpaste/index.html +++ b/files/en-us/web/api/htmlelement/onpaste/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.onpaste")}}

    Since Firefox 13, the preference dom.event.clipboardevents.enabled controls this feature. It defaults to true but can be disabled.

    diff --git a/files/en-us/web/api/htmlelement/outertext/index.html b/files/en-us/web/api/htmlelement/outertext/index.html index e26db713c266832..dd35ccb9856f2dc 100644 --- a/files/en-us/web/api/htmlelement/outertext/index.html +++ b/files/en-us/web/api/htmlelement/outertext/index.html @@ -23,8 +23,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.outerText")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/pointercancel_event/index.html b/files/en-us/web/api/htmlelement/pointercancel_event/index.html index 6b9cc9f163de847..663cf317cfaa562 100644 --- a/files/en-us/web/api/htmlelement/pointercancel_event/index.html +++ b/files/en-us/web/api/htmlelement/pointercancel_event/index.html @@ -88,8 +88,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.pointercancel_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/pointerdown_event/index.html b/files/en-us/web/api/htmlelement/pointerdown_event/index.html index 9b5a8919eebb607..b4370fb55a9e4f1 100644 --- a/files/en-us/web/api/htmlelement/pointerdown_event/index.html +++ b/files/en-us/web/api/htmlelement/pointerdown_event/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.pointerdown_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/pointerenter_event/index.html b/files/en-us/web/api/htmlelement/pointerenter_event/index.html index b7926b6c5109895..65b15ff45b44952 100644 --- a/files/en-us/web/api/htmlelement/pointerenter_event/index.html +++ b/files/en-us/web/api/htmlelement/pointerenter_event/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.pointerenter_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/pointerleave_event/index.html b/files/en-us/web/api/htmlelement/pointerleave_event/index.html index e5f484900e01f04..94dfe8e08e4df0b 100644 --- a/files/en-us/web/api/htmlelement/pointerleave_event/index.html +++ b/files/en-us/web/api/htmlelement/pointerleave_event/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.pointerleave_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/pointermove_event/index.html b/files/en-us/web/api/htmlelement/pointermove_event/index.html index e784c1d2243d3f2..ba9955e59f7edf9 100644 --- a/files/en-us/web/api/htmlelement/pointermove_event/index.html +++ b/files/en-us/web/api/htmlelement/pointermove_event/index.html @@ -81,8 +81,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.pointermove_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/pointerout_event/index.html b/files/en-us/web/api/htmlelement/pointerout_event/index.html index 0d4187d3bb853ab..c76d3a82cdb4498 100644 --- a/files/en-us/web/api/htmlelement/pointerout_event/index.html +++ b/files/en-us/web/api/htmlelement/pointerout_event/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.pointerout_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/pointerover_event/index.html b/files/en-us/web/api/htmlelement/pointerover_event/index.html index 3829c89c04e912f..3adf4ec7f8cdb37 100644 --- a/files/en-us/web/api/htmlelement/pointerover_event/index.html +++ b/files/en-us/web/api/htmlelement/pointerover_event/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.pointerover_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/pointerup_event/index.html b/files/en-us/web/api/htmlelement/pointerup_event/index.html index 19568011d7a38f9..0e1b2e4529d8d7b 100644 --- a/files/en-us/web/api/htmlelement/pointerup_event/index.html +++ b/files/en-us/web/api/htmlelement/pointerup_event/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.pointerup_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/title/index.html b/files/en-us/web/api/htmlelement/title/index.html index b7bf33995e1f50c..8bdbe585dcb62cb 100644 --- a/files/en-us/web/api/htmlelement/title/index.html +++ b/files/en-us/web/api/htmlelement/title/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.title")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/transitioncancel_event/index.html b/files/en-us/web/api/htmlelement/transitioncancel_event/index.html index 8085153e1402b6a..0fc200d68bdc692 100644 --- a/files/en-us/web/api/htmlelement/transitioncancel_event/index.html +++ b/files/en-us/web/api/htmlelement/transitioncancel_event/index.html @@ -128,8 +128,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.transitioncancel_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/transitionend_event/index.html b/files/en-us/web/api/htmlelement/transitionend_event/index.html index a631e79676b9cac..b10bcb0c0eaf353 100644 --- a/files/en-us/web/api/htmlelement/transitionend_event/index.html +++ b/files/en-us/web/api/htmlelement/transitionend_event/index.html @@ -127,8 +127,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.transitionend_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/transitionrun_event/index.html b/files/en-us/web/api/htmlelement/transitionrun_event/index.html index 49bc1985561650c..b5686a34f300f65 100644 --- a/files/en-us/web/api/htmlelement/transitionrun_event/index.html +++ b/files/en-us/web/api/htmlelement/transitionrun_event/index.html @@ -123,8 +123,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.transitionrun_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlelement/transitionstart_event/index.html b/files/en-us/web/api/htmlelement/transitionstart_event/index.html index a7f9217dddc2053..f69f9d03d6b44b9 100644 --- a/files/en-us/web/api/htmlelement/transitionstart_event/index.html +++ b/files/en-us/web/api/htmlelement/transitionstart_event/index.html @@ -118,8 +118,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.transitionstart_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlembedelement/index.html b/files/en-us/web/api/htmlembedelement/index.html index 30101217156406f..aa2e52dd314fda8 100644 --- a/files/en-us/web/api/htmlembedelement/index.html +++ b/files/en-us/web/api/htmlembedelement/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLEmbedElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlfieldsetelement/index.html b/files/en-us/web/api/htmlfieldsetelement/index.html index dea11caf5ec5bde..552ca6c3f901bf1 100644 --- a/files/en-us/web/api/htmlfieldsetelement/index.html +++ b/files/en-us/web/api/htmlfieldsetelement/index.html @@ -92,8 +92,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFieldSetElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlfontelement/color/index.html b/files/en-us/web/api/htmlfontelement/color/index.html index 8fdc3762dd47fd9..51e34a26a1ba89b 100644 --- a/files/en-us/web/api/htmlfontelement/color/index.html +++ b/files/en-us/web/api/htmlfontelement/color/index.html @@ -67,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLFontElement.color")}}

    diff --git a/files/en-us/web/api/htmlfontelement/face/index.html b/files/en-us/web/api/htmlfontelement/face/index.html index 5da8965170431ba..279bf4490d102f9 100644 --- a/files/en-us/web/api/htmlfontelement/face/index.html +++ b/files/en-us/web/api/htmlfontelement/face/index.html @@ -61,7 +61,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLFontElement.face")}}

    diff --git a/files/en-us/web/api/htmlfontelement/index.html b/files/en-us/web/api/htmlfontelement/index.html index 807e7f8bf0fb72c..990678f41fcec33 100644 --- a/files/en-us/web/api/htmlfontelement/index.html +++ b/files/en-us/web/api/htmlfontelement/index.html @@ -39,7 +39,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLFontElement")}}

    diff --git a/files/en-us/web/api/htmlfontelement/size/index.html b/files/en-us/web/api/htmlfontelement/size/index.html index e65c41859fc2de7..0d2f4ddf0f86176 100644 --- a/files/en-us/web/api/htmlfontelement/size/index.html +++ b/files/en-us/web/api/htmlfontelement/size/index.html @@ -66,7 +66,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLFontElement.size")}}

    diff --git a/files/en-us/web/api/htmlformcontrolscollection/index.html b/files/en-us/web/api/htmlformcontrolscollection/index.html index 13d0e0aad7e97da..e05b8a87c2a6851 100644 --- a/files/en-us/web/api/htmlformcontrolscollection/index.html +++ b/files/en-us/web/api/htmlformcontrolscollection/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormControlsCollection")}}

    See also

    diff --git a/files/en-us/web/api/htmlformcontrolscollection/nameditem/index.html b/files/en-us/web/api/htmlformcontrolscollection/nameditem/index.html index 6f20d19ea34218e..a27b7ad94b93b12 100644 --- a/files/en-us/web/api/htmlformcontrolscollection/nameditem/index.html +++ b/files/en-us/web/api/htmlformcontrolscollection/nameditem/index.html @@ -71,8 +71,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormControlsCollection.namedItem")}}

    See also

    diff --git a/files/en-us/web/api/htmlformelement/acceptcharset/index.html b/files/en-us/web/api/htmlformelement/acceptcharset/index.html index 6b506a239ddb0e2..62c2947dec1f7f4 100644 --- a/files/en-us/web/api/htmlformelement/acceptcharset/index.html +++ b/files/en-us/web/api/htmlformelement/acceptcharset/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement.acceptCharset")}}

    diff --git a/files/en-us/web/api/htmlformelement/action/index.html b/files/en-us/web/api/htmlformelement/action/index.html index 0467b23fee9766e..e00012d5e80abf5 100644 --- a/files/en-us/web/api/htmlformelement/action/index.html +++ b/files/en-us/web/api/htmlformelement/action/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement.action")}}

    diff --git a/files/en-us/web/api/htmlformelement/elements/index.html b/files/en-us/web/api/htmlformelement/elements/index.html index 1752c397610e4cf..cfc3725f0291046 100644 --- a/files/en-us/web/api/htmlformelement/elements/index.html +++ b/files/en-us/web/api/htmlformelement/elements/index.html @@ -102,6 +102,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement.elements")}}

    diff --git a/files/en-us/web/api/htmlformelement/encoding/index.html b/files/en-us/web/api/htmlformelement/encoding/index.html index 37937fc0bbc52b7..60ca4b634af3e38 100644 --- a/files/en-us/web/api/htmlformelement/encoding/index.html +++ b/files/en-us/web/api/htmlformelement/encoding/index.html @@ -16,6 +16,4 @@

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement.encoding")}}

    diff --git a/files/en-us/web/api/htmlformelement/enctype/index.html b/files/en-us/web/api/htmlformelement/enctype/index.html index e29de78552a5c28..646bf12910ec88c 100644 --- a/files/en-us/web/api/htmlformelement/enctype/index.html +++ b/files/en-us/web/api/htmlformelement/enctype/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement.enctype")}}

    diff --git a/files/en-us/web/api/htmlformelement/formdata_event/index.html b/files/en-us/web/api/htmlformelement/formdata_event/index.html index b163eacf822fe2b..4240f33f9007ba2 100644 --- a/files/en-us/web/api/htmlformelement/formdata_event/index.html +++ b/files/en-us/web/api/htmlformelement/formdata_event/index.html @@ -107,7 +107,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLFormElement.formdata_event")}}

    diff --git a/files/en-us/web/api/htmlformelement/index.html b/files/en-us/web/api/htmlformelement/index.html index 211246aa1650a5c..99b4f72bf2ef543 100644 --- a/files/en-us/web/api/htmlformelement/index.html +++ b/files/en-us/web/api/htmlformelement/index.html @@ -254,8 +254,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlformelement/length/index.html b/files/en-us/web/api/htmlformelement/length/index.html index 74b0a088818469f..2141ffa46be6e79 100644 --- a/files/en-us/web/api/htmlformelement/length/index.html +++ b/files/en-us/web/api/htmlformelement/length/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement.length")}}

    diff --git a/files/en-us/web/api/htmlformelement/method/index.html b/files/en-us/web/api/htmlformelement/method/index.html index 8ed9ae7e0894e8d..ef5053d9cc74fd2 100644 --- a/files/en-us/web/api/htmlformelement/method/index.html +++ b/files/en-us/web/api/htmlformelement/method/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement.method")}}

    diff --git a/files/en-us/web/api/htmlformelement/name/index.html b/files/en-us/web/api/htmlformelement/name/index.html index 6e2008f56bbf619..62914dfe722b954 100644 --- a/files/en-us/web/api/htmlformelement/name/index.html +++ b/files/en-us/web/api/htmlformelement/name/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement.name")}}

    diff --git a/files/en-us/web/api/htmlformelement/reportvalidity/index.html b/files/en-us/web/api/htmlformelement/reportvalidity/index.html index a25314366316f73..17f446648064c55 100644 --- a/files/en-us/web/api/htmlformelement/reportvalidity/index.html +++ b/files/en-us/web/api/htmlformelement/reportvalidity/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement.reportValidity")}}

    diff --git a/files/en-us/web/api/htmlformelement/reset/index.html b/files/en-us/web/api/htmlformelement/reset/index.html index 60b60d71a3d7d0d..2787d565e8bcc5f 100644 --- a/files/en-us/web/api/htmlformelement/reset/index.html +++ b/files/en-us/web/api/htmlformelement/reset/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement.reset")}}

    diff --git a/files/en-us/web/api/htmlformelement/reset_event/index.html b/files/en-us/web/api/htmlformelement/reset_event/index.html index 0ae7b61c59f38d3..c35254b7a9b46c2 100644 --- a/files/en-us/web/api/htmlformelement/reset_event/index.html +++ b/files/en-us/web/api/htmlformelement/reset_event/index.html @@ -99,7 +99,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLFormElement.reset_event")}}

    diff --git a/files/en-us/web/api/htmlformelement/submit/index.html b/files/en-us/web/api/htmlformelement/submit/index.html index 7b122d4aa411c70..1235864967b8739 100644 --- a/files/en-us/web/api/htmlformelement/submit/index.html +++ b/files/en-us/web/api/htmlformelement/submit/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement.submit")}}

    diff --git a/files/en-us/web/api/htmlformelement/submit_event/index.html b/files/en-us/web/api/htmlformelement/submit_event/index.html index 5c688fd7af4cb3e..c56f36022207690 100644 --- a/files/en-us/web/api/htmlformelement/submit_event/index.html +++ b/files/en-us/web/api/htmlformelement/submit_event/index.html @@ -109,7 +109,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLFormElement.submit_event")}}

    diff --git a/files/en-us/web/api/htmlformelement/target/index.html b/files/en-us/web/api/htmlformelement/target/index.html index 68d367aa6179e67..59216e16e7f0e94 100644 --- a/files/en-us/web/api/htmlformelement/target/index.html +++ b/files/en-us/web/api/htmlformelement/target/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFormElement.target")}}

    diff --git a/files/en-us/web/api/htmlframesetelement/index.html b/files/en-us/web/api/htmlframesetelement/index.html index 30ba6008d2fec64..bfb64d9ef8d806a 100644 --- a/files/en-us/web/api/htmlframesetelement/index.html +++ b/files/en-us/web/api/htmlframesetelement/index.html @@ -98,8 +98,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLFrameSetElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlheadelement/index.html b/files/en-us/web/api/htmlheadelement/index.html index 0989fe771c252aa..c6e73ee297a4185 100644 --- a/files/en-us/web/api/htmlheadelement/index.html +++ b/files/en-us/web/api/htmlheadelement/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHeadElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlheadingelement/index.html b/files/en-us/web/api/htmlheadingelement/index.html index 86adf8ca09f7f44..67d3757bb8bde4e 100644 --- a/files/en-us/web/api/htmlheadingelement/index.html +++ b/files/en-us/web/api/htmlheadingelement/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHeadingElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlhrelement/index.html b/files/en-us/web/api/htmlhrelement/index.html index c2517b9b2a87851..0e1d7f102d95312 100644 --- a/files/en-us/web/api/htmlhrelement/index.html +++ b/files/en-us/web/api/htmlhrelement/index.html @@ -77,7 +77,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLHRElement")}}

    diff --git a/files/en-us/web/api/htmlhtmlelement/index.html b/files/en-us/web/api/htmlhtmlelement/index.html index 9c52682d32ca451..e6c6834526c4a8f 100644 --- a/files/en-us/web/api/htmlhtmlelement/index.html +++ b/files/en-us/web/api/htmlhtmlelement/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHtmlElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/hash/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/hash/index.html index e76f73f3820b9e6..04100a8683ead3b 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/hash/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/hash/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils.hash")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/host/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/host/index.html index 7458f2878e13536..a6aa8628d3bc401 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/host/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/host/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils.host")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/hostname/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/hostname/index.html index 453ecf992aa2c49..28fd691a94d47df 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/hostname/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/hostname/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils.hostname")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/href/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/href/index.html index a57875521787081..e41dd1a40fc7e66 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/href/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/href/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils.href")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/index.html index c436d935525db1e..85d360eeff8a012 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/origin/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/origin/index.html index 996bcb9291f701b..619faff398b05c4 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/origin/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/origin/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils.origin")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/password/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/password/index.html index 8be2b92e111e256..930f57e6aa13275 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/password/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/password/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils.password")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/pathname/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/pathname/index.html index be7641858575d6a..d0677efa7b25612 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/pathname/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/pathname/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils.pathname")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/port/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/port/index.html index 482b60991e16dcc..c0740af59fbff81 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/port/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/port/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils.port")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/protocol/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/protocol/index.html index 1f0a4de628a764f..06d80e5e21b7ba6 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/protocol/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/protocol/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils.protocol")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/search/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/search/index.html index a4a9e42180d2e08..cc931096023cf16 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/search/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/search/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils.search")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/tostring/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/tostring/index.html index 335ca8ff19fba0a..b0aeb9e0f91eedc 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/tostring/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/tostring/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils.toString")}}

    See also

    diff --git a/files/en-us/web/api/htmlhyperlinkelementutils/username/index.html b/files/en-us/web/api/htmlhyperlinkelementutils/username/index.html index a18fabb488c4581..d81c8f0dfd01a3e 100644 --- a/files/en-us/web/api/htmlhyperlinkelementutils/username/index.html +++ b/files/en-us/web/api/htmlhyperlinkelementutils/username/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLHyperlinkElementUtils.username")}}

    See also

    diff --git a/files/en-us/web/api/htmliframeelement/allowpaymentrequest/index.html b/files/en-us/web/api/htmliframeelement/allowpaymentrequest/index.html index fa50dd210d4a5f1..332c196698fb38b 100644 --- a/files/en-us/web/api/htmliframeelement/allowpaymentrequest/index.html +++ b/files/en-us/web/api/htmliframeelement/allowpaymentrequest/index.html @@ -27,7 +27,6 @@

    Browser Compatibility

    -

    {{Compat("api.HTMLIFrameElement.allowPaymentRequest")}}

    diff --git a/files/en-us/web/api/htmliframeelement/contentdocument/index.html b/files/en-us/web/api/htmliframeelement/contentdocument/index.html index 24e8d90ca7a4937..43862c8fb0b0b48 100644 --- a/files/en-us/web/api/htmliframeelement/contentdocument/index.html +++ b/files/en-us/web/api/htmliframeelement/contentdocument/index.html @@ -32,6 +32,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLIFrameElement.contentDocument")}}

    diff --git a/files/en-us/web/api/htmliframeelement/contentwindow/index.html b/files/en-us/web/api/htmliframeelement/contentwindow/index.html index c58c1ae3deb5905..a3add81ca2a8ab1 100644 --- a/files/en-us/web/api/htmliframeelement/contentwindow/index.html +++ b/files/en-us/web/api/htmliframeelement/contentwindow/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLIFrameElement.contentWindow")}}

    diff --git a/files/en-us/web/api/htmliframeelement/csp/index.html b/files/en-us/web/api/htmliframeelement/csp/index.html index c54b9e38166e41f..615f19fe052374b 100644 --- a/files/en-us/web/api/htmliframeelement/csp/index.html +++ b/files/en-us/web/api/htmliframeelement/csp/index.html @@ -44,6 +44,5 @@

    Browser Compatibility

    -

    {{Compat("api.HTMLIFrameElement.csp")}}

    diff --git a/files/en-us/web/api/htmliframeelement/featurepolicy/index.html b/files/en-us/web/api/htmliframeelement/featurepolicy/index.html index 5d729f2bce8b392..9b3750ba3a8ad4c 100644 --- a/files/en-us/web/api/htmliframeelement/featurepolicy/index.html +++ b/files/en-us/web/api/htmliframeelement/featurepolicy/index.html @@ -40,6 +40,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLIFrameElement.featurePolicy")}}

    diff --git a/files/en-us/web/api/htmliframeelement/index.html b/files/en-us/web/api/htmliframeelement/index.html index 46e789516e047b0..e8cd32d8ef17915 100644 --- a/files/en-us/web/api/htmliframeelement/index.html +++ b/files/en-us/web/api/htmliframeelement/index.html @@ -64,8 +64,6 @@

    Methods

    Inherits properties from its parent, {{domxref("HTMLElement")}}.

    - - @@ -109,7 +107,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLIFrameElement")}}

    diff --git a/files/en-us/web/api/htmliframeelement/referrerpolicy/index.html b/files/en-us/web/api/htmliframeelement/referrerpolicy/index.html index e3a3ae4065a7da5..391654e49e42705 100644 --- a/files/en-us/web/api/htmliframeelement/referrerpolicy/index.html +++ b/files/en-us/web/api/htmliframeelement/referrerpolicy/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLIFrameElement.referrerPolicy")}}

    See also

    diff --git a/files/en-us/web/api/htmliframeelement/src/index.html b/files/en-us/web/api/htmliframeelement/src/index.html index 832f818c7bfda20..a5ddf902b89f6d0 100644 --- a/files/en-us/web/api/htmliframeelement/src/index.html +++ b/files/en-us/web/api/htmliframeelement/src/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLIFrameElement.src")}}

    See also

    diff --git a/files/en-us/web/api/htmliframeelement/srcdoc/index.html b/files/en-us/web/api/htmliframeelement/srcdoc/index.html index df941ec9119272c..4b2d64bb8759834 100644 --- a/files/en-us/web/api/htmliframeelement/srcdoc/index.html +++ b/files/en-us/web/api/htmliframeelement/srcdoc/index.html @@ -33,6 +33,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLIFrameElement.srcdoc")}}

    diff --git a/files/en-us/web/api/htmlimageelement/align/index.html b/files/en-us/web/api/htmlimageelement/align/index.html index 770f81cb68f7097..d7eabbd4e6ab528 100644 --- a/files/en-us/web/api/htmlimageelement/align/index.html +++ b/files/en-us/web/api/htmlimageelement/align/index.html @@ -83,6 +83,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.align")}}

    diff --git a/files/en-us/web/api/htmlimageelement/alt/index.html b/files/en-us/web/api/htmlimageelement/alt/index.html index 52eb16dac8d3acb..b45a4619da91f22 100644 --- a/files/en-us/web/api/htmlimageelement/alt/index.html +++ b/files/en-us/web/api/htmlimageelement/alt/index.html @@ -233,6 +233,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.alt")}}

    diff --git a/files/en-us/web/api/htmlimageelement/border/index.html b/files/en-us/web/api/htmlimageelement/border/index.html index e6766ae3b162a6b..f1ba6f98cdac007 100644 --- a/files/en-us/web/api/htmlimageelement/border/index.html +++ b/files/en-us/web/api/htmlimageelement/border/index.html @@ -75,6 +75,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.border")}}

    diff --git a/files/en-us/web/api/htmlimageelement/complete/index.html b/files/en-us/web/api/htmlimageelement/complete/index.html index 16c2608c698e6bf..6c196d9ede1581d 100644 --- a/files/en-us/web/api/htmlimageelement/complete/index.html +++ b/files/en-us/web/api/htmlimageelement/complete/index.html @@ -94,6 +94,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.complete")}}

    diff --git a/files/en-us/web/api/htmlimageelement/crossorigin/index.html b/files/en-us/web/api/htmlimageelement/crossorigin/index.html index c08c74b92afdd6f..4a03820333c6b40 100644 --- a/files/en-us/web/api/htmlimageelement/crossorigin/index.html +++ b/files/en-us/web/api/htmlimageelement/crossorigin/index.html @@ -125,6 +125,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.crossOrigin")}}

    diff --git a/files/en-us/web/api/htmlimageelement/currentsrc/index.html b/files/en-us/web/api/htmlimageelement/currentsrc/index.html index a44225abd57a287..52ce5adfdf5c633 100644 --- a/files/en-us/web/api/htmlimageelement/currentsrc/index.html +++ b/files/en-us/web/api/htmlimageelement/currentsrc/index.html @@ -72,6 +72,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.currentSrc")}}

    diff --git a/files/en-us/web/api/htmlimageelement/decode/index.html b/files/en-us/web/api/htmlimageelement/decode/index.html index 80d7632de08fbb7..bd9c9bc92f8ac42 100644 --- a/files/en-us/web/api/htmlimageelement/decode/index.html +++ b/files/en-us/web/api/htmlimageelement/decode/index.html @@ -77,6 +77,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.decode")}}

    diff --git a/files/en-us/web/api/htmlimageelement/decoding/index.html b/files/en-us/web/api/htmlimageelement/decoding/index.html index 3b826b78c6f694e..ee36c5448522dde 100644 --- a/files/en-us/web/api/htmlimageelement/decoding/index.html +++ b/files/en-us/web/api/htmlimageelement/decoding/index.html @@ -64,6 +64,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.decoding")}}

    diff --git a/files/en-us/web/api/htmlimageelement/height/index.html b/files/en-us/web/api/htmlimageelement/height/index.html index 7468ba9442ab8f2..50969aa8a9843da 100644 --- a/files/en-us/web/api/htmlimageelement/height/index.html +++ b/files/en-us/web/api/htmlimageelement/height/index.html @@ -86,6 +86,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.height")}}

    diff --git a/files/en-us/web/api/htmlimageelement/image/index.html b/files/en-us/web/api/htmlimageelement/image/index.html index 913901e45f33cbb..5d5842c01ad982f 100644 --- a/files/en-us/web/api/htmlimageelement/image/index.html +++ b/files/en-us/web/api/htmlimageelement/image/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.Image")}}

    diff --git a/files/en-us/web/api/htmlimageelement/index.html b/files/en-us/web/api/htmlimageelement/index.html index ec36b4a7d7a7774..c3e83013a7f6c6d 100644 --- a/files/en-us/web/api/htmlimageelement/index.html +++ b/files/en-us/web/api/htmlimageelement/index.html @@ -170,7 +170,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLImageElement")}}

    diff --git a/files/en-us/web/api/htmlimageelement/longdesc/index.html b/files/en-us/web/api/htmlimageelement/longdesc/index.html index 975765537920ea6..da74299362dfa95 100644 --- a/files/en-us/web/api/htmlimageelement/longdesc/index.html +++ b/files/en-us/web/api/htmlimageelement/longdesc/index.html @@ -70,6 +70,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.longDesc")}}

    diff --git a/files/en-us/web/api/htmlimageelement/lowsrc/index.html b/files/en-us/web/api/htmlimageelement/lowsrc/index.html index e73e206f0753995..a561d2f8bee4fc6 100644 --- a/files/en-us/web/api/htmlimageelement/lowsrc/index.html +++ b/files/en-us/web/api/htmlimageelement/lowsrc/index.html @@ -49,6 +49,4 @@

    Usage notes

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.lowSrc")}}

    diff --git a/files/en-us/web/api/htmlimageelement/naturalheight/index.html b/files/en-us/web/api/htmlimageelement/naturalheight/index.html index ee80cdea05c5d6c..b96b74d5a139257 100644 --- a/files/en-us/web/api/htmlimageelement/naturalheight/index.html +++ b/files/en-us/web/api/htmlimageelement/naturalheight/index.html @@ -95,6 +95,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.naturalHeight")}}

    diff --git a/files/en-us/web/api/htmlimageelement/naturalwidth/index.html b/files/en-us/web/api/htmlimageelement/naturalwidth/index.html index 12d73016e3c8e17..2df846ce960086b 100644 --- a/files/en-us/web/api/htmlimageelement/naturalwidth/index.html +++ b/files/en-us/web/api/htmlimageelement/naturalwidth/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.naturalWidth")}}

    diff --git a/files/en-us/web/api/htmlimageelement/referrerpolicy/index.html b/files/en-us/web/api/htmlimageelement/referrerpolicy/index.html index 058af49db4b2f9d..a16a16b3c972251 100644 --- a/files/en-us/web/api/htmlimageelement/referrerpolicy/index.html +++ b/files/en-us/web/api/htmlimageelement/referrerpolicy/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.referrerPolicy")}}

    See also

    diff --git a/files/en-us/web/api/htmlimageelement/sizes/index.html b/files/en-us/web/api/htmlimageelement/sizes/index.html index c4893b8bb960b25..09a818acd503662 100644 --- a/files/en-us/web/api/htmlimageelement/sizes/index.html +++ b/files/en-us/web/api/htmlimageelement/sizes/index.html @@ -132,8 +132,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.sizes")}}

    See also

    diff --git a/files/en-us/web/api/htmlimageelement/src/index.html b/files/en-us/web/api/htmlimageelement/src/index.html index ee82c9639f2c225..e655b9b640d64ad 100644 --- a/files/en-us/web/api/htmlimageelement/src/index.html +++ b/files/en-us/web/api/htmlimageelement/src/index.html @@ -88,6 +88,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.src")}}

    diff --git a/files/en-us/web/api/htmlimageelement/srcset/index.html b/files/en-us/web/api/htmlimageelement/srcset/index.html index b7ccb7a6cc0a2b0..453d239a8cd7d80 100644 --- a/files/en-us/web/api/htmlimageelement/srcset/index.html +++ b/files/en-us/web/api/htmlimageelement/srcset/index.html @@ -125,8 +125,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.srcset")}}

    See also

    diff --git a/files/en-us/web/api/htmlimageelement/vspace/index.html b/files/en-us/web/api/htmlimageelement/vspace/index.html index a490196b575bead..09eab37ff6a65e9 100644 --- a/files/en-us/web/api/htmlimageelement/vspace/index.html +++ b/files/en-us/web/api/htmlimageelement/vspace/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.vspace")}}

    diff --git a/files/en-us/web/api/htmlimageelement/width/index.html b/files/en-us/web/api/htmlimageelement/width/index.html index 49ef127a3abf1e1..24ce1eaf91c59bc 100644 --- a/files/en-us/web/api/htmlimageelement/width/index.html +++ b/files/en-us/web/api/htmlimageelement/width/index.html @@ -85,6 +85,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.width")}}

    diff --git a/files/en-us/web/api/htmlimageelement/x/index.html b/files/en-us/web/api/htmlimageelement/x/index.html index 24a397a8386decc..80d7f2d5aaa99fe 100644 --- a/files/en-us/web/api/htmlimageelement/x/index.html +++ b/files/en-us/web/api/htmlimageelement/x/index.html @@ -138,6 +138,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.x")}}

    diff --git a/files/en-us/web/api/htmlimageelement/y/index.html b/files/en-us/web/api/htmlimageelement/y/index.html index d37c7b6dee5f25c..556193cd4a762dc 100644 --- a/files/en-us/web/api/htmlimageelement/y/index.html +++ b/files/en-us/web/api/htmlimageelement/y/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLImageElement.y")}}

    diff --git a/files/en-us/web/api/htmlinputelement/invalid_event/index.html b/files/en-us/web/api/htmlinputelement/invalid_event/index.html index e635691f0ddf3ab..a5549fed463a4f7 100644 --- a/files/en-us/web/api/htmlinputelement/invalid_event/index.html +++ b/files/en-us/web/api/htmlinputelement/invalid_event/index.html @@ -98,8 +98,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLInputElement.invalid_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlinputelement/labels/index.html b/files/en-us/web/api/htmlinputelement/labels/index.html index 92b28558b4af0b4..66c538c82ba70a4 100644 --- a/files/en-us/web/api/htmlinputelement/labels/index.html +++ b/files/en-us/web/api/htmlinputelement/labels/index.html @@ -69,6 +69,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLInputElement.labels")}}

    diff --git a/files/en-us/web/api/htmlinputelement/mozgetfilenamearray/index.html b/files/en-us/web/api/htmlinputelement/mozgetfilenamearray/index.html index 52c9ec1bcf470cc..a84c2b679dbf78b 100644 --- a/files/en-us/web/api/htmlinputelement/mozgetfilenamearray/index.html +++ b/files/en-us/web/api/htmlinputelement/mozgetfilenamearray/index.html @@ -43,8 +43,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.HTMLInputElement.mozGetFileNameArray")}}

    See also

    diff --git a/files/en-us/web/api/htmlinputelement/multiple/index.html b/files/en-us/web/api/htmlinputelement/multiple/index.html index e5270f48263df5d..965838cae3dcaeb 100644 --- a/files/en-us/web/api/htmlinputelement/multiple/index.html +++ b/files/en-us/web/api/htmlinputelement/multiple/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLInputElement.multiple")}}

    diff --git a/files/en-us/web/api/htmlinputelement/select/index.html b/files/en-us/web/api/htmlinputelement/select/index.html index 3826a5033955050..062315b0c24c55d 100644 --- a/files/en-us/web/api/htmlinputelement/select/index.html +++ b/files/en-us/web/api/htmlinputelement/select/index.html @@ -71,8 +71,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLInputElement.select")}}

    See also

    diff --git a/files/en-us/web/api/htmlinputelement/setrangetext/index.html b/files/en-us/web/api/htmlinputelement/setrangetext/index.html index 3c61ce78ebc1bae..dccb2c074d01caa 100644 --- a/files/en-us/web/api/htmlinputelement/setrangetext/index.html +++ b/files/en-us/web/api/htmlinputelement/setrangetext/index.html @@ -90,7 +90,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLInputElement.setRangeText")}}

    diff --git a/files/en-us/web/api/htmlinputelement/setselectionrange/index.html b/files/en-us/web/api/htmlinputelement/setselectionrange/index.html index b68925e0a74533d..ec34289621cec4f 100644 --- a/files/en-us/web/api/htmlinputelement/setselectionrange/index.html +++ b/files/en-us/web/api/htmlinputelement/setselectionrange/index.html @@ -100,7 +100,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLInputElement.setSelectionRange")}}

    diff --git a/files/en-us/web/api/htmlinputelement/stepdown/index.html b/files/en-us/web/api/htmlinputelement/stepdown/index.html index b3237b3132f3784..9eadd191016004b 100644 --- a/files/en-us/web/api/htmlinputelement/stepdown/index.html +++ b/files/en-us/web/api/htmlinputelement/stepdown/index.html @@ -151,7 +151,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLInputElement.stepDown")}}

    diff --git a/files/en-us/web/api/htmlinputelement/stepup/index.html b/files/en-us/web/api/htmlinputelement/stepup/index.html index 15e5537463f5645..83fa0a5d712b099 100644 --- a/files/en-us/web/api/htmlinputelement/stepup/index.html +++ b/files/en-us/web/api/htmlinputelement/stepup/index.html @@ -177,7 +177,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLInputElement.stepUp")}}

    diff --git a/files/en-us/web/api/htmlinputelement/webkitdirectory/index.html b/files/en-us/web/api/htmlinputelement/webkitdirectory/index.html index 062b632ca8a3f98..c5fe2fdcd6935d1 100644 --- a/files/en-us/web/api/htmlinputelement/webkitdirectory/index.html +++ b/files/en-us/web/api/htmlinputelement/webkitdirectory/index.html @@ -125,8 +125,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLInputElement.webkitdirectory")}}

    See also

    diff --git a/files/en-us/web/api/htmlinputelement/webkitentries/index.html b/files/en-us/web/api/htmlinputelement/webkitentries/index.html index 0b965a83bb1bd4d..0614d07edccda31 100644 --- a/files/en-us/web/api/htmlinputelement/webkitentries/index.html +++ b/files/en-us/web/api/htmlinputelement/webkitentries/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLInputElement.webkitEntries")}}

    See also

    diff --git a/files/en-us/web/api/htmlkeygenelement/index.html b/files/en-us/web/api/htmlkeygenelement/index.html index c9f7f4bcf6a4c2c..92902147d9f459d 100644 --- a/files/en-us/web/api/htmlkeygenelement/index.html +++ b/files/en-us/web/api/htmlkeygenelement/index.html @@ -67,6 +67,4 @@

    Methods

    Browser compatibility

    - -

    {{Compat("api.HTMLKeygenElement")}}

    diff --git a/files/en-us/web/api/htmllabelelement/control/index.html b/files/en-us/web/api/htmllabelelement/control/index.html index d750d60d8c495cb..bec49dc3d40a264 100644 --- a/files/en-us/web/api/htmllabelelement/control/index.html +++ b/files/en-us/web/api/htmllabelelement/control/index.html @@ -52,7 +52,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLLabelElement.control")}}

    diff --git a/files/en-us/web/api/htmllabelelement/form/index.html b/files/en-us/web/api/htmllabelelement/form/index.html index 2ab3fa8e76e79fb..772443a05cfc0ba 100644 --- a/files/en-us/web/api/htmllabelelement/form/index.html +++ b/files/en-us/web/api/htmllabelelement/form/index.html @@ -50,7 +50,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLLabelElement.form")}}

    diff --git a/files/en-us/web/api/htmllabelelement/htmlfor/index.html b/files/en-us/web/api/htmllabelelement/htmlfor/index.html index dda48d7d3b20bdb..26b1f5397c3ed05 100644 --- a/files/en-us/web/api/htmllabelelement/htmlfor/index.html +++ b/files/en-us/web/api/htmllabelelement/htmlfor/index.html @@ -52,7 +52,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLLabelElement.htmlFor")}}

    diff --git a/files/en-us/web/api/htmllabelelement/index.html b/files/en-us/web/api/htmllabelelement/index.html index 4ff31ae1c26b95a..0324b11806408d1 100644 --- a/files/en-us/web/api/htmllabelelement/index.html +++ b/files/en-us/web/api/htmllabelelement/index.html @@ -68,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLLabelElement")}}

    diff --git a/files/en-us/web/api/htmllegendelement/index.html b/files/en-us/web/api/htmllegendelement/index.html index fc633a28279a98b..4e54ffa4ad45876 100644 --- a/files/en-us/web/api/htmllegendelement/index.html +++ b/files/en-us/web/api/htmllegendelement/index.html @@ -75,7 +75,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLLegendElement")}}

    diff --git a/files/en-us/web/api/htmllielement/index.html b/files/en-us/web/api/htmllielement/index.html index 572928bad8ab8dd..fd3b34ca87994ed 100644 --- a/files/en-us/web/api/htmllielement/index.html +++ b/files/en-us/web/api/htmllielement/index.html @@ -67,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLLIElement")}}

    diff --git a/files/en-us/web/api/htmllinkelement/as/index.html b/files/en-us/web/api/htmllinkelement/as/index.html index c787ffcc7ea80bb..2f33ed4ce6e2575 100644 --- a/files/en-us/web/api/htmllinkelement/as/index.html +++ b/files/en-us/web/api/htmllinkelement/as/index.html @@ -45,6 +45,5 @@

    Browser Compatibility

    -

    {{Compat("api.HTMLLinkElement.as")}}

    diff --git a/files/en-us/web/api/htmllinkelement/index.html b/files/en-us/web/api/htmllinkelement/index.html index 68fdb426f46d5b8..b08d143094a5874 100644 --- a/files/en-us/web/api/htmllinkelement/index.html +++ b/files/en-us/web/api/htmllinkelement/index.html @@ -111,7 +111,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLLinkElement")}}

    diff --git a/files/en-us/web/api/htmllinkelement/referrerpolicy/index.html b/files/en-us/web/api/htmllinkelement/referrerpolicy/index.html index d949bae4ca9c8f5..1d2c9e9239205c0 100644 --- a/files/en-us/web/api/htmllinkelement/referrerpolicy/index.html +++ b/files/en-us/web/api/htmllinkelement/referrerpolicy/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLLinkElement.referrerPolicy")}}

    See also

    diff --git a/files/en-us/web/api/htmllinkelement/rel/index.html b/files/en-us/web/api/htmllinkelement/rel/index.html index 275895c49981a13..cc736afdc9cbcf3 100644 --- a/files/en-us/web/api/htmllinkelement/rel/index.html +++ b/files/en-us/web/api/htmllinkelement/rel/index.html @@ -62,7 +62,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLLinkElement.rel")}}

    diff --git a/files/en-us/web/api/htmllinkelement/rellist/index.html b/files/en-us/web/api/htmllinkelement/rellist/index.html index 8fa12eb5fdaca6e..200367546677552 100644 --- a/files/en-us/web/api/htmllinkelement/rellist/index.html +++ b/files/en-us/web/api/htmllinkelement/rellist/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLLinkElement.relList")}}

    diff --git a/files/en-us/web/api/htmlmapelement/index.html b/files/en-us/web/api/htmlmapelement/index.html index 4985090a250283b..3b3f51429ae55e2 100644 --- a/files/en-us/web/api/htmlmapelement/index.html +++ b/files/en-us/web/api/htmlmapelement/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMapElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlmarqueeelement/index.html b/files/en-us/web/api/htmlmarqueeelement/index.html index 0ec75d314dbfc17..571006befed740f 100644 --- a/files/en-us/web/api/htmlmarqueeelement/index.html +++ b/files/en-us/web/api/htmlmarqueeelement/index.html @@ -113,8 +113,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMarqueeElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/abort_event/index.html b/files/en-us/web/api/htmlmediaelement/abort_event/index.html index 6f91ae94cff5770..4ba0346541db890 100644 --- a/files/en-us/web/api/htmlmediaelement/abort_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/abort_event/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.abort_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/audiotracks/index.html b/files/en-us/web/api/htmlmediaelement/audiotracks/index.html index a26cc3d5eae2850..623fd2f89188389 100644 --- a/files/en-us/web/api/htmlmediaelement/audiotracks/index.html +++ b/files/en-us/web/api/htmlmediaelement/audiotracks/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.audioTracks")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/autoplay/index.html b/files/en-us/web/api/htmlmediaelement/autoplay/index.html index 5b675eb6a267b7f..d125142a590b51e 100644 --- a/files/en-us/web/api/htmlmediaelement/autoplay/index.html +++ b/files/en-us/web/api/htmlmediaelement/autoplay/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.autoplay")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/buffered/index.html b/files/en-us/web/api/htmlmediaelement/buffered/index.html index 0ba64566bdbbd46..e773b019b4dd179 100644 --- a/files/en-us/web/api/htmlmediaelement/buffered/index.html +++ b/files/en-us/web/api/htmlmediaelement/buffered/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.buffered")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/canplay_event/index.html b/files/en-us/web/api/htmlmediaelement/canplay_event/index.html index 8534b5866421ac8..9d23e3486ff4397 100644 --- a/files/en-us/web/api/htmlmediaelement/canplay_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/canplay_event/index.html @@ -86,8 +86,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.canplay_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/canplaythrough_event/index.html b/files/en-us/web/api/htmlmediaelement/canplaythrough_event/index.html index f372b1fb7b86e43..b8624208d70fbed 100644 --- a/files/en-us/web/api/htmlmediaelement/canplaythrough_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/canplaythrough_event/index.html @@ -88,8 +88,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.canplaythrough_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/canplaytype/index.html b/files/en-us/web/api/htmlmediaelement/canplaytype/index.html index 42a8e597abdcaa1..15492043824373f 100644 --- a/files/en-us/web/api/htmlmediaelement/canplaytype/index.html +++ b/files/en-us/web/api/htmlmediaelement/canplaytype/index.html @@ -81,8 +81,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.canPlayType")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/capturestream/index.html b/files/en-us/web/api/htmlmediaelement/capturestream/index.html index 8e851217dc33ba0..4728b24a487ae90 100644 --- a/files/en-us/web/api/htmlmediaelement/capturestream/index.html +++ b/files/en-us/web/api/htmlmediaelement/capturestream/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLMediaElement.captureStream")}}

    Firefox-specific notes

    diff --git a/files/en-us/web/api/htmlmediaelement/controller/index.html b/files/en-us/web/api/htmlmediaelement/controller/index.html index 9169bb9ce03e449..d72d1f32536f728 100644 --- a/files/en-us/web/api/htmlmediaelement/controller/index.html +++ b/files/en-us/web/api/htmlmediaelement/controller/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.controller")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/controls/index.html b/files/en-us/web/api/htmlmediaelement/controls/index.html index 491e0dda8bb05de..d44434983e1a25e 100644 --- a/files/en-us/web/api/htmlmediaelement/controls/index.html +++ b/files/en-us/web/api/htmlmediaelement/controls/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.controls")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/controlslist/index.html b/files/en-us/web/api/htmlmediaelement/controlslist/index.html index 239eed2abf62a4e..cbd9e1f8306c01e 100644 --- a/files/en-us/web/api/htmlmediaelement/controlslist/index.html +++ b/files/en-us/web/api/htmlmediaelement/controlslist/index.html @@ -44,7 +44,6 @@

    Browser Compatibility

    -

    {{Compat("api.HTMLMediaElement.controlsList")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/crossorigin/index.html b/files/en-us/web/api/htmlmediaelement/crossorigin/index.html index fe387fd1e80986d..a622c124adde92e 100644 --- a/files/en-us/web/api/htmlmediaelement/crossorigin/index.html +++ b/files/en-us/web/api/htmlmediaelement/crossorigin/index.html @@ -36,8 +36,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.crossOrigin")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/currentsrc/index.html b/files/en-us/web/api/htmlmediaelement/currentsrc/index.html index 5cbb37068b1d9d5..37de3956236a764 100644 --- a/files/en-us/web/api/htmlmediaelement/currentsrc/index.html +++ b/files/en-us/web/api/htmlmediaelement/currentsrc/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.currentSrc")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/currenttime/index.html b/files/en-us/web/api/htmlmediaelement/currenttime/index.html index eb7898385b37298..3ee262dbf66b0e3 100644 --- a/files/en-us/web/api/htmlmediaelement/currenttime/index.html +++ b/files/en-us/web/api/htmlmediaelement/currenttime/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.currentTime")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/defaultmuted/index.html b/files/en-us/web/api/htmlmediaelement/defaultmuted/index.html index fbcefddc7dd75ab..f33909e35b3c3c0 100644 --- a/files/en-us/web/api/htmlmediaelement/defaultmuted/index.html +++ b/files/en-us/web/api/htmlmediaelement/defaultmuted/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.defaultMuted")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/defaultplaybackrate/index.html b/files/en-us/web/api/htmlmediaelement/defaultplaybackrate/index.html index 98f2602c7c10d3e..5fa6b3faf5de902 100644 --- a/files/en-us/web/api/htmlmediaelement/defaultplaybackrate/index.html +++ b/files/en-us/web/api/htmlmediaelement/defaultplaybackrate/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.defaultPlaybackRate")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/disableremoteplayback/index.html b/files/en-us/web/api/htmlmediaelement/disableremoteplayback/index.html index f5b1cb2fda0546c..fa23c2c2af0e4de 100644 --- a/files/en-us/web/api/htmlmediaelement/disableremoteplayback/index.html +++ b/files/en-us/web/api/htmlmediaelement/disableremoteplayback/index.html @@ -40,7 +40,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLMediaElement.disableRemotePlayback")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/duration/index.html b/files/en-us/web/api/htmlmediaelement/duration/index.html index 7de5b187dd199e0..09d54c462b1c341 100644 --- a/files/en-us/web/api/htmlmediaelement/duration/index.html +++ b/files/en-us/web/api/htmlmediaelement/duration/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.duration")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/durationchange_event/index.html b/files/en-us/web/api/htmlmediaelement/durationchange_event/index.html index fb97441c8e283f7..49fe08ee0cd0091 100644 --- a/files/en-us/web/api/htmlmediaelement/durationchange_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/durationchange_event/index.html @@ -86,8 +86,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.durationchange_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/emptied_event/index.html b/files/en-us/web/api/htmlmediaelement/emptied_event/index.html index d013f486468896b..37792882fcf24c4 100644 --- a/files/en-us/web/api/htmlmediaelement/emptied_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/emptied_event/index.html @@ -86,8 +86,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.emptied_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/ended/index.html b/files/en-us/web/api/htmlmediaelement/ended/index.html index 4769f45ba68c818..2ef97b39f4f8cc7 100644 --- a/files/en-us/web/api/htmlmediaelement/ended/index.html +++ b/files/en-us/web/api/htmlmediaelement/ended/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.ended")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/ended_event/index.html b/files/en-us/web/api/htmlmediaelement/ended_event/index.html index 650b348f73fa4ec..1ffd8026cf4e288 100644 --- a/files/en-us/web/api/htmlmediaelement/ended_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/ended_event/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.ended_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/error/index.html b/files/en-us/web/api/htmlmediaelement/error/index.html index a3e6852b9f192ae..8894ca2630a58e8 100644 --- a/files/en-us/web/api/htmlmediaelement/error/index.html +++ b/files/en-us/web/api/htmlmediaelement/error/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.error")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/error_event/index.html b/files/en-us/web/api/htmlmediaelement/error_event/index.html index bf6b41317a16d3f..951f08db8fb7a1d 100644 --- a/files/en-us/web/api/htmlmediaelement/error_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/error_event/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.error_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/fastseek/index.html b/files/en-us/web/api/htmlmediaelement/fastseek/index.html index d54199c723e4139..413ef135395655e 100644 --- a/files/en-us/web/api/htmlmediaelement/fastseek/index.html +++ b/files/en-us/web/api/htmlmediaelement/fastseek/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.fastSeek")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/index.html b/files/en-us/web/api/htmlmediaelement/index.html index d5d318edbc7633f..2443eb2978a69d3 100644 --- a/files/en-us/web/api/htmlmediaelement/index.html +++ b/files/en-us/web/api/htmlmediaelement/index.html @@ -262,8 +262,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/initialtime/index.html b/files/en-us/web/api/htmlmediaelement/initialtime/index.html index 389d53f095daa14..af494e3f5bc7e33 100644 --- a/files/en-us/web/api/htmlmediaelement/initialtime/index.html +++ b/files/en-us/web/api/htmlmediaelement/initialtime/index.html @@ -33,8 +33,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.initialTime")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/load/index.html b/files/en-us/web/api/htmlmediaelement/load/index.html index d2ecf488deba4d0..ded3827ee5c09cb 100644 --- a/files/en-us/web/api/htmlmediaelement/load/index.html +++ b/files/en-us/web/api/htmlmediaelement/load/index.html @@ -80,6 +80,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.load")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/loadeddata_event/index.html b/files/en-us/web/api/htmlmediaelement/loadeddata_event/index.html index 44aedb631312bce..74bee94fcf6387b 100644 --- a/files/en-us/web/api/htmlmediaelement/loadeddata_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/loadeddata_event/index.html @@ -92,8 +92,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.loadeddata_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/loadedmetadata_event/index.html b/files/en-us/web/api/htmlmediaelement/loadedmetadata_event/index.html index f17c4cd192e27ff..3f585a5d38b5a3c 100644 --- a/files/en-us/web/api/htmlmediaelement/loadedmetadata_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/loadedmetadata_event/index.html @@ -117,8 +117,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.loadedmetadata_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/loadstart_event/index.html b/files/en-us/web/api/htmlmediaelement/loadstart_event/index.html index 40a22070a73e298..be601ed5b4ab1d4 100644 --- a/files/en-us/web/api/htmlmediaelement/loadstart_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/loadstart_event/index.html @@ -147,8 +147,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.loadstart_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/loop/index.html b/files/en-us/web/api/htmlmediaelement/loop/index.html index a0863aa9a842296..5019a55a6ffc919 100644 --- a/files/en-us/web/api/htmlmediaelement/loop/index.html +++ b/files/en-us/web/api/htmlmediaelement/loop/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.loop")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/mediagroup/index.html b/files/en-us/web/api/htmlmediaelement/mediagroup/index.html index ec8902bdd2360ee..eb1589cb0bdea47 100644 --- a/files/en-us/web/api/htmlmediaelement/mediagroup/index.html +++ b/files/en-us/web/api/htmlmediaelement/mediagroup/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.mediaGroup")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/muted/index.html b/files/en-us/web/api/htmlmediaelement/muted/index.html index 878094eedfd7dea..56748d5d77717cb 100644 --- a/files/en-us/web/api/htmlmediaelement/muted/index.html +++ b/files/en-us/web/api/htmlmediaelement/muted/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.muted")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/networkstate/index.html b/files/en-us/web/api/htmlmediaelement/networkstate/index.html index f9e1d582a40d389..a74c721f4c15e2f 100644 --- a/files/en-us/web/api/htmlmediaelement/networkstate/index.html +++ b/files/en-us/web/api/htmlmediaelement/networkstate/index.html @@ -97,8 +97,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.networkState")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/onencrypted/index.html b/files/en-us/web/api/htmlmediaelement/onencrypted/index.html index 7c9626fc217fe19..c87d56b992cf623 100644 --- a/files/en-us/web/api/htmlmediaelement/onencrypted/index.html +++ b/files/en-us/web/api/htmlmediaelement/onencrypted/index.html @@ -36,6 +36,5 @@

    Browser Compatibility

    -

    {{Compat("api.HTMLMediaElement.onencrypted")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/onerror/index.html b/files/en-us/web/api/htmlmediaelement/onerror/index.html index ceff08895b4a085..7276f6a458469c7 100644 --- a/files/en-us/web/api/htmlmediaelement/onerror/index.html +++ b/files/en-us/web/api/htmlmediaelement/onerror/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.onerror")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/onwaitingforkey/index.html b/files/en-us/web/api/htmlmediaelement/onwaitingforkey/index.html index 0a0963c0cfb4eea..dc846ec8a137e9d 100644 --- a/files/en-us/web/api/htmlmediaelement/onwaitingforkey/index.html +++ b/files/en-us/web/api/htmlmediaelement/onwaitingforkey/index.html @@ -36,6 +36,5 @@

    Browser Compatibility

    -

    {{Compat("api.HTMLMediaElement.onwaitingforkey")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/pause/index.html b/files/en-us/web/api/htmlmediaelement/pause/index.html index 39c63a3342a8499..b898183c2c98645 100644 --- a/files/en-us/web/api/htmlmediaelement/pause/index.html +++ b/files/en-us/web/api/htmlmediaelement/pause/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.pause")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/pause_event/index.html b/files/en-us/web/api/htmlmediaelement/pause_event/index.html index 1a0159fd2adc9a4..b7510d3fc8a4525 100644 --- a/files/en-us/web/api/htmlmediaelement/pause_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/pause_event/index.html @@ -102,8 +102,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.pause_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/paused/index.html b/files/en-us/web/api/htmlmediaelement/paused/index.html index f4cc814bf0b3c29..90df15b7cae540a 100644 --- a/files/en-us/web/api/htmlmediaelement/paused/index.html +++ b/files/en-us/web/api/htmlmediaelement/paused/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.paused")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/play/index.html b/files/en-us/web/api/htmlmediaelement/play/index.html index a064e8a94fb5964..4dd1e4e62070bbb 100644 --- a/files/en-us/web/api/htmlmediaelement/play/index.html +++ b/files/en-us/web/api/htmlmediaelement/play/index.html @@ -119,8 +119,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.play")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/play_event/index.html b/files/en-us/web/api/htmlmediaelement/play_event/index.html index 622d092f9167f19..5a843f5b24e3e58 100644 --- a/files/en-us/web/api/htmlmediaelement/play_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/play_event/index.html @@ -67,7 +67,6 @@

    Examples

    'play() method was called or the autoplay attribute was toggled.'); }; -

    Specifications

    @@ -89,8 +88,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.play_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/playbackrate/index.html b/files/en-us/web/api/htmlmediaelement/playbackrate/index.html index 69a180af15e3e72..1cf1dc8e623ec9d 100644 --- a/files/en-us/web/api/htmlmediaelement/playbackrate/index.html +++ b/files/en-us/web/api/htmlmediaelement/playbackrate/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.playbackRate")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/playing_event/index.html b/files/en-us/web/api/htmlmediaelement/playing_event/index.html index 7c5fbca67e7dbbd..daae642d3c3d95f 100644 --- a/files/en-us/web/api/htmlmediaelement/playing_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/playing_event/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.playing_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/progress_event/index.html b/files/en-us/web/api/htmlmediaelement/progress_event/index.html index 2d37c9cb1f30bc9..d11a3b81d102641 100644 --- a/files/en-us/web/api/htmlmediaelement/progress_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/progress_event/index.html @@ -145,8 +145,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.progress_event")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/ratechange_event/index.html b/files/en-us/web/api/htmlmediaelement/ratechange_event/index.html index 855ac7dd36b4cd7..9bbf7a48222388f 100644 --- a/files/en-us/web/api/htmlmediaelement/ratechange_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/ratechange_event/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.ratechange_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/readystate/index.html b/files/en-us/web/api/htmlmediaelement/readystate/index.html index 73abf2c94f9af10..2ed87bc9f254057 100644 --- a/files/en-us/web/api/htmlmediaelement/readystate/index.html +++ b/files/en-us/web/api/htmlmediaelement/readystate/index.html @@ -105,8 +105,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.readyState")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/seekable/index.html b/files/en-us/web/api/htmlmediaelement/seekable/index.html index 5416be125ce4634..739605bba3d02b2 100644 --- a/files/en-us/web/api/htmlmediaelement/seekable/index.html +++ b/files/en-us/web/api/htmlmediaelement/seekable/index.html @@ -68,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLMediaElement.seekable")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/seeked_event/index.html b/files/en-us/web/api/htmlmediaelement/seeked_event/index.html index 53763b52fc3a9ca..e1ce47375a44f46 100644 --- a/files/en-us/web/api/htmlmediaelement/seeked_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/seeked_event/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.seeked_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/seeking_event/index.html b/files/en-us/web/api/htmlmediaelement/seeking_event/index.html index 44c1db42b588b13..af41698d9ee9293 100644 --- a/files/en-us/web/api/htmlmediaelement/seeking_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/seeking_event/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.seeking_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/seektonextframe/index.html b/files/en-us/web/api/htmlmediaelement/seektonextframe/index.html index f0847add72e7201..784bcbe2fdb3dd9 100644 --- a/files/en-us/web/api/htmlmediaelement/seektonextframe/index.html +++ b/files/en-us/web/api/htmlmediaelement/seektonextframe/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.seekToNextFrame")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/setmediakeys/index.html b/files/en-us/web/api/htmlmediaelement/setmediakeys/index.html index 5447887692ba427..28555c31b289d66 100644 --- a/files/en-us/web/api/htmlmediaelement/setmediakeys/index.html +++ b/files/en-us/web/api/htmlmediaelement/setmediakeys/index.html @@ -52,6 +52,5 @@

    Browser Compatibility

    -

    {{Compat("api.HTMLMediaElement.setMediaKeys")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/setsinkid/index.html b/files/en-us/web/api/htmlmediaelement/setsinkid/index.html index fee225eaa5f40c2..73d32b0666fd5c2 100644 --- a/files/en-us/web/api/htmlmediaelement/setsinkid/index.html +++ b/files/en-us/web/api/htmlmediaelement/setsinkid/index.html @@ -75,6 +75,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.setSinkId")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/sinkid/index.html b/files/en-us/web/api/htmlmediaelement/sinkid/index.html index dd7174f19ea0739..1080f249188ec6b 100644 --- a/files/en-us/web/api/htmlmediaelement/sinkid/index.html +++ b/files/en-us/web/api/htmlmediaelement/sinkid/index.html @@ -38,6 +38,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.sinkId")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/src/index.html b/files/en-us/web/api/htmlmediaelement/src/index.html index 71d2ee3245681b1..9ff0091c434c960 100644 --- a/files/en-us/web/api/htmlmediaelement/src/index.html +++ b/files/en-us/web/api/htmlmediaelement/src/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.src")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/srcobject/index.html b/files/en-us/web/api/htmlmediaelement/srcobject/index.html index 92985363d51cd53..04c4f55a63f8200 100644 --- a/files/en-us/web/api/htmlmediaelement/srcobject/index.html +++ b/files/en-us/web/api/htmlmediaelement/srcobject/index.html @@ -105,6 +105,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.srcObject")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/stalled_event/index.html b/files/en-us/web/api/htmlmediaelement/stalled_event/index.html index 715336a33923338..289f614b9d15a87 100644 --- a/files/en-us/web/api/htmlmediaelement/stalled_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/stalled_event/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.stalled_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/suspend_event/index.html b/files/en-us/web/api/htmlmediaelement/suspend_event/index.html index 2c59c60675ab8f7..5a55151d2bd396e 100644 --- a/files/en-us/web/api/htmlmediaelement/suspend_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/suspend_event/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.suspend_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/texttracks/index.html b/files/en-us/web/api/htmlmediaelement/texttracks/index.html index 69b893435ac4192..669fa02e3c5bbe2 100644 --- a/files/en-us/web/api/htmlmediaelement/texttracks/index.html +++ b/files/en-us/web/api/htmlmediaelement/texttracks/index.html @@ -109,8 +109,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.textTracks")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/timeupdate_event/index.html b/files/en-us/web/api/htmlmediaelement/timeupdate_event/index.html index 335ef44321966ab..187504b1e317292 100644 --- a/files/en-us/web/api/htmlmediaelement/timeupdate_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/timeupdate_event/index.html @@ -90,8 +90,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.timeupdate_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/videotracks/index.html b/files/en-us/web/api/htmlmediaelement/videotracks/index.html index 34d3a76fcb87e71..020d730283a76e4 100644 --- a/files/en-us/web/api/htmlmediaelement/videotracks/index.html +++ b/files/en-us/web/api/htmlmediaelement/videotracks/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.videoTracks")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/volume/index.html b/files/en-us/web/api/htmlmediaelement/volume/index.html index b6670498bf8979c..b927883ad534959 100644 --- a/files/en-us/web/api/htmlmediaelement/volume/index.html +++ b/files/en-us/web/api/htmlmediaelement/volume/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.volume")}}

    See also

    diff --git a/files/en-us/web/api/htmlmediaelement/volumechange_event/index.html b/files/en-us/web/api/htmlmediaelement/volumechange_event/index.html index 8f57fc50a77d9fc..808102a46fb1e7e 100644 --- a/files/en-us/web/api/htmlmediaelement/volumechange_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/volumechange_event/index.html @@ -90,8 +90,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.volumechange_event")}}

    diff --git a/files/en-us/web/api/htmlmediaelement/waiting_event/index.html b/files/en-us/web/api/htmlmediaelement/waiting_event/index.html index 692027054e03ff8..98785c005158dd6 100644 --- a/files/en-us/web/api/htmlmediaelement/waiting_event/index.html +++ b/files/en-us/web/api/htmlmediaelement/waiting_event/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMediaElement.waiting_event")}}

    diff --git a/files/en-us/web/api/htmlmenuelement/index.html b/files/en-us/web/api/htmlmenuelement/index.html index 9c14d8a2983cdba..332d93a11f91c09 100644 --- a/files/en-us/web/api/htmlmenuelement/index.html +++ b/files/en-us/web/api/htmlmenuelement/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMenuElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlmenuitemelement/index.html b/files/en-us/web/api/htmlmenuitemelement/index.html index f12b43d4750ce51..5b20ee0ed6e5b6c 100644 --- a/files/en-us/web/api/htmlmenuitemelement/index.html +++ b/files/en-us/web/api/htmlmenuitemelement/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMenuItemElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlmetaelement/index.html b/files/en-us/web/api/htmlmetaelement/index.html index 5586a40eadd8fb9..1102a8e395b6c92 100644 --- a/files/en-us/web/api/htmlmetaelement/index.html +++ b/files/en-us/web/api/htmlmetaelement/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMetaElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlmeterelement/index.html b/files/en-us/web/api/htmlmeterelement/index.html index 38ee37edd4e95bc..f899a9d6cca6cbd 100644 --- a/files/en-us/web/api/htmlmeterelement/index.html +++ b/files/en-us/web/api/htmlmeterelement/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMeterElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlmeterelement/labels/index.html b/files/en-us/web/api/htmlmeterelement/labels/index.html index d55aa3dba8d0160..275b8ac04dd3d1e 100644 --- a/files/en-us/web/api/htmlmeterelement/labels/index.html +++ b/files/en-us/web/api/htmlmeterelement/labels/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLMeterElement.labels")}}

    diff --git a/files/en-us/web/api/htmlmodelement/index.html b/files/en-us/web/api/htmlmodelement/index.html index 1a21803fc3e7d62..39e1d5818ada079 100644 --- a/files/en-us/web/api/htmlmodelement/index.html +++ b/files/en-us/web/api/htmlmodelement/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLModElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlobjectelement/checkvalidity/index.html b/files/en-us/web/api/htmlobjectelement/checkvalidity/index.html index f5d02d9bd301555..5ce6a5a944241e3 100644 --- a/files/en-us/web/api/htmlobjectelement/checkvalidity/index.html +++ b/files/en-us/web/api/htmlobjectelement/checkvalidity/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.checkValidity")}}

    diff --git a/files/en-us/web/api/htmlobjectelement/contentdocument/index.html b/files/en-us/web/api/htmlobjectelement/contentdocument/index.html index ada6b608d460f6f..56d3d1a57358cf5 100644 --- a/files/en-us/web/api/htmlobjectelement/contentdocument/index.html +++ b/files/en-us/web/api/htmlobjectelement/contentdocument/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.contentDocument")}}

    diff --git a/files/en-us/web/api/htmlobjectelement/contentwindow/index.html b/files/en-us/web/api/htmlobjectelement/contentwindow/index.html index 3944e0dd172e1bd..e124d4462504da1 100644 --- a/files/en-us/web/api/htmlobjectelement/contentwindow/index.html +++ b/files/en-us/web/api/htmlobjectelement/contentwindow/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.contentWindow")}}

    diff --git a/files/en-us/web/api/htmlobjectelement/data/index.html b/files/en-us/web/api/htmlobjectelement/data/index.html index 8030abd35747f19..140f246a9d24c00 100644 --- a/files/en-us/web/api/htmlobjectelement/data/index.html +++ b/files/en-us/web/api/htmlobjectelement/data/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.data")}}

    diff --git a/files/en-us/web/api/htmlobjectelement/form/index.html b/files/en-us/web/api/htmlobjectelement/form/index.html index a4fca3d9d5cf8b8..b27e89fde5bd7fa 100644 --- a/files/en-us/web/api/htmlobjectelement/form/index.html +++ b/files/en-us/web/api/htmlobjectelement/form/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.form")}}

    diff --git a/files/en-us/web/api/htmlobjectelement/height/index.html b/files/en-us/web/api/htmlobjectelement/height/index.html index 0eaa4b24faa6c49..4267e376cf5605f 100644 --- a/files/en-us/web/api/htmlobjectelement/height/index.html +++ b/files/en-us/web/api/htmlobjectelement/height/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.height")}}

    diff --git a/files/en-us/web/api/htmlobjectelement/index.html b/files/en-us/web/api/htmlobjectelement/index.html index 756c5f79df03e67..a44cc8724a7d4a7 100644 --- a/files/en-us/web/api/htmlobjectelement/index.html +++ b/files/en-us/web/api/htmlobjectelement/index.html @@ -119,8 +119,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlobjectelement/name/index.html b/files/en-us/web/api/htmlobjectelement/name/index.html index 107106b2a2b68cd..2ced17b980d27e9 100644 --- a/files/en-us/web/api/htmlobjectelement/name/index.html +++ b/files/en-us/web/api/htmlobjectelement/name/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.name")}}

    diff --git a/files/en-us/web/api/htmlobjectelement/setcustomvalidity/index.html b/files/en-us/web/api/htmlobjectelement/setcustomvalidity/index.html index e1568db5f704520..78e8cc5c2b21d20 100644 --- a/files/en-us/web/api/htmlobjectelement/setcustomvalidity/index.html +++ b/files/en-us/web/api/htmlobjectelement/setcustomvalidity/index.html @@ -85,8 +85,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.setCustomValidity")}}

    See also

    diff --git a/files/en-us/web/api/htmlobjectelement/type/index.html b/files/en-us/web/api/htmlobjectelement/type/index.html index a6b1912ac5657e1..7f9620a1f4f155c 100644 --- a/files/en-us/web/api/htmlobjectelement/type/index.html +++ b/files/en-us/web/api/htmlobjectelement/type/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.type")}}

    diff --git a/files/en-us/web/api/htmlobjectelement/typemustmatch/index.html b/files/en-us/web/api/htmlobjectelement/typemustmatch/index.html index 736719f96789de0..b08e779a9da6168 100644 --- a/files/en-us/web/api/htmlobjectelement/typemustmatch/index.html +++ b/files/en-us/web/api/htmlobjectelement/typemustmatch/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.typeMustMatch")}}

    See also

    diff --git a/files/en-us/web/api/htmlobjectelement/usemap/index.html b/files/en-us/web/api/htmlobjectelement/usemap/index.html index ea281c7f2fb3f3b..c30422422e4b14a 100644 --- a/files/en-us/web/api/htmlobjectelement/usemap/index.html +++ b/files/en-us/web/api/htmlobjectelement/usemap/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.useMap")}}

    diff --git a/files/en-us/web/api/htmlobjectelement/validationmessage/index.html b/files/en-us/web/api/htmlobjectelement/validationmessage/index.html index c156fa9bf400c12..bb14152bba5b75a 100644 --- a/files/en-us/web/api/htmlobjectelement/validationmessage/index.html +++ b/files/en-us/web/api/htmlobjectelement/validationmessage/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.validationMessage")}}

    diff --git a/files/en-us/web/api/htmlobjectelement/validity/index.html b/files/en-us/web/api/htmlobjectelement/validity/index.html index 5b72336e7d8f1c4..50d5456dea220c8 100644 --- a/files/en-us/web/api/htmlobjectelement/validity/index.html +++ b/files/en-us/web/api/htmlobjectelement/validity/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.validity")}}

    diff --git a/files/en-us/web/api/htmlobjectelement/width/index.html b/files/en-us/web/api/htmlobjectelement/width/index.html index 7a9d252bb43155e..b67d79ecc61b9d4 100644 --- a/files/en-us/web/api/htmlobjectelement/width/index.html +++ b/files/en-us/web/api/htmlobjectelement/width/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.width")}}

    diff --git a/files/en-us/web/api/htmlobjectelement/willvalidate/index.html b/files/en-us/web/api/htmlobjectelement/willvalidate/index.html index 18b0a17e6106bcc..723163d3ea15a76 100644 --- a/files/en-us/web/api/htmlobjectelement/willvalidate/index.html +++ b/files/en-us/web/api/htmlobjectelement/willvalidate/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLObjectElement.willValidate")}}

    diff --git a/files/en-us/web/api/htmlolistelement/index.html b/files/en-us/web/api/htmlolistelement/index.html index 8a697320afe20eb..d9ad978fa6789f7 100644 --- a/files/en-us/web/api/htmlolistelement/index.html +++ b/files/en-us/web/api/htmlolistelement/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLOListElement")}}

    See also

    diff --git a/files/en-us/web/api/htmloptgroupelement/index.html b/files/en-us/web/api/htmloptgroupelement/index.html index c390554183edc19..c1f7e855a48c739 100644 --- a/files/en-us/web/api/htmloptgroupelement/index.html +++ b/files/en-us/web/api/htmloptgroupelement/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLOptGroupElement")}}

    See also

    diff --git a/files/en-us/web/api/htmloptionelement/index.html b/files/en-us/web/api/htmloptionelement/index.html index 76e4174173399fe..2f7bc8669f6d6d2 100644 --- a/files/en-us/web/api/htmloptionelement/index.html +++ b/files/en-us/web/api/htmloptionelement/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLOptionElement")}}

    See also

    diff --git a/files/en-us/web/api/htmloptionscollection/index.html b/files/en-us/web/api/htmloptionscollection/index.html index 259a5810b399627..25f197eec0e5f40 100644 --- a/files/en-us/web/api/htmloptionscollection/index.html +++ b/files/en-us/web/api/htmloptionscollection/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLOptionsCollection")}}

    See also

    diff --git a/files/en-us/web/api/htmlorforeignelement/blur/index.html b/files/en-us/web/api/htmlorforeignelement/blur/index.html index f29cae4eeb1bb1a..f727994967c7a55 100644 --- a/files/en-us/web/api/htmlorforeignelement/blur/index.html +++ b/files/en-us/web/api/htmlorforeignelement/blur/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.blur")}}

    See also

    diff --git a/files/en-us/web/api/htmlorforeignelement/dataset/index.html b/files/en-us/web/api/htmlorforeignelement/dataset/index.html index 9ea0f1b3ec1ac8e..fdcb855ebf92ff2 100644 --- a/files/en-us/web/api/htmlorforeignelement/dataset/index.html +++ b/files/en-us/web/api/htmlorforeignelement/dataset/index.html @@ -145,8 +145,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.dataset")}}

    diff --git a/files/en-us/web/api/htmlorforeignelement/focus/index.html b/files/en-us/web/api/htmlorforeignelement/focus/index.html index 8bfc90388100fe9..eb64f6c558a68e2 100644 --- a/files/en-us/web/api/htmlorforeignelement/focus/index.html +++ b/files/en-us/web/api/htmlorforeignelement/focus/index.html @@ -152,8 +152,6 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.focus")}}

    See also

    diff --git a/files/en-us/web/api/htmlorforeignelement/index.html b/files/en-us/web/api/htmlorforeignelement/index.html index cec7221b64b19a6..20a492e175acd67 100644 --- a/files/en-us/web/api/htmlorforeignelement/index.html +++ b/files/en-us/web/api/htmlorforeignelement/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLOrForeignElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlorforeignelement/nonce/index.html b/files/en-us/web/api/htmlorforeignelement/nonce/index.html index 952df6b9f07c07b..8d80342d3e8d51e 100644 --- a/files/en-us/web/api/htmlorforeignelement/nonce/index.html +++ b/files/en-us/web/api/htmlorforeignelement/nonce/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.HTMLElement.nonce")}}

    See also

    diff --git a/files/en-us/web/api/htmlorforeignelement/tabindex/index.html b/files/en-us/web/api/htmlorforeignelement/tabindex/index.html index 7aa7f55cc042309..13507828bb904ab 100644 --- a/files/en-us/web/api/htmlorforeignelement/tabindex/index.html +++ b/files/en-us/web/api/htmlorforeignelement/tabindex/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLElement.tabIndex")}}

    See also

    diff --git a/files/en-us/web/api/htmloutputelement/index.html b/files/en-us/web/api/htmloutputelement/index.html index 2aec6bef9c65bb1..2e39a7ae891a4d2 100644 --- a/files/en-us/web/api/htmloutputelement/index.html +++ b/files/en-us/web/api/htmloutputelement/index.html @@ -101,8 +101,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLOutputElement")}}

    See also

    diff --git a/files/en-us/web/api/htmloutputelement/labels/index.html b/files/en-us/web/api/htmloutputelement/labels/index.html index 9de9c7c32903556..daebd911a777382 100644 --- a/files/en-us/web/api/htmloutputelement/labels/index.html +++ b/files/en-us/web/api/htmloutputelement/labels/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLOutputElement.labels")}}

    diff --git a/files/en-us/web/api/htmlparagraphelement/index.html b/files/en-us/web/api/htmlparagraphelement/index.html index f9c9c20fe7a862b..c437b5bb8c8086d 100644 --- a/files/en-us/web/api/htmlparagraphelement/index.html +++ b/files/en-us/web/api/htmlparagraphelement/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLParagraphElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlparamelement/index.html b/files/en-us/web/api/htmlparamelement/index.html index 489905599c7d57e..3d940e953d2d987 100644 --- a/files/en-us/web/api/htmlparamelement/index.html +++ b/files/en-us/web/api/htmlparamelement/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLParamElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlpictureelement/index.html b/files/en-us/web/api/htmlpictureelement/index.html index 97e6e65a447eb0b..8b95660ac15fc58 100644 --- a/files/en-us/web/api/htmlpictureelement/index.html +++ b/files/en-us/web/api/htmlpictureelement/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLPictureElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlpreelement/index.html b/files/en-us/web/api/htmlpreelement/index.html index e83a64d568ea88d..878bf3c6ecf708c 100644 --- a/files/en-us/web/api/htmlpreelement/index.html +++ b/files/en-us/web/api/htmlpreelement/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLPreElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlprogresselement/index.html b/files/en-us/web/api/htmlprogresselement/index.html index b04b0996124b767..cb5caa81b6240d5 100644 --- a/files/en-us/web/api/htmlprogresselement/index.html +++ b/files/en-us/web/api/htmlprogresselement/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLProgressElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlprogresselement/labels/index.html b/files/en-us/web/api/htmlprogresselement/labels/index.html index d013053f4819d9f..4ffcb2ec4b4879e 100644 --- a/files/en-us/web/api/htmlprogresselement/labels/index.html +++ b/files/en-us/web/api/htmlprogresselement/labels/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLProgressElement.labels")}}

    diff --git a/files/en-us/web/api/htmlquoteelement/index.html b/files/en-us/web/api/htmlquoteelement/index.html index e1419d3708dbcea..e8ffe0771271ea7 100644 --- a/files/en-us/web/api/htmlquoteelement/index.html +++ b/files/en-us/web/api/htmlquoteelement/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLQuoteElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlscriptelement/index.html b/files/en-us/web/api/htmlscriptelement/index.html index fd0a7a0225629f3..755f9ab685e5cc0 100644 --- a/files/en-us/web/api/htmlscriptelement/index.html +++ b/files/en-us/web/api/htmlscriptelement/index.html @@ -148,8 +148,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLScriptElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlscriptelement/referrerpolicy/index.html b/files/en-us/web/api/htmlscriptelement/referrerpolicy/index.html index 4493c7a1fe5b79b..f17bdb61537ad6c 100644 --- a/files/en-us/web/api/htmlscriptelement/referrerpolicy/index.html +++ b/files/en-us/web/api/htmlscriptelement/referrerpolicy/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLScriptElement.referrerPolicy")}}

    See also

    diff --git a/files/en-us/web/api/htmlselectelement/remove/index.html b/files/en-us/web/api/htmlselectelement/remove/index.html index 4be0f14fe23373e..d1a19bacf560df6 100644 --- a/files/en-us/web/api/htmlselectelement/remove/index.html +++ b/files/en-us/web/api/htmlselectelement/remove/index.html @@ -23,7 +23,6 @@

    Parameters

  • index is a long for the index of the {{ domxref("HTMLOptionElement") }} to remove from the collection. If the index is not found the method has no effect.
  • -

    Example

    var sel = document.getElementById("existingList");
    diff --git a/files/en-us/web/api/htmlshadowelement/getdistributednodes/index.html b/files/en-us/web/api/htmlshadowelement/getdistributednodes/index.html
    index c286dfe4acb1602..24842311bdd4c51 100644
    --- a/files/en-us/web/api/htmlshadowelement/getdistributednodes/index.html
    +++ b/files/en-us/web/api/htmlshadowelement/getdistributednodes/index.html
    @@ -28,8 +28,6 @@ 

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLShadowElement.getDistributedNodes")}}

    See also

    diff --git a/files/en-us/web/api/htmlshadowelement/index.html b/files/en-us/web/api/htmlshadowelement/index.html index 30a2c19c1636d23..3e2e26d2798c4a4 100644 --- a/files/en-us/web/api/htmlshadowelement/index.html +++ b/files/en-us/web/api/htmlshadowelement/index.html @@ -33,8 +33,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLShadowElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlslotelement/assignedelements/index.html b/files/en-us/web/api/htmlslotelement/assignedelements/index.html index 66e0f4d1dd2ca90..072e617e88276d2 100644 --- a/files/en-us/web/api/htmlslotelement/assignedelements/index.html +++ b/files/en-us/web/api/htmlslotelement/assignedelements/index.html @@ -62,6 +62,5 @@

    Browser Compatibility

    -

    {{Compat("api.HTMLSlotElement.assignedElements")}}

    diff --git a/files/en-us/web/api/htmlslotelement/assignednodes/index.html b/files/en-us/web/api/htmlslotelement/assignednodes/index.html index 5eebcb6c26fd667..60b9256bc1cf535 100644 --- a/files/en-us/web/api/htmlslotelement/assignednodes/index.html +++ b/files/en-us/web/api/htmlslotelement/assignednodes/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLSlotElement.assignedNodes")}}

    diff --git a/files/en-us/web/api/htmlslotelement/index.html b/files/en-us/web/api/htmlslotelement/index.html index df77d5785533d54..6d0e16f261b3a4e 100644 --- a/files/en-us/web/api/htmlslotelement/index.html +++ b/files/en-us/web/api/htmlslotelement/index.html @@ -70,6 +70,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLSlotElement")}}

    diff --git a/files/en-us/web/api/htmlslotelement/name/index.html b/files/en-us/web/api/htmlslotelement/name/index.html index 9b2cabce0206f61..f9ee27671df0e61 100644 --- a/files/en-us/web/api/htmlslotelement/name/index.html +++ b/files/en-us/web/api/htmlslotelement/name/index.html @@ -58,6 +58,5 @@

    Browser Compatibility

    -

    {{Compat("api.HTMLSlotElement.name")}}

    diff --git a/files/en-us/web/api/htmlsourceelement/index.html b/files/en-us/web/api/htmlsourceelement/index.html index 8d9da51573b8daf..cbfb5c3d5f6bace 100644 --- a/files/en-us/web/api/htmlsourceelement/index.html +++ b/files/en-us/web/api/htmlsourceelement/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLSourceElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlspanelement/index.html b/files/en-us/web/api/htmlspanelement/index.html index 0d2fce2b69bfd17..9872737ed2ad995 100644 --- a/files/en-us/web/api/htmlspanelement/index.html +++ b/files/en-us/web/api/htmlspanelement/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLSpanElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlstyleelement/index.html b/files/en-us/web/api/htmlstyleelement/index.html index d5f8c9196a58f7f..e87d43b5dc67488 100644 --- a/files/en-us/web/api/htmlstyleelement/index.html +++ b/files/en-us/web/api/htmlstyleelement/index.html @@ -78,8 +78,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLStyleElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlstyleelement/media/index.html b/files/en-us/web/api/htmlstyleelement/media/index.html index 8581ed140c189bd..efdffad613b7ed4 100644 --- a/files/en-us/web/api/htmlstyleelement/media/index.html +++ b/files/en-us/web/api/htmlstyleelement/media/index.html @@ -88,6 +88,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLStyleElement.media")}}

    diff --git a/files/en-us/web/api/htmlstyleelement/scoped/index.html b/files/en-us/web/api/htmlstyleelement/scoped/index.html index 017b51d7a7fdba0..2639f434a6fdbbb 100644 --- a/files/en-us/web/api/htmlstyleelement/scoped/index.html +++ b/files/en-us/web/api/htmlstyleelement/scoped/index.html @@ -30,7 +30,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLStyleElement.scoped")}}

    diff --git a/files/en-us/web/api/htmlstyleelement/type/index.html b/files/en-us/web/api/htmlstyleelement/type/index.html index a641907dd31f34b..db744116a762d7b 100644 --- a/files/en-us/web/api/htmlstyleelement/type/index.html +++ b/files/en-us/web/api/htmlstyleelement/type/index.html @@ -32,6 +32,4 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.HTMLStyleElement.type")}}

    diff --git a/files/en-us/web/api/htmltablecaptionelement/index.html b/files/en-us/web/api/htmltablecaptionelement/index.html index 90ff6f8db9262fa..8341dcc562c856f 100644 --- a/files/en-us/web/api/htmltablecaptionelement/index.html +++ b/files/en-us/web/api/htmltablecaptionelement/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTableCaptionElement")}}

    See also

    diff --git a/files/en-us/web/api/htmltablecellelement/index.html b/files/en-us/web/api/htmltablecellelement/index.html index ec1c0def35d0c80..e1d0ba0b9a8fcac 100644 --- a/files/en-us/web/api/htmltablecellelement/index.html +++ b/files/en-us/web/api/htmltablecellelement/index.html @@ -124,7 +124,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableCellElement")}}

    diff --git a/files/en-us/web/api/htmltablecolelement/index.html b/files/en-us/web/api/htmltablecolelement/index.html index 0c18071baca6711..b1b285fdbe1d82f 100644 --- a/files/en-us/web/api/htmltablecolelement/index.html +++ b/files/en-us/web/api/htmltablecolelement/index.html @@ -78,7 +78,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableColElement")}}

    diff --git a/files/en-us/web/api/htmltableelement/align/index.html b/files/en-us/web/api/htmltableelement/align/index.html index 4782a31225df529..909dd5ee0633703 100644 --- a/files/en-us/web/api/htmltableelement/align/index.html +++ b/files/en-us/web/api/htmltableelement/align/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTableElement.align")}}

    diff --git a/files/en-us/web/api/htmltableelement/bgcolor/index.html b/files/en-us/web/api/htmltableelement/bgcolor/index.html index 5ea20eb15a05609..bf0e9709ec0ca45 100644 --- a/files/en-us/web/api/htmltableelement/bgcolor/index.html +++ b/files/en-us/web/api/htmltableelement/bgcolor/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTableElement.bgColor")}}

    diff --git a/files/en-us/web/api/htmltableelement/border/index.html b/files/en-us/web/api/htmltableelement/border/index.html index e5a7f9d958d2441..ee04a6daa98664d 100644 --- a/files/en-us/web/api/htmltableelement/border/index.html +++ b/files/en-us/web/api/htmltableelement/border/index.html @@ -37,6 +37,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTableElement.border")}}

    diff --git a/files/en-us/web/api/htmltableelement/caption/index.html b/files/en-us/web/api/htmltableelement/caption/index.html index 43120f420f2af41..d256e2e72b3a857 100644 --- a/files/en-us/web/api/htmltableelement/caption/index.html +++ b/files/en-us/web/api/htmltableelement/caption/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.caption")}}

    diff --git a/files/en-us/web/api/htmltableelement/cellpadding/index.html b/files/en-us/web/api/htmltableelement/cellpadding/index.html index abb22063ca35537..30d4112d4cd3835 100644 --- a/files/en-us/web/api/htmltableelement/cellpadding/index.html +++ b/files/en-us/web/api/htmltableelement/cellpadding/index.html @@ -37,6 +37,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.cellPadding")}}

    diff --git a/files/en-us/web/api/htmltableelement/cellspacing/index.html b/files/en-us/web/api/htmltableelement/cellspacing/index.html index 97fe6af5b2e2a2d..90a9484cb116d95 100644 --- a/files/en-us/web/api/htmltableelement/cellspacing/index.html +++ b/files/en-us/web/api/htmltableelement/cellspacing/index.html @@ -45,6 +45,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.cellSpacing")}}

    diff --git a/files/en-us/web/api/htmltableelement/createcaption/index.html b/files/en-us/web/api/htmltableelement/createcaption/index.html index d1e9fc6e698e6e5..60fd17a3ee2a9ca 100644 --- a/files/en-us/web/api/htmltableelement/createcaption/index.html +++ b/files/en-us/web/api/htmltableelement/createcaption/index.html @@ -69,6 +69,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.createCaption")}}

    diff --git a/files/en-us/web/api/htmltableelement/createtfoot/index.html b/files/en-us/web/api/htmltableelement/createtfoot/index.html index dd4300799cff834..e738db8b6af0a05 100644 --- a/files/en-us/web/api/htmltableelement/createtfoot/index.html +++ b/files/en-us/web/api/htmltableelement/createtfoot/index.html @@ -53,6 +53,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.createTFoot")}}

    diff --git a/files/en-us/web/api/htmltableelement/createthead/index.html b/files/en-us/web/api/htmltableelement/createthead/index.html index 155c28f4292da1f..a44db11de05a27d 100644 --- a/files/en-us/web/api/htmltableelement/createthead/index.html +++ b/files/en-us/web/api/htmltableelement/createthead/index.html @@ -53,6 +53,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.createTHead")}}

    diff --git a/files/en-us/web/api/htmltableelement/deletecaption/index.html b/files/en-us/web/api/htmltableelement/deletecaption/index.html index ec0fe6740a14a1e..0952ef707342ae2 100644 --- a/files/en-us/web/api/htmltableelement/deletecaption/index.html +++ b/files/en-us/web/api/htmltableelement/deletecaption/index.html @@ -61,6 +61,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.deleteCaption")}}

    diff --git a/files/en-us/web/api/htmltableelement/deleterow/index.html b/files/en-us/web/api/htmltableelement/deleterow/index.html index 2707e9ca45fc399..303feece6d64d8b 100644 --- a/files/en-us/web/api/htmltableelement/deleterow/index.html +++ b/files/en-us/web/api/htmltableelement/deleterow/index.html @@ -79,6 +79,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.deleteRow")}}

    diff --git a/files/en-us/web/api/htmltableelement/deletetfoot/index.html b/files/en-us/web/api/htmltableelement/deletetfoot/index.html index 12f9ef9004ea91f..92212579eea62b6 100644 --- a/files/en-us/web/api/htmltableelement/deletetfoot/index.html +++ b/files/en-us/web/api/htmltableelement/deletetfoot/index.html @@ -62,6 +62,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.deleteTFoot")}}

    diff --git a/files/en-us/web/api/htmltableelement/deletethead/index.html b/files/en-us/web/api/htmltableelement/deletethead/index.html index ed9d9ce89e81cdf..7781132006a827c 100644 --- a/files/en-us/web/api/htmltableelement/deletethead/index.html +++ b/files/en-us/web/api/htmltableelement/deletethead/index.html @@ -61,6 +61,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.deleteTHead")}}

    diff --git a/files/en-us/web/api/htmltableelement/frame/index.html b/files/en-us/web/api/htmltableelement/frame/index.html index 96031ca563fe016..45df1a7c90982c5 100644 --- a/files/en-us/web/api/htmltableelement/frame/index.html +++ b/files/en-us/web/api/htmltableelement/frame/index.html @@ -62,6 +62,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.frame")}}

    diff --git a/files/en-us/web/api/htmltableelement/index.html b/files/en-us/web/api/htmltableelement/index.html index 7cbb3e2c11da946..b0438eed24e199f 100644 --- a/files/en-us/web/api/htmltableelement/index.html +++ b/files/en-us/web/api/htmltableelement/index.html @@ -118,8 +118,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTableElement")}}

    See also

    diff --git a/files/en-us/web/api/htmltableelement/insertrow/index.html b/files/en-us/web/api/htmltableelement/insertrow/index.html index 89ade3ad6d14cb4..162520730c0d68c 100644 --- a/files/en-us/web/api/htmltableelement/insertrow/index.html +++ b/files/en-us/web/api/htmltableelement/insertrow/index.html @@ -110,7 +110,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.insertRow")}}

    diff --git a/files/en-us/web/api/htmltableelement/rows/index.html b/files/en-us/web/api/htmltableelement/rows/index.html index e8de7ef69fb4a62..1d811b4b053b148 100644 --- a/files/en-us/web/api/htmltableelement/rows/index.html +++ b/files/en-us/web/api/htmltableelement/rows/index.html @@ -62,6 +62,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.rows")}}

    diff --git a/files/en-us/web/api/htmltableelement/rules/index.html b/files/en-us/web/api/htmltableelement/rules/index.html index 4268b979bac6ee6..4bcda14416bd064 100644 --- a/files/en-us/web/api/htmltableelement/rules/index.html +++ b/files/en-us/web/api/htmltableelement/rules/index.html @@ -56,6 +56,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.rules")}}

    diff --git a/files/en-us/web/api/htmltableelement/summary/index.html b/files/en-us/web/api/htmltableelement/summary/index.html index 8321b637c23c8ff..cb0677dffcd18a5 100644 --- a/files/en-us/web/api/htmltableelement/summary/index.html +++ b/files/en-us/web/api/htmltableelement/summary/index.html @@ -33,6 +33,5 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.summary")}}

    diff --git a/files/en-us/web/api/htmltableelement/tbodies/index.html b/files/en-us/web/api/htmltableelement/tbodies/index.html index 80c7b360ebee015..4724f06b5393ba0 100644 --- a/files/en-us/web/api/htmltableelement/tbodies/index.html +++ b/files/en-us/web/api/htmltableelement/tbodies/index.html @@ -59,7 +59,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.tBodies")}}

    diff --git a/files/en-us/web/api/htmltableelement/tfoot/index.html b/files/en-us/web/api/htmltableelement/tfoot/index.html index a879616e265fc65..1709992c5589960 100644 --- a/files/en-us/web/api/htmltableelement/tfoot/index.html +++ b/files/en-us/web/api/htmltableelement/tfoot/index.html @@ -61,7 +61,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.tFoot")}}

    diff --git a/files/en-us/web/api/htmltableelement/thead/index.html b/files/en-us/web/api/htmltableelement/thead/index.html index 3c55228ce0cccc6..0d35077570036a3 100644 --- a/files/en-us/web/api/htmltableelement/thead/index.html +++ b/files/en-us/web/api/htmltableelement/thead/index.html @@ -67,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.tHead")}}

    diff --git a/files/en-us/web/api/htmltableelement/width/index.html b/files/en-us/web/api/htmltableelement/width/index.html index 02dad8b0ca7796d..f1fa7065e5a8150 100644 --- a/files/en-us/web/api/htmltableelement/width/index.html +++ b/files/en-us/web/api/htmltableelement/width/index.html @@ -29,7 +29,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableElement.width")}}

    diff --git a/files/en-us/web/api/htmltablerowelement/index.html b/files/en-us/web/api/htmltablerowelement/index.html index cf2de054b41156f..a98a736b1e861d8 100644 --- a/files/en-us/web/api/htmltablerowelement/index.html +++ b/files/en-us/web/api/htmltablerowelement/index.html @@ -93,8 +93,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTableRowElement")}}

    See also

    diff --git a/files/en-us/web/api/htmltablerowelement/insertcell/index.html b/files/en-us/web/api/htmltablerowelement/insertcell/index.html index e5cb4923eaf65f2..ec22b577c5d9887 100644 --- a/files/en-us/web/api/htmltablerowelement/insertcell/index.html +++ b/files/en-us/web/api/htmltablerowelement/insertcell/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTableRowElement.insertCell")}}

    See also

    diff --git a/files/en-us/web/api/htmltablerowelement/rowindex/index.html b/files/en-us/web/api/htmltablerowelement/rowindex/index.html index 0821091a1e114d0..e6ccd230ca2162b 100644 --- a/files/en-us/web/api/htmltablerowelement/rowindex/index.html +++ b/files/en-us/web/api/htmltablerowelement/rowindex/index.html @@ -58,6 +58,4 @@

    Result

    Browser compatibility

    - -

    {{Compat("api.HTMLTableRowElement.rowIndex")}}

    diff --git a/files/en-us/web/api/htmltablesectionelement/index.html b/files/en-us/web/api/htmltablesectionelement/index.html index b0187aa9c99b186..e79809ddcf3e80b 100644 --- a/files/en-us/web/api/htmltablesectionelement/index.html +++ b/files/en-us/web/api/htmltablesectionelement/index.html @@ -77,7 +77,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTableSectionElement")}}

    diff --git a/files/en-us/web/api/htmltemplateelement/content/index.html b/files/en-us/web/api/htmltemplateelement/content/index.html index 1d8d13539745307..a00e18939dd383f 100644 --- a/files/en-us/web/api/htmltemplateelement/content/index.html +++ b/files/en-us/web/api/htmltemplateelement/content/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTemplateElement.content")}}

    See also

    diff --git a/files/en-us/web/api/htmltemplateelement/index.html b/files/en-us/web/api/htmltemplateelement/index.html index 2239656b37d3f96..66ba9c93ad77058 100644 --- a/files/en-us/web/api/htmltemplateelement/index.html +++ b/files/en-us/web/api/htmltemplateelement/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTemplateElement")}}

    diff --git a/files/en-us/web/api/htmltextareaelement/index.html b/files/en-us/web/api/htmltextareaelement/index.html index ee17991624564cb..1ca470ce0bda50d 100644 --- a/files/en-us/web/api/htmltextareaelement/index.html +++ b/files/en-us/web/api/htmltextareaelement/index.html @@ -335,6 +335,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTextAreaElement")}}

    diff --git a/files/en-us/web/api/htmltextareaelement/labels/index.html b/files/en-us/web/api/htmltextareaelement/labels/index.html index 1d893c6c497a93e..458bb79de668187 100644 --- a/files/en-us/web/api/htmltextareaelement/labels/index.html +++ b/files/en-us/web/api/htmltextareaelement/labels/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTextAreaElement.labels")}}

    diff --git a/files/en-us/web/api/htmltimeelement/datetime/index.html b/files/en-us/web/api/htmltimeelement/datetime/index.html index 8941a25c3518b68..d26d5b2194c9198 100644 --- a/files/en-us/web/api/htmltimeelement/datetime/index.html +++ b/files/en-us/web/api/htmltimeelement/datetime/index.html @@ -162,7 +162,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTimeElement.dateTime")}}

    diff --git a/files/en-us/web/api/htmltimeelement/index.html b/files/en-us/web/api/htmltimeelement/index.html index 4f80cd75626f480..6b6a9efc83a3755 100644 --- a/files/en-us/web/api/htmltimeelement/index.html +++ b/files/en-us/web/api/htmltimeelement/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLTimeElement")}}

    diff --git a/files/en-us/web/api/htmltitleelement/index.html b/files/en-us/web/api/htmltitleelement/index.html index 21408dd3cd6bd22..895c78f02d5a429 100644 --- a/files/en-us/web/api/htmltitleelement/index.html +++ b/files/en-us/web/api/htmltitleelement/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTitleElement")}}

    See also

    diff --git a/files/en-us/web/api/htmltrackelement/index.html b/files/en-us/web/api/htmltrackelement/index.html index 32c2bd749be5ed9..0b3ea77fd0d0fe5 100644 --- a/files/en-us/web/api/htmltrackelement/index.html +++ b/files/en-us/web/api/htmltrackelement/index.html @@ -110,8 +110,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTrackElement")}}

    See also

    diff --git a/files/en-us/web/api/htmltrackelement/src/index.html b/files/en-us/web/api/htmltrackelement/src/index.html index 5012334665330ee..ed3ac4df342e037 100644 --- a/files/en-us/web/api/htmltrackelement/src/index.html +++ b/files/en-us/web/api/htmltrackelement/src/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLTrackElement.src")}}

    See also

    diff --git a/files/en-us/web/api/htmlulistelement/index.html b/files/en-us/web/api/htmlulistelement/index.html index fd0b7d2a4817840..c785a3dde264467 100644 --- a/files/en-us/web/api/htmlulistelement/index.html +++ b/files/en-us/web/api/htmlulistelement/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLUListElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlunknownelement/index.html b/files/en-us/web/api/htmlunknownelement/index.html index b70fc3f66758cf3..1832c81a41ff3ab 100644 --- a/files/en-us/web/api/htmlunknownelement/index.html +++ b/files/en-us/web/api/htmlunknownelement/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLUnknownElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlvideoelement/autopictureinpicture/index.html b/files/en-us/web/api/htmlvideoelement/autopictureinpicture/index.html index 5ac94a8ef06abae..88777e6377b51ea 100644 --- a/files/en-us/web/api/htmlvideoelement/autopictureinpicture/index.html +++ b/files/en-us/web/api/htmlvideoelement/autopictureinpicture/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLVideoElement.autoPictureInPicture")}}

    See also

    diff --git a/files/en-us/web/api/htmlvideoelement/disablepictureinpicture/index.html b/files/en-us/web/api/htmlvideoelement/disablepictureinpicture/index.html index 94e816c2e1aa7d3..ef2ce2180fe6085 100644 --- a/files/en-us/web/api/htmlvideoelement/disablepictureinpicture/index.html +++ b/files/en-us/web/api/htmlvideoelement/disablepictureinpicture/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLVideoElement.disablePictureInPicture")}}

    diff --git a/files/en-us/web/api/htmlvideoelement/enterpictureinpicture_event/index.html b/files/en-us/web/api/htmlvideoelement/enterpictureinpicture_event/index.html index f0d9fb47081bd3f..df264cd94489c2a 100644 --- a/files/en-us/web/api/htmlvideoelement/enterpictureinpicture_event/index.html +++ b/files/en-us/web/api/htmlvideoelement/enterpictureinpicture_event/index.html @@ -95,8 +95,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLVideoElement.enterpictureinpicture_event")}}

    See Also

    diff --git a/files/en-us/web/api/htmlvideoelement/getvideoplaybackquality/index.html b/files/en-us/web/api/htmlvideoelement/getvideoplaybackquality/index.html index 2c90c98c12496be..ffc1b6ed4c8228e 100644 --- a/files/en-us/web/api/htmlvideoelement/getvideoplaybackquality/index.html +++ b/files/en-us/web/api/htmlvideoelement/getvideoplaybackquality/index.html @@ -64,7 +64,6 @@

    Browser compatibility

    -

    {{Compat("api.HTMLVideoElement.getVideoPlaybackQuality")}}

    diff --git a/files/en-us/web/api/htmlvideoelement/index.html b/files/en-us/web/api/htmlvideoelement/index.html index db469bc892b9926..5d7bcae3e7a2c84 100644 --- a/files/en-us/web/api/htmlvideoelement/index.html +++ b/files/en-us/web/api/htmlvideoelement/index.html @@ -95,7 +95,6 @@

    Events

    Sent to a {{DOMxRef("HTMLVideoElement")}} when it leaves Picture-in-Picture mode. The associated event handler is {{DOMxRef("HTMLVideoElement.onleavepictureinpicture")}}
    -

    Specifications

    @@ -115,8 +114,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLVideoElement")}}

    See also

    diff --git a/files/en-us/web/api/htmlvideoelement/leavepictureinpicture_event/index.html b/files/en-us/web/api/htmlvideoelement/leavepictureinpicture_event/index.html index 7e467e1911428ca..bbb6ca448d5d5e3 100644 --- a/files/en-us/web/api/htmlvideoelement/leavepictureinpicture_event/index.html +++ b/files/en-us/web/api/htmlvideoelement/leavepictureinpicture_event/index.html @@ -99,8 +99,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.HTMLVideoElement.leavepictureinpicture_event")}}

    See Also

    diff --git a/files/en-us/web/api/htmlvideoelement/msisstereo3d/index.html b/files/en-us/web/api/htmlvideoelement/msisstereo3d/index.html index e9072f075c4eeff..2718794f29582a7 100644 --- a/files/en-us/web/api/htmlvideoelement/msisstereo3d/index.html +++ b/files/en-us/web/api/htmlvideoelement/msisstereo3d/index.html @@ -27,8 +27,6 @@

    Value

    Browser compatibility

    - -

    {{Compat("api.HTMLVideoElement.msIsStereo3D")}}

    See also

    diff --git a/files/en-us/web/api/htmlvideoelement/msstereo3drendermode/index.html b/files/en-us/web/api/htmlvideoelement/msstereo3drendermode/index.html index daa4c91de25de83..cc786104e13e2ac 100644 --- a/files/en-us/web/api/htmlvideoelement/msstereo3drendermode/index.html +++ b/files/en-us/web/api/htmlvideoelement/msstereo3drendermode/index.html @@ -27,7 +27,6 @@

    Value

  • stereo (1): Specifies stereo mode is enabled.
  • -

    See also

      diff --git a/files/en-us/web/api/htmlvideoelement/onenterpictureinpicture/index.html b/files/en-us/web/api/htmlvideoelement/onenterpictureinpicture/index.html index e8374ed297462f4..a928a0049a82242 100644 --- a/files/en-us/web/api/htmlvideoelement/onenterpictureinpicture/index.html +++ b/files/en-us/web/api/htmlvideoelement/onenterpictureinpicture/index.html @@ -69,8 +69,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.HTMLVideoElement.onenterpictureinpicture")}}

      See also

      diff --git a/files/en-us/web/api/htmlvideoelement/onleavepictureinpicture/index.html b/files/en-us/web/api/htmlvideoelement/onleavepictureinpicture/index.html index 3d25c4675b45fd6..3b9938913843cd0 100644 --- a/files/en-us/web/api/htmlvideoelement/onleavepictureinpicture/index.html +++ b/files/en-us/web/api/htmlvideoelement/onleavepictureinpicture/index.html @@ -71,8 +71,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.HTMLVideoElement.onleavepictureinpicture")}}

      See also

      diff --git a/files/en-us/web/api/htmlvideoelement/requestpictureinpicture/index.html b/files/en-us/web/api/htmlvideoelement/requestpictureinpicture/index.html index 7e7702459dfc87c..ca4007652b383a7 100644 --- a/files/en-us/web/api/htmlvideoelement/requestpictureinpicture/index.html +++ b/files/en-us/web/api/htmlvideoelement/requestpictureinpicture/index.html @@ -61,7 +61,6 @@

      Browser compatibility

      -

      {{Compat("api.HTMLVideoElement.requestPictureInPicture")}}

      diff --git a/files/en-us/web/api/htmlvideoelement/videoheight/index.html b/files/en-us/web/api/htmlvideoelement/videoheight/index.html index b1adf7a09c75210..8070fc415821111 100644 --- a/files/en-us/web/api/htmlvideoelement/videoheight/index.html +++ b/files/en-us/web/api/htmlvideoelement/videoheight/index.html @@ -90,6 +90,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.HTMLVideoElement.videoHeight")}}

      diff --git a/files/en-us/web/api/htmlvideoelement/videowidth/index.html b/files/en-us/web/api/htmlvideoelement/videowidth/index.html index d95f58c9b3385e3..f06eaa4b955de1d 100644 --- a/files/en-us/web/api/htmlvideoelement/videowidth/index.html +++ b/files/en-us/web/api/htmlvideoelement/videowidth/index.html @@ -56,6 +56,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.HTMLVideoElement.videoWidth")}}

      diff --git a/files/en-us/web/api/idbcursor/advance/index.html b/files/en-us/web/api/idbcursor/advance/index.html index 3dcddfd3d568391..8d0aa706a3844f0 100644 --- a/files/en-us/web/api/idbcursor/advance/index.html +++ b/files/en-us/web/api/idbcursor/advance/index.html @@ -107,7 +107,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBCursor.advance")}}

      diff --git a/files/en-us/web/api/idbcursor/continue/index.html b/files/en-us/web/api/idbcursor/continue/index.html index c7e64808b3aa955..3ff7f8c83020b6d 100644 --- a/files/en-us/web/api/idbcursor/continue/index.html +++ b/files/en-us/web/api/idbcursor/continue/index.html @@ -111,8 +111,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.IDBCursor.continue")}}

      See also

      diff --git a/files/en-us/web/api/idbcursor/continueprimarykey/index.html b/files/en-us/web/api/idbcursor/continueprimarykey/index.html index bde52d0c0eab3c6..faea05840b7d8d4 100644 --- a/files/en-us/web/api/idbcursor/continueprimarykey/index.html +++ b/files/en-us/web/api/idbcursor/continueprimarykey/index.html @@ -120,7 +120,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBCursor.continuePrimaryKey")}}

      diff --git a/files/en-us/web/api/idbcursor/delete/index.html b/files/en-us/web/api/idbcursor/delete/index.html index 259e30eaccae729..839c58c3b19d3c4 100644 --- a/files/en-us/web/api/idbcursor/delete/index.html +++ b/files/en-us/web/api/idbcursor/delete/index.html @@ -109,8 +109,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.IDBCursor.delete")}}

      See also

      diff --git a/files/en-us/web/api/idbcursor/direction/index.html b/files/en-us/web/api/idbcursor/direction/index.html index 8a47ef00e48cd2a..3f3ee930f6099da 100644 --- a/files/en-us/web/api/idbcursor/direction/index.html +++ b/files/en-us/web/api/idbcursor/direction/index.html @@ -115,7 +115,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBCursor.direction")}}

      diff --git a/files/en-us/web/api/idbcursor/index.html b/files/en-us/web/api/idbcursor/index.html index 46ce40eb762fae7..f19ea9ef35f4f0b 100644 --- a/files/en-us/web/api/idbcursor/index.html +++ b/files/en-us/web/api/idbcursor/index.html @@ -123,7 +123,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBCursor")}}

      diff --git a/files/en-us/web/api/idbcursor/key/index.html b/files/en-us/web/api/idbcursor/key/index.html index 6e9429102bbc264..3b270d9ae8a6e6f 100644 --- a/files/en-us/web/api/idbcursor/key/index.html +++ b/files/en-us/web/api/idbcursor/key/index.html @@ -79,7 +79,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBCursor.key")}}

      diff --git a/files/en-us/web/api/idbcursor/primarykey/index.html b/files/en-us/web/api/idbcursor/primarykey/index.html index e5f3873a161d1e1..6ff077e88bedb0d 100644 --- a/files/en-us/web/api/idbcursor/primarykey/index.html +++ b/files/en-us/web/api/idbcursor/primarykey/index.html @@ -82,7 +82,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBCursor.primaryKey")}}

      diff --git a/files/en-us/web/api/idbcursor/source/index.html b/files/en-us/web/api/idbcursor/source/index.html index 9fcc01c7f77461f..da669342e26f909 100644 --- a/files/en-us/web/api/idbcursor/source/index.html +++ b/files/en-us/web/api/idbcursor/source/index.html @@ -81,7 +81,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBCursor.source")}}

      diff --git a/files/en-us/web/api/idbcursor/update/index.html b/files/en-us/web/api/idbcursor/update/index.html index ed3c7ec731692a0..b26115182cfa9bb 100644 --- a/files/en-us/web/api/idbcursor/update/index.html +++ b/files/en-us/web/api/idbcursor/update/index.html @@ -134,7 +134,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBCursor.update")}}

      diff --git a/files/en-us/web/api/idbcursorwithvalue/index.html b/files/en-us/web/api/idbcursorwithvalue/index.html index ec29a95c50a3bb9..037669f9af3e76f 100644 --- a/files/en-us/web/api/idbcursorwithvalue/index.html +++ b/files/en-us/web/api/idbcursorwithvalue/index.html @@ -85,7 +85,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBCursorWithValue")}}

      diff --git a/files/en-us/web/api/idbcursorwithvalue/value/index.html b/files/en-us/web/api/idbcursorwithvalue/value/index.html index cd2d1e91406924a..0c524bf8144626d 100644 --- a/files/en-us/web/api/idbcursorwithvalue/value/index.html +++ b/files/en-us/web/api/idbcursorwithvalue/value/index.html @@ -79,7 +79,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBCursorWithValue.value")}}

      diff --git a/files/en-us/web/api/idbdatabase/abort_event/index.html b/files/en-us/web/api/idbdatabase/abort_event/index.html index fbaf9aa6f35dbbb..096f614e7e5f18b 100644 --- a/files/en-us/web/api/idbdatabase/abort_event/index.html +++ b/files/en-us/web/api/idbdatabase/abort_event/index.html @@ -100,8 +100,6 @@

      Examples

      Browser compatibility

      - -

      {{Compat("api.IDBDatabase.abort_event")}}

      See also

      diff --git a/files/en-us/web/api/idbdatabase/close/index.html b/files/en-us/web/api/idbdatabase/close/index.html index 260cc775422c773..ddfca27f9e7cacf 100644 --- a/files/en-us/web/api/idbdatabase/close/index.html +++ b/files/en-us/web/api/idbdatabase/close/index.html @@ -72,7 +72,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBDatabase.close")}}

      diff --git a/files/en-us/web/api/idbdatabase/close_event/index.html b/files/en-us/web/api/idbdatabase/close_event/index.html index 847ea81bac19e73..84184fb01c89222 100644 --- a/files/en-us/web/api/idbdatabase/close_event/index.html +++ b/files/en-us/web/api/idbdatabase/close_event/index.html @@ -91,8 +91,6 @@

      Examples

      Browser compatibility

      - -

      {{Compat("api.IDBDatabase.close_event")}}

      See also

      diff --git a/files/en-us/web/api/idbdatabase/createobjectstore/index.html b/files/en-us/web/api/idbdatabase/createobjectstore/index.html index aac635837ef1ea0..d1f718e7250cffe 100644 --- a/files/en-us/web/api/idbdatabase/createobjectstore/index.html +++ b/files/en-us/web/api/idbdatabase/createobjectstore/index.html @@ -156,7 +156,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBDatabase.createObjectStore")}}

      diff --git a/files/en-us/web/api/idbdatabase/deleteobjectstore/index.html b/files/en-us/web/api/idbdatabase/deleteobjectstore/index.html index 123c9a8eb455aba..bfe0d205d5205cb 100644 --- a/files/en-us/web/api/idbdatabase/deleteobjectstore/index.html +++ b/files/en-us/web/api/idbdatabase/deleteobjectstore/index.html @@ -104,7 +104,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBDatabase.deleteObjectStore")}}

      diff --git a/files/en-us/web/api/idbdatabase/error_event/index.html b/files/en-us/web/api/idbdatabase/error_event/index.html index 1eca54b8fa90cb3..3104fbc7af833f3 100644 --- a/files/en-us/web/api/idbdatabase/error_event/index.html +++ b/files/en-us/web/api/idbdatabase/error_event/index.html @@ -99,8 +99,6 @@

      Examples

      Browser compatibility

      - -

      {{Compat("api.IDBDatabase.error_event")}}

      See also

      diff --git a/files/en-us/web/api/idbdatabase/index.html b/files/en-us/web/api/idbdatabase/index.html index d27f4d9b4c8d485..978f9754434902c 100644 --- a/files/en-us/web/api/idbdatabase/index.html +++ b/files/en-us/web/api/idbdatabase/index.html @@ -27,7 +27,6 @@

      Properties

      -
      {{domxref("IDBDatabase.name")}} {{readonlyInline}}
      A {{ domxref("DOMString") }} that contains the name of the connected database.
      @@ -155,7 +154,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBDatabase")}}

      diff --git a/files/en-us/web/api/idbdatabase/name/index.html b/files/en-us/web/api/idbdatabase/name/index.html index 0692cf1cf8ab356..50b6c649e6c7de2 100644 --- a/files/en-us/web/api/idbdatabase/name/index.html +++ b/files/en-us/web/api/idbdatabase/name/index.html @@ -77,7 +77,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBDatabase.name")}}

      diff --git a/files/en-us/web/api/idbdatabase/objectstorenames/index.html b/files/en-us/web/api/idbdatabase/objectstorenames/index.html index 57bb5f8a24bc955..88ed235cbd85fd9 100644 --- a/files/en-us/web/api/idbdatabase/objectstorenames/index.html +++ b/files/en-us/web/api/idbdatabase/objectstorenames/index.html @@ -74,7 +74,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBDatabase.objectStoreNames")}}

      diff --git a/files/en-us/web/api/idbdatabase/onabort/index.html b/files/en-us/web/api/idbdatabase/onabort/index.html index 81ce24a6944d078..d3cc4b1bd64cea9 100644 --- a/files/en-us/web/api/idbdatabase/onabort/index.html +++ b/files/en-us/web/api/idbdatabase/onabort/index.html @@ -79,7 +79,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBDatabase.onabort")}}

      diff --git a/files/en-us/web/api/idbdatabase/onclose/index.html b/files/en-us/web/api/idbdatabase/onclose/index.html index 1413e44ad525065..daeb555fda996f7 100644 --- a/files/en-us/web/api/idbdatabase/onclose/index.html +++ b/files/en-us/web/api/idbdatabase/onclose/index.html @@ -55,7 +55,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBDatabase.onclose")}}

      diff --git a/files/en-us/web/api/idbdatabase/onerror/index.html b/files/en-us/web/api/idbdatabase/onerror/index.html index 5e92cad54b1c3f1..48f5b07f005daea 100644 --- a/files/en-us/web/api/idbdatabase/onerror/index.html +++ b/files/en-us/web/api/idbdatabase/onerror/index.html @@ -84,7 +84,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBDatabase.onerror")}}

      diff --git a/files/en-us/web/api/idbdatabase/onversionchange/index.html b/files/en-us/web/api/idbdatabase/onversionchange/index.html index 472771b6f9447e9..61badaff90ffdda 100644 --- a/files/en-us/web/api/idbdatabase/onversionchange/index.html +++ b/files/en-us/web/api/idbdatabase/onversionchange/index.html @@ -89,7 +89,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBDatabase.onversionchange")}}

      diff --git a/files/en-us/web/api/idbdatabase/transaction/index.html b/files/en-us/web/api/idbdatabase/transaction/index.html index 0d9ab99e89bf18c..d0a8fe9ac9d5608 100644 --- a/files/en-us/web/api/idbdatabase/transaction/index.html +++ b/files/en-us/web/api/idbdatabase/transaction/index.html @@ -161,7 +161,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBDatabase.transaction")}}

      diff --git a/files/en-us/web/api/idbdatabase/version/index.html b/files/en-us/web/api/idbdatabase/version/index.html index 872c33cd16196f2..57856e358c28414 100644 --- a/files/en-us/web/api/idbdatabase/version/index.html +++ b/files/en-us/web/api/idbdatabase/version/index.html @@ -74,7 +74,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBDatabase.version")}}

      diff --git a/files/en-us/web/api/idbdatabase/versionchange_event/index.html b/files/en-us/web/api/idbdatabase/versionchange_event/index.html index 2e40a1bae51c2ee..41f5d8e2340a427 100644 --- a/files/en-us/web/api/idbdatabase/versionchange_event/index.html +++ b/files/en-us/web/api/idbdatabase/versionchange_event/index.html @@ -88,8 +88,6 @@

      Examples

      Browser compatibility

      - -

      {{Compat("api.IDBDatabase.versionchange_event")}}

      See also

      diff --git a/files/en-us/web/api/idbdatabaseexception/index.html b/files/en-us/web/api/idbdatabaseexception/index.html index 576014d81df3eee..229cd3066a93428 100644 --- a/files/en-us/web/api/idbdatabaseexception/index.html +++ b/files/en-us/web/api/idbdatabaseexception/index.html @@ -120,6 +120,4 @@

      Constants

      Browser compatibility

      - -

      {{Compat("api.IDBDatabaseException")}}

      diff --git a/files/en-us/web/api/idbenvironment/index.html b/files/en-us/web/api/idbenvironment/index.html index 23f1a15e8b7ccb9..ec5589882032810 100644 --- a/files/en-us/web/api/idbenvironment/index.html +++ b/files/en-us/web/api/idbenvironment/index.html @@ -50,7 +50,6 @@

      Browser compatibility

      -

      {{Compat("api.IDBEnvironment")}}

      diff --git a/files/en-us/web/api/idbfactory/cmp/index.html b/files/en-us/web/api/idbfactory/cmp/index.html index 7a9fc600fa2e96e..e22ffa6d1cbf734 100644 --- a/files/en-us/web/api/idbfactory/cmp/index.html +++ b/files/en-us/web/api/idbfactory/cmp/index.html @@ -87,7 +87,6 @@

      Example

      Specifications

      -
    @@ -112,7 +111,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBFactory.cmp")}}

    diff --git a/files/en-us/web/api/idbfactory/databases/index.html b/files/en-us/web/api/idbfactory/databases/index.html index e9478aeccd92c29..e853149c4f0c3cb 100644 --- a/files/en-us/web/api/idbfactory/databases/index.html +++ b/files/en-us/web/api/idbfactory/databases/index.html @@ -75,7 +75,6 @@

    Example

    Specifications

    -
    diff --git a/files/en-us/web/api/idbfactory/deletedatabase/index.html b/files/en-us/web/api/idbfactory/deletedatabase/index.html index 5f5ec471e9b6ac5..ec5c3d11ef2487d 100644 --- a/files/en-us/web/api/idbfactory/deletedatabase/index.html +++ b/files/en-us/web/api/idbfactory/deletedatabase/index.html @@ -85,7 +85,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBFactory.deleteDatabase")}}

    diff --git a/files/en-us/web/api/idbfactory/index.html b/files/en-us/web/api/idbfactory/index.html index 68be08981aca030..5847f9707dbca2e 100644 --- a/files/en-us/web/api/idbfactory/index.html +++ b/files/en-us/web/api/idbfactory/index.html @@ -85,7 +85,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBFactory")}}

    diff --git a/files/en-us/web/api/idbfactory/open/index.html b/files/en-us/web/api/idbfactory/open/index.html index 4d01e60a62fa552..500fc6d54440706 100644 --- a/files/en-us/web/api/idbfactory/open/index.html +++ b/files/en-us/web/api/idbfactory/open/index.html @@ -145,7 +145,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBFactory.open")}}

    diff --git a/files/en-us/web/api/idbindex/count/index.html b/files/en-us/web/api/idbindex/count/index.html index c60dde1fd9e0f3b..2471078c87c3a93 100644 --- a/files/en-us/web/api/idbindex/count/index.html +++ b/files/en-us/web/api/idbindex/count/index.html @@ -108,7 +108,6 @@

    Example

    Specification

    -
    @@ -133,7 +132,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBIndex.count")}}

    diff --git a/files/en-us/web/api/idbindex/get/index.html b/files/en-us/web/api/idbindex/get/index.html index 3f44e7a4b6a63c4..85403bd47b98572 100644 --- a/files/en-us/web/api/idbindex/get/index.html +++ b/files/en-us/web/api/idbindex/get/index.html @@ -108,7 +108,6 @@

    Example

    Specification

    -
    @@ -128,7 +127,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBIndex.get")}}

    diff --git a/files/en-us/web/api/idbindex/getall/index.html b/files/en-us/web/api/idbindex/getall/index.html index 79e08a0bf0b4c35..a61eb0cf646c29e 100644 --- a/files/en-us/web/api/idbindex/getall/index.html +++ b/files/en-us/web/api/idbindex/getall/index.html @@ -88,8 +88,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.IDBIndex.getAll")}}

    See also

    diff --git a/files/en-us/web/api/idbindex/getallkeys/index.html b/files/en-us/web/api/idbindex/getallkeys/index.html index f29c0df66e2fa89..30646e3860a9292 100644 --- a/files/en-us/web/api/idbindex/getallkeys/index.html +++ b/files/en-us/web/api/idbindex/getallkeys/index.html @@ -92,8 +92,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.IDBIndex.getAllKeys")}}

    See also

    diff --git a/files/en-us/web/api/idbindex/getkey/index.html b/files/en-us/web/api/idbindex/getkey/index.html index 4e7fa2296072c23..e36fe8b72667d46 100644 --- a/files/en-us/web/api/idbindex/getkey/index.html +++ b/files/en-us/web/api/idbindex/getkey/index.html @@ -106,7 +106,6 @@

    Example

    Specification

    -
    @@ -131,7 +130,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBIndex.getKey")}}

    diff --git a/files/en-us/web/api/idbindex/index.html b/files/en-us/web/api/idbindex/index.html index 7893f50518d7137..edd37b8788c4342 100644 --- a/files/en-us/web/api/idbindex/index.html +++ b/files/en-us/web/api/idbindex/index.html @@ -119,8 +119,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.IDBIndex")}}

    See also

    diff --git a/files/en-us/web/api/idbindex/isautolocale/index.html b/files/en-us/web/api/idbindex/isautolocale/index.html index 00fb3e4ac5ec243..9eb723787983a8d 100644 --- a/files/en-us/web/api/idbindex/isautolocale/index.html +++ b/files/en-us/web/api/idbindex/isautolocale/index.html @@ -68,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBIndex.isAutoLocale")}}

    diff --git a/files/en-us/web/api/idbindex/keypath/index.html b/files/en-us/web/api/idbindex/keypath/index.html index 9d79d8d197ba87f..a2b328f73392bd9 100644 --- a/files/en-us/web/api/idbindex/keypath/index.html +++ b/files/en-us/web/api/idbindex/keypath/index.html @@ -90,7 +90,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBIndex.keyPath")}}

    diff --git a/files/en-us/web/api/idbindex/locale/index.html b/files/en-us/web/api/idbindex/locale/index.html index 2931d8eba6f1d92..e589fc9d5d81583 100644 --- a/files/en-us/web/api/idbindex/locale/index.html +++ b/files/en-us/web/api/idbindex/locale/index.html @@ -68,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBIndex.locale")}}

    diff --git a/files/en-us/web/api/idbindex/multientry/index.html b/files/en-us/web/api/idbindex/multientry/index.html index 7e6d62b364a91e7..0dc0217e39d6c1c 100644 --- a/files/en-us/web/api/idbindex/multientry/index.html +++ b/files/en-us/web/api/idbindex/multientry/index.html @@ -109,7 +109,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBIndex.multiEntry")}}

    diff --git a/files/en-us/web/api/idbindex/name/index.html b/files/en-us/web/api/idbindex/name/index.html index 0c5ec0600c7e03c..c5da66d547c7e2b 100644 --- a/files/en-us/web/api/idbindex/name/index.html +++ b/files/en-us/web/api/idbindex/name/index.html @@ -104,7 +104,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBIndex.name")}}

    diff --git a/files/en-us/web/api/idbindex/objectstore/index.html b/files/en-us/web/api/idbindex/objectstore/index.html index 76d34c51e925ea8..8cb7243e7f95c1b 100644 --- a/files/en-us/web/api/idbindex/objectstore/index.html +++ b/files/en-us/web/api/idbindex/objectstore/index.html @@ -92,7 +92,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBIndex.objectStore")}}

    diff --git a/files/en-us/web/api/idbindex/opencursor/index.html b/files/en-us/web/api/idbindex/opencursor/index.html index 52cb2a26612ba60..e2cba5dc5b824bf 100644 --- a/files/en-us/web/api/idbindex/opencursor/index.html +++ b/files/en-us/web/api/idbindex/opencursor/index.html @@ -119,7 +119,6 @@

    Example

    Specification

    -
    @@ -144,7 +143,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBIndex.openCursor")}}

    diff --git a/files/en-us/web/api/idbindex/openkeycursor/index.html b/files/en-us/web/api/idbindex/openkeycursor/index.html index 2e3e18ad562c3f3..e0f2c1dc5af9d0c 100644 --- a/files/en-us/web/api/idbindex/openkeycursor/index.html +++ b/files/en-us/web/api/idbindex/openkeycursor/index.html @@ -121,7 +121,6 @@

    Example

    Specification

    -
    @@ -146,7 +145,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBIndex.openKeyCursor")}}

    diff --git a/files/en-us/web/api/idbindex/unique/index.html b/files/en-us/web/api/idbindex/unique/index.html index 614a8e8a5e54e42..a153588a5d8c2f6 100644 --- a/files/en-us/web/api/idbindex/unique/index.html +++ b/files/en-us/web/api/idbindex/unique/index.html @@ -111,7 +111,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBIndex.unique")}}

    diff --git a/files/en-us/web/api/idbkeyrange/bound/index.html b/files/en-us/web/api/idbkeyrange/bound/index.html index f4e7f021430dfd3..386484e8e772d9b 100644 --- a/files/en-us/web/api/idbkeyrange/bound/index.html +++ b/files/en-us/web/api/idbkeyrange/bound/index.html @@ -126,7 +126,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBKeyRange.bound")}}

    diff --git a/files/en-us/web/api/idbkeyrange/includes/index.html b/files/en-us/web/api/idbkeyrange/includes/index.html index c36799f0875966c..b345aacc55530ed 100644 --- a/files/en-us/web/api/idbkeyrange/includes/index.html +++ b/files/en-us/web/api/idbkeyrange/includes/index.html @@ -105,7 +105,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBKeyRange.includes")}}

    diff --git a/files/en-us/web/api/idbkeyrange/index.html b/files/en-us/web/api/idbkeyrange/index.html index 75d0fadabb982da..98b4d298cdd9cba 100644 --- a/files/en-us/web/api/idbkeyrange/index.html +++ b/files/en-us/web/api/idbkeyrange/index.html @@ -173,7 +173,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBKeyRange")}}

    diff --git a/files/en-us/web/api/idbkeyrange/lower/index.html b/files/en-us/web/api/idbkeyrange/lower/index.html index 71570749057f496..94fd20629850446 100644 --- a/files/en-us/web/api/idbkeyrange/lower/index.html +++ b/files/en-us/web/api/idbkeyrange/lower/index.html @@ -86,7 +86,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBKeyRange.lower")}}

    diff --git a/files/en-us/web/api/idbkeyrange/lowerbound/index.html b/files/en-us/web/api/idbkeyrange/lowerbound/index.html index b6fc827ee0920be..aa82d2e12998bb4 100644 --- a/files/en-us/web/api/idbkeyrange/lowerbound/index.html +++ b/files/en-us/web/api/idbkeyrange/lowerbound/index.html @@ -117,7 +117,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBKeyRange.lowerBound")}}

    diff --git a/files/en-us/web/api/idbkeyrange/loweropen/index.html b/files/en-us/web/api/idbkeyrange/loweropen/index.html index db483728f09eeef..ad8009335f62917 100644 --- a/files/en-us/web/api/idbkeyrange/loweropen/index.html +++ b/files/en-us/web/api/idbkeyrange/loweropen/index.html @@ -104,7 +104,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBKeyRange.lowerOpen")}}

    diff --git a/files/en-us/web/api/idbkeyrange/only/index.html b/files/en-us/web/api/idbkeyrange/only/index.html index 38e03218178a33a..80cb34f196de550 100644 --- a/files/en-us/web/api/idbkeyrange/only/index.html +++ b/files/en-us/web/api/idbkeyrange/only/index.html @@ -108,7 +108,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBKeyRange.only")}}

    diff --git a/files/en-us/web/api/idbkeyrange/upper/index.html b/files/en-us/web/api/idbkeyrange/upper/index.html index 5759e7ccbd1a91c..18f7813adaf4723 100644 --- a/files/en-us/web/api/idbkeyrange/upper/index.html +++ b/files/en-us/web/api/idbkeyrange/upper/index.html @@ -86,7 +86,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBKeyRange.upper")}}

    diff --git a/files/en-us/web/api/idbkeyrange/upperbound/index.html b/files/en-us/web/api/idbkeyrange/upperbound/index.html index 7ec346bae54f7eb..ce3f57bce58f155 100644 --- a/files/en-us/web/api/idbkeyrange/upperbound/index.html +++ b/files/en-us/web/api/idbkeyrange/upperbound/index.html @@ -89,7 +89,6 @@

    Example

    Specification

    -
    @@ -114,7 +113,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBKeyRange.upperBound")}}

    diff --git a/files/en-us/web/api/idbkeyrange/upperopen/index.html b/files/en-us/web/api/idbkeyrange/upperopen/index.html index d724d9d356985de..71aa7cb0c15a73d 100644 --- a/files/en-us/web/api/idbkeyrange/upperopen/index.html +++ b/files/en-us/web/api/idbkeyrange/upperopen/index.html @@ -106,7 +106,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBKeyRange.upperOpen")}}

    diff --git a/files/en-us/web/api/idblocaleawarekeyrange/index.html b/files/en-us/web/api/idblocaleawarekeyrange/index.html index 9abd932ee440724..c5feb7165552365 100644 --- a/files/en-us/web/api/idblocaleawarekeyrange/index.html +++ b/files/en-us/web/api/idblocaleawarekeyrange/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBLocaleAwareKeyRange")}}

    diff --git a/files/en-us/web/api/idbobjectstore/add/index.html b/files/en-us/web/api/idbobjectstore/add/index.html index e2a33b11dc280d3..5065f3319072380 100644 --- a/files/en-us/web/api/idbobjectstore/add/index.html +++ b/files/en-us/web/api/idbobjectstore/add/index.html @@ -138,7 +138,6 @@

    Example

    Specification

    -
    @@ -163,7 +162,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.add")}}

    diff --git a/files/en-us/web/api/idbobjectstore/autoincrement/index.html b/files/en-us/web/api/idbobjectstore/autoincrement/index.html index afbfd1ecc4f8c2d..9a37b06ae39eb3b 100644 --- a/files/en-us/web/api/idbobjectstore/autoincrement/index.html +++ b/files/en-us/web/api/idbobjectstore/autoincrement/index.html @@ -122,7 +122,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.autoIncrement")}}

    diff --git a/files/en-us/web/api/idbobjectstore/clear/index.html b/files/en-us/web/api/idbobjectstore/clear/index.html index 756ccf776198c70..d1fbf98e4c4567a 100644 --- a/files/en-us/web/api/idbobjectstore/clear/index.html +++ b/files/en-us/web/api/idbobjectstore/clear/index.html @@ -122,7 +122,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.clear")}}

    diff --git a/files/en-us/web/api/idbobjectstore/count/index.html b/files/en-us/web/api/idbobjectstore/count/index.html index 1ed6f0a81c778f8..4f8a06f051ec9fb 100644 --- a/files/en-us/web/api/idbobjectstore/count/index.html +++ b/files/en-us/web/api/idbobjectstore/count/index.html @@ -102,7 +102,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.count")}}

    diff --git a/files/en-us/web/api/idbobjectstore/createindex/index.html b/files/en-us/web/api/idbobjectstore/createindex/index.html index 86489f8e75c92ab..ada183d2719e06c 100644 --- a/files/en-us/web/api/idbobjectstore/createindex/index.html +++ b/files/en-us/web/api/idbobjectstore/createindex/index.html @@ -169,7 +169,6 @@

    Example

      objectStore.createIndex("notified", "notified", { unique: false }); }; -

    Specifications

    @@ -196,7 +195,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.createIndex")}}

    diff --git a/files/en-us/web/api/idbobjectstore/delete/index.html b/files/en-us/web/api/idbobjectstore/delete/index.html index b941b080de9aa50..6939c4b8bbb9b4d 100644 --- a/files/en-us/web/api/idbobjectstore/delete/index.html +++ b/files/en-us/web/api/idbobjectstore/delete/index.html @@ -138,7 +138,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.delete")}}

    diff --git a/files/en-us/web/api/idbobjectstore/deleteindex/index.html b/files/en-us/web/api/idbobjectstore/deleteindex/index.html index 8bd4933e24af954..0939855af6592f5 100644 --- a/files/en-us/web/api/idbobjectstore/deleteindex/index.html +++ b/files/en-us/web/api/idbobjectstore/deleteindex/index.html @@ -142,7 +142,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.deleteIndex")}}

    diff --git a/files/en-us/web/api/idbobjectstore/get/index.html b/files/en-us/web/api/idbobjectstore/get/index.html index cd932d601d4208d..7a519b0dcea535c 100644 --- a/files/en-us/web/api/idbobjectstore/get/index.html +++ b/files/en-us/web/api/idbobjectstore/get/index.html @@ -139,7 +139,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.get")}}

    diff --git a/files/en-us/web/api/idbobjectstore/getall/index.html b/files/en-us/web/api/idbobjectstore/getall/index.html index e812fbe4bc330ec..6f101ec71950e52 100644 --- a/files/en-us/web/api/idbobjectstore/getall/index.html +++ b/files/en-us/web/api/idbobjectstore/getall/index.html @@ -105,7 +105,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.getAll")}}

    diff --git a/files/en-us/web/api/idbobjectstore/getallkeys/index.html b/files/en-us/web/api/idbobjectstore/getallkeys/index.html index 2d58183f08c7745..703ccdb7106016b 100644 --- a/files/en-us/web/api/idbobjectstore/getallkeys/index.html +++ b/files/en-us/web/api/idbobjectstore/getallkeys/index.html @@ -96,7 +96,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.getAllKeys")}}

    diff --git a/files/en-us/web/api/idbobjectstore/getkey/index.html b/files/en-us/web/api/idbobjectstore/getkey/index.html index 7729c55ab46283e..410b4acfdd62ded 100644 --- a/files/en-us/web/api/idbobjectstore/getkey/index.html +++ b/files/en-us/web/api/idbobjectstore/getkey/index.html @@ -102,7 +102,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.getKey")}}

    diff --git a/files/en-us/web/api/idbobjectstore/index.html b/files/en-us/web/api/idbobjectstore/index.html index 6895dfd1085fc13..f20612d78b63632 100644 --- a/files/en-us/web/api/idbobjectstore/index.html +++ b/files/en-us/web/api/idbobjectstore/index.html @@ -66,8 +66,6 @@

    Methods

    Example

    - -

    This example shows a variety of different uses of object stores, from updating the data structure with {{domxref("IDBObjectStore.createIndex")}} inside an onupgradeneeded function, to adding a new item to our object store with {{domxref("IDBObjectStore.add")}}. For a full working example, see our To-do Notifications app (view example live.)

    // Let us open our database
    @@ -160,7 +158,6 @@ 

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore")}}

    diff --git a/files/en-us/web/api/idbobjectstore/index/index.html b/files/en-us/web/api/idbobjectstore/index/index.html index a5152453a4c5b1d..efe846ffb29c12c 100644 --- a/files/en-us/web/api/idbobjectstore/index/index.html +++ b/files/en-us/web/api/idbobjectstore/index/index.html @@ -118,7 +118,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.index")}}

    diff --git a/files/en-us/web/api/idbobjectstore/indexnames/index.html b/files/en-us/web/api/idbobjectstore/indexnames/index.html index 175976a8aeda486..16a9694e272755f 100644 --- a/files/en-us/web/api/idbobjectstore/indexnames/index.html +++ b/files/en-us/web/api/idbobjectstore/indexnames/index.html @@ -57,7 +57,6 @@

    Example

      note.innerHTML += '<li>Transaction completed.</li>'; }; - transaction.onerror = function(event) { note.innerHTML += '<li>Transaction not opened due to error. Duplicate items not allowed.</li>'; }; @@ -101,7 +100,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.indexNames")}}

    diff --git a/files/en-us/web/api/idbobjectstore/keypath/index.html b/files/en-us/web/api/idbobjectstore/keypath/index.html index 7301c4c02a772e2..ef22417b0bd32b0 100644 --- a/files/en-us/web/api/idbobjectstore/keypath/index.html +++ b/files/en-us/web/api/idbobjectstore/keypath/index.html @@ -102,7 +102,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.keyPath")}}

    diff --git a/files/en-us/web/api/idbobjectstore/name/index.html b/files/en-us/web/api/idbobjectstore/name/index.html index 9d96e5af19c3877..4a82fd9dd846459 100644 --- a/files/en-us/web/api/idbobjectstore/name/index.html +++ b/files/en-us/web/api/idbobjectstore/name/index.html @@ -115,7 +115,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.name")}}

    diff --git a/files/en-us/web/api/idbobjectstore/opencursor/index.html b/files/en-us/web/api/idbobjectstore/opencursor/index.html index ff7f0ce5c07316f..3afa37671100396 100644 --- a/files/en-us/web/api/idbobjectstore/opencursor/index.html +++ b/files/en-us/web/api/idbobjectstore/opencursor/index.html @@ -90,7 +90,6 @@

    Example

    Specification

    -
    @@ -115,7 +114,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.openCursor")}}

    diff --git a/files/en-us/web/api/idbobjectstore/openkeycursor/index.html b/files/en-us/web/api/idbobjectstore/openkeycursor/index.html index 05cb295fe668f31..762ceb00975a02a 100644 --- a/files/en-us/web/api/idbobjectstore/openkeycursor/index.html +++ b/files/en-us/web/api/idbobjectstore/openkeycursor/index.html @@ -111,7 +111,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.openKeyCursor")}}

    diff --git a/files/en-us/web/api/idbobjectstore/put/index.html b/files/en-us/web/api/idbobjectstore/put/index.html index 34582111c0a18c3..32d8b10d1f1d48a 100644 --- a/files/en-us/web/api/idbobjectstore/put/index.html +++ b/files/en-us/web/api/idbobjectstore/put/index.html @@ -154,7 +154,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.put")}}

    diff --git a/files/en-us/web/api/idbobjectstore/transaction/index.html b/files/en-us/web/api/idbobjectstore/transaction/index.html index 5ab1260334be045..10e20e4ad4d106a 100644 --- a/files/en-us/web/api/idbobjectstore/transaction/index.html +++ b/files/en-us/web/api/idbobjectstore/transaction/index.html @@ -100,7 +100,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBObjectStore.transaction")}}

    diff --git a/files/en-us/web/api/idbopendbrequest/blocked_event/index.html b/files/en-us/web/api/idbopendbrequest/blocked_event/index.html index 6647f458debe4ae..b0958e185108c7b 100644 --- a/files/en-us/web/api/idbopendbrequest/blocked_event/index.html +++ b/files/en-us/web/api/idbopendbrequest/blocked_event/index.html @@ -104,8 +104,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.IDBOpenDBRequest.blocked_event")}}

    See also

    diff --git a/files/en-us/web/api/idbopendbrequest/index.html b/files/en-us/web/api/idbopendbrequest/index.html index 154c1ce8384bc33..6ad627850e5452e 100644 --- a/files/en-us/web/api/idbopendbrequest/index.html +++ b/files/en-us/web/api/idbopendbrequest/index.html @@ -117,7 +117,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBOpenDBRequest")}}

    diff --git a/files/en-us/web/api/idbopendbrequest/onblocked/index.html b/files/en-us/web/api/idbopendbrequest/onblocked/index.html index 5d4caade1d109d2..a4a21a08803f5de 100644 --- a/files/en-us/web/api/idbopendbrequest/onblocked/index.html +++ b/files/en-us/web/api/idbopendbrequest/onblocked/index.html @@ -95,7 +95,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBOpenDBRequest.onblocked")}}

    diff --git a/files/en-us/web/api/idbopendbrequest/onupgradeneeded/index.html b/files/en-us/web/api/idbopendbrequest/onupgradeneeded/index.html index e738092c70bc2b1..ac92bc5ee3d0f48 100644 --- a/files/en-us/web/api/idbopendbrequest/onupgradeneeded/index.html +++ b/files/en-us/web/api/idbopendbrequest/onupgradeneeded/index.html @@ -105,7 +105,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBOpenDBRequest.onupgradeneeded")}}

    diff --git a/files/en-us/web/api/idbopendbrequest/upgradeneeded_event/index.html b/files/en-us/web/api/idbopendbrequest/upgradeneeded_event/index.html index c704707ae551912..c2326601363bd80 100644 --- a/files/en-us/web/api/idbopendbrequest/upgradeneeded_event/index.html +++ b/files/en-us/web/api/idbopendbrequest/upgradeneeded_event/index.html @@ -76,8 +76,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.IDBOpenDBRequest.upgradeneeded_event")}}

    See also

    diff --git a/files/en-us/web/api/idbrequest/error/index.html b/files/en-us/web/api/idbrequest/error/index.html index 0e88c5e8c48ad48..1f9160fce72c803 100644 --- a/files/en-us/web/api/idbrequest/error/index.html +++ b/files/en-us/web/api/idbrequest/error/index.html @@ -125,7 +125,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBRequest.error")}}

    diff --git a/files/en-us/web/api/idbrequest/error_event/index.html b/files/en-us/web/api/idbrequest/error_event/index.html index ba8d22fd5bae037..e3d7bcc303d64f3 100644 --- a/files/en-us/web/api/idbrequest/error_event/index.html +++ b/files/en-us/web/api/idbrequest/error_event/index.html @@ -111,8 +111,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.IDBRequest.error_event")}}

    See also

    diff --git a/files/en-us/web/api/idbrequest/index.html b/files/en-us/web/api/idbrequest/index.html index 0c3f56346eed6ca..5178fc07a5626b5 100644 --- a/files/en-us/web/api/idbrequest/index.html +++ b/files/en-us/web/api/idbrequest/index.html @@ -113,7 +113,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBRequest")}}

    diff --git a/files/en-us/web/api/idbrequest/onerror/index.html b/files/en-us/web/api/idbrequest/onerror/index.html index ad4145e64c750dd..d9b6ecdac8f20c0 100644 --- a/files/en-us/web/api/idbrequest/onerror/index.html +++ b/files/en-us/web/api/idbrequest/onerror/index.html @@ -87,7 +87,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBRequest.onerror")}}

    diff --git a/files/en-us/web/api/idbrequest/onsuccess/index.html b/files/en-us/web/api/idbrequest/onsuccess/index.html index 2a08e3bb6db906c..3f260e3028d95b0 100644 --- a/files/en-us/web/api/idbrequest/onsuccess/index.html +++ b/files/en-us/web/api/idbrequest/onsuccess/index.html @@ -81,7 +81,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBRequest.onsuccess")}}

    diff --git a/files/en-us/web/api/idbrequest/readystate/index.html b/files/en-us/web/api/idbrequest/readystate/index.html index 66ce6e65cde410e..354c51a7dccba4e 100644 --- a/files/en-us/web/api/idbrequest/readystate/index.html +++ b/files/en-us/web/api/idbrequest/readystate/index.html @@ -109,7 +109,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBRequest.readyState")}}

    diff --git a/files/en-us/web/api/idbrequest/result/index.html b/files/en-us/web/api/idbrequest/result/index.html index d9ab287f5c063b1..4ae49da33ff2295 100644 --- a/files/en-us/web/api/idbrequest/result/index.html +++ b/files/en-us/web/api/idbrequest/result/index.html @@ -83,7 +83,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBRequest.result")}}

    diff --git a/files/en-us/web/api/idbrequest/source/index.html b/files/en-us/web/api/idbrequest/source/index.html index 3f23870fda4c68b..306cec82ea838f3 100644 --- a/files/en-us/web/api/idbrequest/source/index.html +++ b/files/en-us/web/api/idbrequest/source/index.html @@ -88,7 +88,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBRequest.source")}}

    diff --git a/files/en-us/web/api/idbrequest/success_event/index.html b/files/en-us/web/api/idbrequest/success_event/index.html index d5a01f815c85825..9af405956e3a0ea 100644 --- a/files/en-us/web/api/idbrequest/success_event/index.html +++ b/files/en-us/web/api/idbrequest/success_event/index.html @@ -88,8 +88,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.IDBRequest.success_event")}}

    See also

    diff --git a/files/en-us/web/api/idbrequest/transaction/index.html b/files/en-us/web/api/idbrequest/transaction/index.html index 7a2bbe4122354f8..cd7171a452053c8 100644 --- a/files/en-us/web/api/idbrequest/transaction/index.html +++ b/files/en-us/web/api/idbrequest/transaction/index.html @@ -114,7 +114,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBRequest.transaction")}}

    diff --git a/files/en-us/web/api/idbtransaction/abort/index.html b/files/en-us/web/api/idbtransaction/abort/index.html index 3d3733c16b57635..b2829d3a963c172 100644 --- a/files/en-us/web/api/idbtransaction/abort/index.html +++ b/files/en-us/web/api/idbtransaction/abort/index.html @@ -71,7 +71,6 @@

    Example

    note.innerHTML += '<li>Transaction completed: database modification finished.</li>'; }; - transaction.onerror = function(event) { note.innerHTML += '<li>Transaction not opened due to error. Duplicate items not allowed.</li>'; }; @@ -116,8 +115,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.IDBTransaction.abort")}}

    See also

    diff --git a/files/en-us/web/api/idbtransaction/abort_event/index.html b/files/en-us/web/api/idbtransaction/abort_event/index.html index 9d894370c725e29..10337883f263270 100644 --- a/files/en-us/web/api/idbtransaction/abort_event/index.html +++ b/files/en-us/web/api/idbtransaction/abort_event/index.html @@ -124,8 +124,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.IDBTransaction.abort_event")}}

    See also

    diff --git a/files/en-us/web/api/idbtransaction/complete_event/index.html b/files/en-us/web/api/idbtransaction/complete_event/index.html index 697748a0370b07e..7529e39fb995365 100644 --- a/files/en-us/web/api/idbtransaction/complete_event/index.html +++ b/files/en-us/web/api/idbtransaction/complete_event/index.html @@ -116,8 +116,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.IDBTransaction.complete_event")}}

    See also

    diff --git a/files/en-us/web/api/idbtransaction/db/index.html b/files/en-us/web/api/idbtransaction/db/index.html index 4b2ff11956414bb..efee36a6d69667a 100644 --- a/files/en-us/web/api/idbtransaction/db/index.html +++ b/files/en-us/web/api/idbtransaction/db/index.html @@ -103,7 +103,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBTransaction.db")}}

    diff --git a/files/en-us/web/api/idbtransaction/error/index.html b/files/en-us/web/api/idbtransaction/error/index.html index 438676d718067dd..760f6282004fa4d 100644 --- a/files/en-us/web/api/idbtransaction/error/index.html +++ b/files/en-us/web/api/idbtransaction/error/index.html @@ -59,7 +59,6 @@

    Example

    note.innerHTML += '<li>Transaction completed: database modification finished.</li>'; }; - transaction.onerror = function(event) { note.innerHTML += '<li>Transaction not opened due to error: ' + transaction.error + '</li>'; }; @@ -103,7 +102,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBTransaction.error")}}

    diff --git a/files/en-us/web/api/idbtransaction/error_event/index.html b/files/en-us/web/api/idbtransaction/error_event/index.html index c76807641f4416e..ef714071b79a4ca 100644 --- a/files/en-us/web/api/idbtransaction/error_event/index.html +++ b/files/en-us/web/api/idbtransaction/error_event/index.html @@ -102,8 +102,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.IDBTransaction.error_event")}}

    See also

    diff --git a/files/en-us/web/api/idbtransaction/index.html b/files/en-us/web/api/idbtransaction/index.html index cc4f6a735b3e834..698f1c43d5a75e3 100644 --- a/files/en-us/web/api/idbtransaction/index.html +++ b/files/en-us/web/api/idbtransaction/index.html @@ -178,7 +178,6 @@

    Examples

    note.innerHTML += '<li>Transaction completed: database modification finished.</li>'; }; - transaction.onerror = function(event) { note.innerHTML += '<li>Transaction not opened due to error. Duplicate items not allowed.</li>'; }; @@ -224,7 +223,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBTransaction")}}

    diff --git a/files/en-us/web/api/idbtransaction/mode/index.html b/files/en-us/web/api/idbtransaction/mode/index.html index 9b80e3b2d2924d2..1f50e10187b9500 100644 --- a/files/en-us/web/api/idbtransaction/mode/index.html +++ b/files/en-us/web/api/idbtransaction/mode/index.html @@ -126,7 +126,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBTransaction.mode")}}

    diff --git a/files/en-us/web/api/idbtransaction/objectstore/index.html b/files/en-us/web/api/idbtransaction/objectstore/index.html index 3b94f61441b8e3b..c3d2961bd295e35 100644 --- a/files/en-us/web/api/idbtransaction/objectstore/index.html +++ b/files/en-us/web/api/idbtransaction/objectstore/index.html @@ -106,7 +106,6 @@

    Example

    Specifications

    -
    @@ -129,8 +128,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.IDBTransaction.objectStore")}}

    See also

    diff --git a/files/en-us/web/api/idbtransaction/objectstorenames/index.html b/files/en-us/web/api/idbtransaction/objectstorenames/index.html index 92e2994001e9ff1..f099f8232bc92a4 100644 --- a/files/en-us/web/api/idbtransaction/objectstorenames/index.html +++ b/files/en-us/web/api/idbtransaction/objectstorenames/index.html @@ -49,7 +49,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBTransaction.objectStoreNames")}}

    diff --git a/files/en-us/web/api/idbtransaction/onabort/index.html b/files/en-us/web/api/idbtransaction/onabort/index.html index 0020883511d9427..ccd6d2d7ec54c0c 100644 --- a/files/en-us/web/api/idbtransaction/onabort/index.html +++ b/files/en-us/web/api/idbtransaction/onabort/index.html @@ -104,7 +104,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBTransaction.onabort")}}

    diff --git a/files/en-us/web/api/idbtransaction/oncomplete/index.html b/files/en-us/web/api/idbtransaction/oncomplete/index.html index f33ebd958604cae..0281f6b5dd6a366 100644 --- a/files/en-us/web/api/idbtransaction/oncomplete/index.html +++ b/files/en-us/web/api/idbtransaction/oncomplete/index.html @@ -100,7 +100,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBTransaction.oncomplete")}}

    diff --git a/files/en-us/web/api/idbtransaction/onerror/index.html b/files/en-us/web/api/idbtransaction/onerror/index.html index 6b7c198bca3018e..bfdebf8f567b72c 100644 --- a/files/en-us/web/api/idbtransaction/onerror/index.html +++ b/files/en-us/web/api/idbtransaction/onerror/index.html @@ -55,7 +55,6 @@

    Example

    note.innerHTML += '<li>Transaction completed: database modification finished.</li>'; }; - transaction.onerror = function(event) { note.innerHTML += '<li>Transaction not opened due to error: ' + transaction.error + '</li>'; }; @@ -99,7 +98,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBTransaction.onerror")}}

    diff --git a/files/en-us/web/api/idbversionchangeevent/index.html b/files/en-us/web/api/idbversionchangeevent/index.html index 5b54ec3d71f7b65..097ba80ac23063a 100644 --- a/files/en-us/web/api/idbversionchangeevent/index.html +++ b/files/en-us/web/api/idbversionchangeevent/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.IDBVersionChangeEvent")}}

    See also

    diff --git a/files/en-us/web/api/idbversionchangeevent/newversion/index.html b/files/en-us/web/api/idbversionchangeevent/newversion/index.html index 3330e5738034e83..61e82a8d9d663bb 100644 --- a/files/en-us/web/api/idbversionchangeevent/newversion/index.html +++ b/files/en-us/web/api/idbversionchangeevent/newversion/index.html @@ -86,7 +86,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBVersionChangeEvent.newVersion")}}

    diff --git a/files/en-us/web/api/idbversionchangeevent/oldversion/index.html b/files/en-us/web/api/idbversionchangeevent/oldversion/index.html index a867db8f6ea645a..e6553e2fcf5c583 100644 --- a/files/en-us/web/api/idbversionchangeevent/oldversion/index.html +++ b/files/en-us/web/api/idbversionchangeevent/oldversion/index.html @@ -75,7 +75,6 @@

    Browser compatibility

    -

    {{Compat("api.IDBVersionChangeEvent.oldVersion")}}

    diff --git a/files/en-us/web/api/idbversionchangeevent/version/index.html b/files/en-us/web/api/idbversionchangeevent/version/index.html index 85e431f512318db..d512853dc340aa9 100644 --- a/files/en-us/web/api/idbversionchangeevent/version/index.html +++ b/files/en-us/web/api/idbversionchangeevent/version/index.html @@ -28,8 +28,6 @@

    Value

    Browser compatibility

    - -

    {{Compat("api.IDBVersionChangeEvent.version")}}

    See also

    diff --git a/files/en-us/web/api/idledeadline/didtimeout/index.html b/files/en-us/web/api/idledeadline/didtimeout/index.html index a8574f5baf42faf..9fb18a6339f0f60 100644 --- a/files/en-us/web/api/idledeadline/didtimeout/index.html +++ b/files/en-us/web/api/idledeadline/didtimeout/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.IdleDeadline.didTimeout")}}

    diff --git a/files/en-us/web/api/idledeadline/index.html b/files/en-us/web/api/idledeadline/index.html index 91a28ed4477b7f9..c308d2716596214 100644 --- a/files/en-us/web/api/idledeadline/index.html +++ b/files/en-us/web/api/idledeadline/index.html @@ -59,7 +59,6 @@

    Browser compatibility

    -

    {{Compat("api.IdleDeadline")}}

    diff --git a/files/en-us/web/api/idledeadline/timeremaining/index.html b/files/en-us/web/api/idledeadline/timeremaining/index.html index 303d4e469a32fb9..1e4724e45465e32 100644 --- a/files/en-us/web/api/idledeadline/timeremaining/index.html +++ b/files/en-us/web/api/idledeadline/timeremaining/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.IdleDeadline.timeRemaining")}}

    diff --git a/files/en-us/web/api/iirfilternode/getfrequencyresponse/index.html b/files/en-us/web/api/iirfilternode/getfrequencyresponse/index.html index e0031e5848c89b9..07ce4ebf3406b5e 100644 --- a/files/en-us/web/api/iirfilternode/getfrequencyresponse/index.html +++ b/files/en-us/web/api/iirfilternode/getfrequencyresponse/index.html @@ -110,7 +110,6 @@

    Browser compatibility

    -

    {{Compat("api.IIRFilterNode.getFrequencyResponse")}}

    diff --git a/files/en-us/web/api/iirfilternode/iirfilternode/index.html b/files/en-us/web/api/iirfilternode/iirfilternode/index.html index 21a60574507d06f..74fd51433fe05d5 100644 --- a/files/en-us/web/api/iirfilternode/iirfilternode/index.html +++ b/files/en-us/web/api/iirfilternode/iirfilternode/index.html @@ -71,6 +71,5 @@

    Browser Compatibility

    -

    {{Compat("api.IIRFilterNode.IIRFilterNode")}}

    diff --git a/files/en-us/web/api/iirfilternode/index.html b/files/en-us/web/api/iirfilternode/index.html index 00a12fada3c3212..31c51490561184f 100644 --- a/files/en-us/web/api/iirfilternode/index.html +++ b/files/en-us/web/api/iirfilternode/index.html @@ -69,7 +69,6 @@

    Methods

    Inherits methods from its parent, {{domxref("AudioNode")}}. It also has the following additional methods:

    -
    {{domxref("IIRFilterNode.getFrequencyResponse", "getFrequencyResponse()")}}
    Uses the filter's current parameter settings to calculate the response for frequencies specified in the provided array of frequencies.
    @@ -102,7 +101,6 @@

    Browser compatibility

    -

    {{Compat("api.IIRFilterNode")}}

    diff --git a/files/en-us/web/api/imagebitmap/close/index.html b/files/en-us/web/api/imagebitmap/close/index.html index d9512ba2810e7a6..f6036596ce86db0 100644 --- a/files/en-us/web/api/imagebitmap/close/index.html +++ b/files/en-us/web/api/imagebitmap/close/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.ImageBitmap.close")}}

    diff --git a/files/en-us/web/api/imagebitmap/height/index.html b/files/en-us/web/api/imagebitmap/height/index.html index e94ffaf7b560cb0..aebbb706f485c3b 100644 --- a/files/en-us/web/api/imagebitmap/height/index.html +++ b/files/en-us/web/api/imagebitmap/height/index.html @@ -31,6 +31,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ImageBitmap.height")}}

    diff --git a/files/en-us/web/api/imagebitmap/index.html b/files/en-us/web/api/imagebitmap/index.html index 4cde53c7d03ca1b..db42d5b3f0cb271 100644 --- a/files/en-us/web/api/imagebitmap/index.html +++ b/files/en-us/web/api/imagebitmap/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ImageBitmap")}}

    See also

    diff --git a/files/en-us/web/api/imagebitmap/width/index.html b/files/en-us/web/api/imagebitmap/width/index.html index fb86002635d1a85..4357f4e6f3b82b1 100644 --- a/files/en-us/web/api/imagebitmap/width/index.html +++ b/files/en-us/web/api/imagebitmap/width/index.html @@ -31,6 +31,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ImageBitmap.width")}}

    diff --git a/files/en-us/web/api/imagebitmaprenderingcontext/index.html b/files/en-us/web/api/imagebitmaprenderingcontext/index.html index 84c6c230318910f..456d17e834bc1f0 100644 --- a/files/en-us/web/api/imagebitmaprenderingcontext/index.html +++ b/files/en-us/web/api/imagebitmaprenderingcontext/index.html @@ -45,7 +45,6 @@

    Browser compatibility

    -

    {{Compat("api.ImageBitmapRenderingContext")}}

    diff --git a/files/en-us/web/api/imagebitmaprenderingcontext/transferfromimagebitmap/index.html b/files/en-us/web/api/imagebitmaprenderingcontext/transferfromimagebitmap/index.html index e13676cb00ce323..36279650f8f4ae1 100644 --- a/files/en-us/web/api/imagebitmaprenderingcontext/transferfromimagebitmap/index.html +++ b/files/en-us/web/api/imagebitmaprenderingcontext/transferfromimagebitmap/index.html @@ -69,7 +69,6 @@

    Browser compatibility

    -

    {{Compat("api.ImageBitmapRenderingContext.transferFromImageBitmap")}}

    diff --git a/files/en-us/web/api/imagecapture/getphotocapabilities/index.html b/files/en-us/web/api/imagecapture/getphotocapabilities/index.html index 6a5b8b54ba1560c..3a340369fe79d50 100644 --- a/files/en-us/web/api/imagecapture/getphotocapabilities/index.html +++ b/files/en-us/web/api/imagecapture/getphotocapabilities/index.html @@ -77,6 +77,5 @@

    Browser compatibility

    -

    {{Compat("api.ImageCapture.getPhotoCapabilities")}}

    diff --git a/files/en-us/web/api/imagecapture/getphotosettings/index.html b/files/en-us/web/api/imagecapture/getphotosettings/index.html index 5b05bd5aba0de97..93bd81d1ee31410 100644 --- a/files/en-us/web/api/imagecapture/getphotosettings/index.html +++ b/files/en-us/web/api/imagecapture/getphotosettings/index.html @@ -84,6 +84,5 @@

    Browser compatibility

    -

    {{Compat("api.ImageCapture.getPhotoSettings")}}

    diff --git a/files/en-us/web/api/imagecapture/grabframe/index.html b/files/en-us/web/api/imagecapture/grabframe/index.html index 297647e89dae6cf..9956ae3e316e419 100644 --- a/files/en-us/web/api/imagecapture/grabframe/index.html +++ b/files/en-us/web/api/imagecapture/grabframe/index.html @@ -71,6 +71,5 @@

    Browser compatibility

    -

    {{Compat("api.ImageCapture.grabFrame")}}

    diff --git a/files/en-us/web/api/imagecapture/imagecapture/index.html b/files/en-us/web/api/imagecapture/imagecapture/index.html index a22f812368129ef..29aa147bc916e11 100644 --- a/files/en-us/web/api/imagecapture/imagecapture/index.html +++ b/files/en-us/web/api/imagecapture/imagecapture/index.html @@ -64,6 +64,5 @@

    Browser compatibility

    -

    {{Compat("api.ImageCapture.ImageCapture")}}

    diff --git a/files/en-us/web/api/imagecapture/index.html b/files/en-us/web/api/imagecapture/index.html index 2d44b280bf96f9d..ea88519454664df 100644 --- a/files/en-us/web/api/imagecapture/index.html +++ b/files/en-us/web/api/imagecapture/index.html @@ -120,6 +120,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ImageCapture")}}

    diff --git a/files/en-us/web/api/imagecapture/takephoto/index.html b/files/en-us/web/api/imagecapture/takephoto/index.html index af529b1ae75940d..26243dfc17fdae8 100644 --- a/files/en-us/web/api/imagecapture/takephoto/index.html +++ b/files/en-us/web/api/imagecapture/takephoto/index.html @@ -79,6 +79,5 @@

    Browser Compatibility

    -

    {{Compat("api.ImageCapture.takePhoto")}}

    diff --git a/files/en-us/web/api/imagecapture/track/index.html b/files/en-us/web/api/imagecapture/track/index.html index ebf1a24a167fe44..8028c9d7fff43f8 100644 --- a/files/en-us/web/api/imagecapture/track/index.html +++ b/files/en-us/web/api/imagecapture/track/index.html @@ -45,6 +45,5 @@

    Browser compatibility

    -

    {{Compat("api.ImageCapture.track")}}

    diff --git a/files/en-us/web/api/imagedata/data/index.html b/files/en-us/web/api/imagedata/data/index.html index a8cc03934b1bacc..c6efc1f4bfe5e96 100644 --- a/files/en-us/web/api/imagedata/data/index.html +++ b/files/en-us/web/api/imagedata/data/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ImageData.data")}}

    See also

    diff --git a/files/en-us/web/api/imagedata/height/index.html b/files/en-us/web/api/imagedata/height/index.html index 60752e89c7dc6b5..23969fd52c2b863 100644 --- a/files/en-us/web/api/imagedata/height/index.html +++ b/files/en-us/web/api/imagedata/height/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ImageData.height")}}

    See also

    diff --git a/files/en-us/web/api/imagedata/imagedata/index.html b/files/en-us/web/api/imagedata/imagedata/index.html index d1e209495429613..a33d7675deddd63 100644 --- a/files/en-us/web/api/imagedata/imagedata/index.html +++ b/files/en-us/web/api/imagedata/imagedata/index.html @@ -105,8 +105,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ImageData.ImageData")}}

    See also

    diff --git a/files/en-us/web/api/imagedata/index.html b/files/en-us/web/api/imagedata/index.html index 403aea6c6790d14..fe8674fa7f2dbf6 100644 --- a/files/en-us/web/api/imagedata/index.html +++ b/files/en-us/web/api/imagedata/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.ImageData")}}

    diff --git a/files/en-us/web/api/imagedata/width/index.html b/files/en-us/web/api/imagedata/width/index.html index 67e4b9ec430d179..382bec8b3f6a5e5 100644 --- a/files/en-us/web/api/imagedata/width/index.html +++ b/files/en-us/web/api/imagedata/width/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ImageData.width")}}

    See also

    diff --git a/files/en-us/web/api/inputdevicecapabilities/firestouchevents/index.html b/files/en-us/web/api/inputdevicecapabilities/firestouchevents/index.html index 564971122b1346f..37d0c5e733649fb 100644 --- a/files/en-us/web/api/inputdevicecapabilities/firestouchevents/index.html +++ b/files/en-us/web/api/inputdevicecapabilities/firestouchevents/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.InputDeviceCapabilities.firesTouchEvents")}}

    diff --git a/files/en-us/web/api/inputdevicecapabilities/index.html b/files/en-us/web/api/inputdevicecapabilities/index.html index fd0fc081aaa2941..8359f6b508f1407 100644 --- a/files/en-us/web/api/inputdevicecapabilities/index.html +++ b/files/en-us/web/api/inputdevicecapabilities/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.InputDeviceCapabilities")}}

    diff --git a/files/en-us/web/api/inputdevicecapabilities/inputdevicecapabilities/index.html b/files/en-us/web/api/inputdevicecapabilities/inputdevicecapabilities/index.html index 5cf541c5e1c46ea..2a35f75b5599fdd 100644 --- a/files/en-us/web/api/inputdevicecapabilities/inputdevicecapabilities/index.html +++ b/files/en-us/web/api/inputdevicecapabilities/inputdevicecapabilities/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.InputDeviceCapabilities.InputDeviceCapabilities")}}

    diff --git a/files/en-us/web/api/inputdevicecapabilities_api/index.html b/files/en-us/web/api/inputdevicecapabilities_api/index.html index ff92685501e24b9..e48a9bb416c4424 100644 --- a/files/en-us/web/api/inputdevicecapabilities_api/index.html +++ b/files/en-us/web/api/inputdevicecapabilities_api/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.InputDeviceCapabilities")}}

    diff --git a/files/en-us/web/api/inputevent/data/index.html b/files/en-us/web/api/inputevent/data/index.html index 6db35716c4faf64..a8eff5bd919ba37 100644 --- a/files/en-us/web/api/inputevent/data/index.html +++ b/files/en-us/web/api/inputevent/data/index.html @@ -64,6 +64,5 @@

    Browser compatibility

    -

    {{Compat("api.InputEvent.data")}}

    diff --git a/files/en-us/web/api/inputevent/datatransfer/index.html b/files/en-us/web/api/inputevent/datatransfer/index.html index 61652fbe2f086b9..3751d07692d23f1 100644 --- a/files/en-us/web/api/inputevent/datatransfer/index.html +++ b/files/en-us/web/api/inputevent/datatransfer/index.html @@ -71,6 +71,5 @@

    Browser Compatibility

    -

    {{Compat("api.InputEvent.dataTransfer")}}

    diff --git a/files/en-us/web/api/inputevent/gettargetranges/index.html b/files/en-us/web/api/inputevent/gettargetranges/index.html index e8f49e9403fde14..32c08dfb6c64125 100644 --- a/files/en-us/web/api/inputevent/gettargetranges/index.html +++ b/files/en-us/web/api/inputevent/gettargetranges/index.html @@ -38,7 +38,6 @@

    Feature Detection

    } -

    Basic usage

    The following example selects a contenteditable element and utilises the beforeinput event to log the result of getTargetRanges().

    @@ -72,6 +71,5 @@

    Browser Compatibility

    -

    {{Compat("api.InputEvent.getTargetRanges")}}

    diff --git a/files/en-us/web/api/inputevent/index.html b/files/en-us/web/api/inputevent/index.html index 75a139e0e444279..2de2489cb30548d 100644 --- a/files/en-us/web/api/inputevent/index.html +++ b/files/en-us/web/api/inputevent/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.InputEvent")}}

    See also

    diff --git a/files/en-us/web/api/inputevent/inputevent/index.html b/files/en-us/web/api/inputevent/inputevent/index.html index 651831b7ceff74b..05a009e552edd2c 100644 --- a/files/en-us/web/api/inputevent/inputevent/index.html +++ b/files/en-us/web/api/inputevent/inputevent/index.html @@ -42,8 +42,6 @@

    Values

    Browser compatibility

    - -

    {{Compat("api.InputEvent.InputEvent")}}

    See also

    diff --git a/files/en-us/web/api/inputevent/inputtype/index.html b/files/en-us/web/api/inputevent/inputtype/index.html index 2886cfdcb482226..12e146de978c71e 100644 --- a/files/en-us/web/api/inputevent/inputtype/index.html +++ b/files/en-us/web/api/inputevent/inputtype/index.html @@ -84,6 +84,5 @@

    Browser compatibility

    -

    {{Compat("api.InputEvent.inputType")}}

    diff --git a/files/en-us/web/api/inputevent/iscomposing/index.html b/files/en-us/web/api/inputevent/iscomposing/index.html index 216053e0429f549..56544762067e108 100644 --- a/files/en-us/web/api/inputevent/iscomposing/index.html +++ b/files/en-us/web/api/inputevent/iscomposing/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.InputEvent.isComposing")}}

    See also

    diff --git a/files/en-us/web/api/installevent/activeworker/index.html b/files/en-us/web/api/installevent/activeworker/index.html index f0935edd96f2c75..98afa065ff5244f 100644 --- a/files/en-us/web/api/installevent/activeworker/index.html +++ b/files/en-us/web/api/installevent/activeworker/index.html @@ -32,8 +32,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.InstallEvent.activeWorker")}}

    See also

    diff --git a/files/en-us/web/api/installevent/index.html b/files/en-us/web/api/installevent/index.html index aceb89d0ba4f4ce..2daa72f77f78da5 100644 --- a/files/en-us/web/api/installevent/index.html +++ b/files/en-us/web/api/installevent/index.html @@ -83,7 +83,6 @@

    Browser compatibility

    -

    {{Compat("api.InstallEvent")}}

    diff --git a/files/en-us/web/api/installevent/installevent/index.html b/files/en-us/web/api/installevent/installevent/index.html index df4f47a5a878adf..bc4365f8d9aee87 100644 --- a/files/en-us/web/api/installevent/installevent/index.html +++ b/files/en-us/web/api/installevent/installevent/index.html @@ -36,7 +36,6 @@

    Browser compatibility

    -

    {{Compat("api.InstallEvent.InstallEvent")}}

    diff --git a/files/en-us/web/api/installtrigger/compareversion/index.html b/files/en-us/web/api/installtrigger/compareversion/index.html index 446d464b8dd235e..105b12cdfa0ec36 100644 --- a/files/en-us/web/api/installtrigger/compareversion/index.html +++ b/files/en-us/web/api/installtrigger/compareversion/index.html @@ -4,7 +4,6 @@ ---

    Parts of this page show the use of the XPInstall API. The majority of this API is now deprecated and as of Gecko 1.9 no longer available. Extension, Theme, and plug-in developers must switch away from install.js based packages to the new packaging scheme with an install.rdf manifest. In particular plugin developers should see how to package a plugin as an extension.

    -

    compareVersion

    Compares the version of a file or package with the version of an existing file or package.

    diff --git a/files/en-us/web/api/installtrigger/getversion/index.html b/files/en-us/web/api/installtrigger/getversion/index.html index 59c6f439e1d47f2..bb21459228c4395 100644 --- a/files/en-us/web/api/installtrigger/getversion/index.html +++ b/files/en-us/web/api/installtrigger/getversion/index.html @@ -4,7 +4,6 @@ ---

    Parts of this page show the use of the XPInstall API. The majority of this API is now deprecated and as of Gecko 1.9 no longer available. Extension, Theme, and plug-in developers must switch away from install.js based packages to the new packaging scheme with an install.rdf manifest. In particular plugin developers should see how to package a plugin as an extension.

    -

    getVersion

    Returns an object representing the version number from the Client Version Registry for the specified component. It is used in both trigger scripts and installation scripts.

    diff --git a/files/en-us/web/api/installtrigger/install/index.html b/files/en-us/web/api/installtrigger/install/index.html index c10c790ca9ce452..9b78ebe6e54d62b 100644 --- a/files/en-us/web/api/installtrigger/install/index.html +++ b/files/en-us/web/api/installtrigger/install/index.html @@ -5,16 +5,13 @@

    Summary

    Installs one or more XPI files on the local machine.

    -

    Method of

    InstallTrigger object

    -

    Syntax

    int install(array XPIlist [, function callBackFunc ] )
     
    -

    Parameters

    The install method has the following parameters:

    @@ -30,11 +27,9 @@

    Parameters

    {{ Fx_minversion_note(3, "In Firefox 3 the callback is no longer invoked unless the website performing the installation is whitelisted.") }}
    -

    Returns

    install returns True if the function succeeded and False if it did not, but these values are not always reliable as a determinant of the success of the operation. To surface detail about the status of the installation, use the optional callback function and its status parameter, as in the example below.

    -

    Description

    In the example below, a special JavaScript object constructor is used to create an object that can be passed to the install() method. The { } constructor takes a comma-delimited set of label/value pairs. For installations, these pairs are the XPInstall confirm dialog display name and the path of the XPI, respectively.

    @@ -43,7 +38,6 @@

    Description

    As with the older startSoftwareUpdate method, XPIs installed with this method must have their own install.js files in which the full installation is defined. In contrast to startSoftwareUpdate, install allows you to do multiple installs with the same trigger and provides a unified user experience for the multiple installs.

    -

    Example

    function xpinstallCallback(url, status)
    diff --git a/files/en-us/web/api/installtrigger/startsoftwareupdate/index.html b/files/en-us/web/api/installtrigger/startsoftwareupdate/index.html
    index 5ce363183667d92..04b25aa54869385 100644
    --- a/files/en-us/web/api/installtrigger/startsoftwareupdate/index.html
    +++ b/files/en-us/web/api/installtrigger/startsoftwareupdate/index.html
    @@ -5,16 +5,13 @@
     

    Summary

    Triggers the downloading and installation of the software at the specified URL.

    -

    Method of

    InstallTrigger object

    -

    Syntax

    Boolean startSoftwareUpdate ( String url);
     
    -

    Parameters

    The startSoftwareUpdate method has the following parameter:

    @@ -22,10 +19,8 @@

    Parameters

    A uniform resource locator specifying the location of the XPI file containing the software.
    -

    Returns

    True.

    -

    Description

    The startSoftwareUpdate method triggers a software download and install from the specified URL. This method has been largely superseded by newer install method, which is more flexible and allows you to install more than one XPI. Note also that XPIs installed with this method must have their own install.js files in which the full installation is defined.

    diff --git a/files/en-us/web/api/intersection_observer_api/index.html b/files/en-us/web/api/intersection_observer_api/index.html index 7bb82c40b023917..3c93a70605c5a71 100644 --- a/files/en-us/web/api/intersection_observer_api/index.html +++ b/files/en-us/web/api/intersection_observer_api/index.html @@ -600,8 +600,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.IntersectionObserver")}}

    See also

    diff --git a/files/en-us/web/api/intersectionobserver/unobserve/index.html b/files/en-us/web/api/intersectionobserver/unobserve/index.html index 747ba94dc46f81a..deacb70d316e602 100644 --- a/files/en-us/web/api/intersectionobserver/unobserve/index.html +++ b/files/en-us/web/api/intersectionobserver/unobserve/index.html @@ -29,7 +29,6 @@

    Return value

    undefined.

    -

    Example

    This snippet simply shows an observer being created, an element being observed, and then being unobserved.

    diff --git a/files/en-us/web/api/interventionreportbody/index.html b/files/en-us/web/api/interventionreportbody/index.html index 04aabc328f1d151..a466115eae19035 100644 --- a/files/en-us/web/api/interventionreportbody/index.html +++ b/files/en-us/web/api/interventionreportbody/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.DeprecationReportBody")}}

    See also

    diff --git a/files/en-us/web/api/keyboard/getlayoutmap/index.html b/files/en-us/web/api/keyboard/getlayoutmap/index.html index aa19e4d3bc0055c..56f5327e5c6aa92 100644 --- a/files/en-us/web/api/keyboard/getlayoutmap/index.html +++ b/files/en-us/web/api/keyboard/getlayoutmap/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Keyboard.getLayoutMap")}}

    diff --git a/files/en-us/web/api/keyboard/index.html b/files/en-us/web/api/keyboard/index.html index 16f86d8cf9062f8..8bddbfb8f245741 100644 --- a/files/en-us/web/api/keyboard/index.html +++ b/files/en-us/web/api/keyboard/index.html @@ -71,6 +71,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Keyboard")}}

    diff --git a/files/en-us/web/api/keyboard/lock/index.html b/files/en-us/web/api/keyboard/lock/index.html index ae3773c0b76a771..e45c674f4123cbe 100644 --- a/files/en-us/web/api/keyboard/lock/index.html +++ b/files/en-us/web/api/keyboard/lock/index.html @@ -62,6 +62,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Keyboard.lock")}}

    diff --git a/files/en-us/web/api/keyboard/unlock/index.html b/files/en-us/web/api/keyboard/unlock/index.html index da57f2f986a8515..99fc5c470f74db8 100644 --- a/files/en-us/web/api/keyboard/unlock/index.html +++ b/files/en-us/web/api/keyboard/unlock/index.html @@ -50,6 +50,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Keyboard.unlock()")}}

    diff --git a/files/en-us/web/api/keyboard_api/index.html b/files/en-us/web/api/keyboard_api/index.html index 846aa5429b2b88a..1acf82b6e112118 100644 --- a/files/en-us/web/api/keyboard_api/index.html +++ b/files/en-us/web/api/keyboard_api/index.html @@ -91,8 +91,6 @@

    Specifications

    Browser compatibility

    - -

    Keyboard API

    {{Compat("api.Keyboard")}}

    diff --git a/files/en-us/web/api/keyboardevent/altkey/index.html b/files/en-us/web/api/keyboardevent/altkey/index.html index 4719f5c96200c87..5e6261da4f55ae0 100644 --- a/files/en-us/web/api/keyboardevent/altkey/index.html +++ b/files/en-us/web/api/keyboardevent/altkey/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.altKey")}}

    See also

    diff --git a/files/en-us/web/api/keyboardevent/charcode/index.html b/files/en-us/web/api/keyboardevent/charcode/index.html index adb87afda9ad07a..5e22c9dcfbbbb28 100644 --- a/files/en-us/web/api/keyboardevent/charcode/index.html +++ b/files/en-us/web/api/keyboardevent/charcode/index.html @@ -79,6 +79,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.charCode")}}

    diff --git a/files/en-us/web/api/keyboardevent/code/index.html b/files/en-us/web/api/keyboardevent/code/index.html index 22f2cab9dd6d3b4..0ab02e6b6c8c7ac 100644 --- a/files/en-us/web/api/keyboardevent/code/index.html +++ b/files/en-us/web/api/keyboardevent/code/index.html @@ -209,6 +209,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.code")}}

    diff --git a/files/en-us/web/api/keyboardevent/ctrlkey/index.html b/files/en-us/web/api/keyboardevent/ctrlkey/index.html index d0017a6b862f31a..61afc7962ae2d67 100644 --- a/files/en-us/web/api/keyboardevent/ctrlkey/index.html +++ b/files/en-us/web/api/keyboardevent/ctrlkey/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.ctrlKey")}}

    See also

    diff --git a/files/en-us/web/api/keyboardevent/getmodifierstate/index.html b/files/en-us/web/api/keyboardevent/getmodifierstate/index.html index 341d6681c6e94a7..d943277df3f49b0 100644 --- a/files/en-us/web/api/keyboardevent/getmodifierstate/index.html +++ b/files/en-us/web/api/keyboardevent/getmodifierstate/index.html @@ -240,8 +240,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.getModifierState")}}

    See also

    diff --git a/files/en-us/web/api/keyboardevent/index.html b/files/en-us/web/api/keyboardevent/index.html index 07948a0e3a0e57a..cd0a5bc4ed6a7c7 100644 --- a/files/en-us/web/api/keyboardevent/index.html +++ b/files/en-us/web/api/keyboardevent/index.html @@ -88,7 +88,6 @@

    Keyboard locations

    -

    Properties

    This interface also inherits properties of its parents, {{domxref("UIEvent")}} and {{domxref("Event")}}.

    @@ -314,8 +313,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent")}}

    Compatibility notes

    diff --git a/files/en-us/web/api/keyboardevent/iscomposing/index.html b/files/en-us/web/api/keyboardevent/iscomposing/index.html index c2fd0e9d579bc77..ce8c377b4df571f 100644 --- a/files/en-us/web/api/keyboardevent/iscomposing/index.html +++ b/files/en-us/web/api/keyboardevent/iscomposing/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.isComposing")}}

    See also

    diff --git a/files/en-us/web/api/keyboardevent/key/index.html b/files/en-us/web/api/keyboardevent/key/index.html index e9e713ce3685662..7be77c6bc6b4e66 100644 --- a/files/en-us/web/api/keyboardevent/key/index.html +++ b/files/en-us/web/api/keyboardevent/key/index.html @@ -227,6 +227,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.key")}}

    diff --git a/files/en-us/web/api/keyboardevent/keyboardevent/index.html b/files/en-us/web/api/keyboardevent/keyboardevent/index.html index d42df024ea2d324..c1d8fc6ab75815d 100644 --- a/files/en-us/web/api/keyboardevent/keyboardevent/index.html +++ b/files/en-us/web/api/keyboardevent/keyboardevent/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.KeyboardEvent")}}

    See also

    diff --git a/files/en-us/web/api/keyboardevent/keycode/index.html b/files/en-us/web/api/keyboardevent/keycode/index.html index b641fdb2fb6f5cd..ee54dd30ff4fb9b 100644 --- a/files/en-us/web/api/keyboardevent/keycode/index.html +++ b/files/en-us/web/api/keyboardevent/keycode/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.keyCode")}}

    Value of keyCode

    diff --git a/files/en-us/web/api/keyboardevent/keyidentifier/index.html b/files/en-us/web/api/keyboardevent/keyidentifier/index.html index 62183d29bb7d437..006e36943bcea1c 100644 --- a/files/en-us/web/api/keyboardevent/keyidentifier/index.html +++ b/files/en-us/web/api/keyboardevent/keyidentifier/index.html @@ -20,6 +20,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.keyIdentifier")}}

    diff --git a/files/en-us/web/api/keyboardevent/location/index.html b/files/en-us/web/api/keyboardevent/location/index.html index 3805d06b323a976..d8915c24107da82 100644 --- a/files/en-us/web/api/keyboardevent/location/index.html +++ b/files/en-us/web/api/keyboardevent/location/index.html @@ -99,8 +99,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.location")}}

    See also

    diff --git a/files/en-us/web/api/keyboardevent/metakey/index.html b/files/en-us/web/api/keyboardevent/metakey/index.html index b9c80ecdf4fc7e2..5e62e9aed4c8df6 100644 --- a/files/en-us/web/api/keyboardevent/metakey/index.html +++ b/files/en-us/web/api/keyboardevent/metakey/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.metaKey")}}

    See also

    diff --git a/files/en-us/web/api/keyboardevent/repeat/index.html b/files/en-us/web/api/keyboardevent/repeat/index.html index 475ede8113eaf34..d58081c89c4dbc6 100644 --- a/files/en-us/web/api/keyboardevent/repeat/index.html +++ b/files/en-us/web/api/keyboardevent/repeat/index.html @@ -40,6 +40,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.repeat")}}

    diff --git a/files/en-us/web/api/keyboardevent/shiftkey/index.html b/files/en-us/web/api/keyboardevent/shiftkey/index.html index 042aadcda818731..d175d0a2756b428 100644 --- a/files/en-us/web/api/keyboardevent/shiftkey/index.html +++ b/files/en-us/web/api/keyboardevent/shiftkey/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.shiftKey")}}

    See also

    diff --git a/files/en-us/web/api/keyboardevent/which/index.html b/files/en-us/web/api/keyboardevent/which/index.html index a8e71bcb1cf79d0..51bd524d7027058 100644 --- a/files/en-us/web/api/keyboardevent/which/index.html +++ b/files/en-us/web/api/keyboardevent/which/index.html @@ -43,7 +43,6 @@

    Example

    ); } - function keyDown(evt) { alert("onkeydown handler: \n" + "keyCode property: " + evt.keyCode + "\n" @@ -86,8 +85,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardEvent.which")}}

    See also

    diff --git a/files/en-us/web/api/keyboardlayoutmap/entries/index.html b/files/en-us/web/api/keyboardlayoutmap/entries/index.html index 99a3a9889b9339e..ff916140ba2d8e3 100644 --- a/files/en-us/web/api/keyboardlayoutmap/entries/index.html +++ b/files/en-us/web/api/keyboardlayoutmap/entries/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardLayoutMap.entries")}}

    diff --git a/files/en-us/web/api/keyboardlayoutmap/foreach/index.html b/files/en-us/web/api/keyboardlayoutmap/foreach/index.html index 0d72f5ad30fad9f..0c4db2a75a08304 100644 --- a/files/en-us/web/api/keyboardlayoutmap/foreach/index.html +++ b/files/en-us/web/api/keyboardlayoutmap/foreach/index.html @@ -65,6 +65,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardLayoutMap.forEach")}}

    diff --git a/files/en-us/web/api/keyboardlayoutmap/get/index.html b/files/en-us/web/api/keyboardlayoutmap/get/index.html index e88ef7afcde6779..aa9380f161f7a5d 100644 --- a/files/en-us/web/api/keyboardlayoutmap/get/index.html +++ b/files/en-us/web/api/keyboardlayoutmap/get/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardLayoutMap.get")}}

    diff --git a/files/en-us/web/api/keyboardlayoutmap/has/index.html b/files/en-us/web/api/keyboardlayoutmap/has/index.html index b1af23c0b69e89b..ac63a0a4378e02f 100644 --- a/files/en-us/web/api/keyboardlayoutmap/has/index.html +++ b/files/en-us/web/api/keyboardlayoutmap/has/index.html @@ -50,6 +50,4 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.KeyboardLayoutMap.has")}}

    diff --git a/files/en-us/web/api/keyboardlayoutmap/index.html b/files/en-us/web/api/keyboardlayoutmap/index.html index b554bbb65fa6fae..1525adeb032b333 100644 --- a/files/en-us/web/api/keyboardlayoutmap/index.html +++ b/files/en-us/web/api/keyboardlayoutmap/index.html @@ -69,6 +69,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardLayoutMap")}}

    diff --git a/files/en-us/web/api/keyboardlayoutmap/keys/index.html b/files/en-us/web/api/keyboardlayoutmap/keys/index.html index 81b956b98ec9e39..085570843b62cd1 100644 --- a/files/en-us/web/api/keyboardlayoutmap/keys/index.html +++ b/files/en-us/web/api/keyboardlayoutmap/keys/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardLayoutMap.keys")}}

    diff --git a/files/en-us/web/api/keyboardlayoutmap/size/index.html b/files/en-us/web/api/keyboardlayoutmap/size/index.html index a5d21a7b83bbb76..1471c29bae99a03 100644 --- a/files/en-us/web/api/keyboardlayoutmap/size/index.html +++ b/files/en-us/web/api/keyboardlayoutmap/size/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardLayoutMap.size")}}

    diff --git a/files/en-us/web/api/keyboardlayoutmap/values/index.html b/files/en-us/web/api/keyboardlayoutmap/values/index.html index 751f6776a4bdc29..0070e3f163076ce 100644 --- a/files/en-us/web/api/keyboardlayoutmap/values/index.html +++ b/files/en-us/web/api/keyboardlayoutmap/values/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyboardLayoutMap.values")}}

    diff --git a/files/en-us/web/api/keyframeeffect/composite/index.html b/files/en-us/web/api/keyframeeffect/composite/index.html index f5fa13648823671..d8e96c72c98b71d 100644 --- a/files/en-us/web/api/keyframeeffect/composite/index.html +++ b/files/en-us/web/api/keyframeeffect/composite/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyframeEffect.composite")}}

    See also

    diff --git a/files/en-us/web/api/keyframeeffect/getkeyframes/index.html b/files/en-us/web/api/keyframeeffect/getkeyframes/index.html index 5848c8cd8a5f192..7899ce65d4badd6 100644 --- a/files/en-us/web/api/keyframeeffect/getkeyframes/index.html +++ b/files/en-us/web/api/keyframeeffect/getkeyframes/index.html @@ -82,8 +82,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyframeEffect.getKeyframes")}}

    See also

    diff --git a/files/en-us/web/api/keyframeeffect/index.html b/files/en-us/web/api/keyframeeffect/index.html index cfc025f5ec62637..98a0229685a70ad 100644 --- a/files/en-us/web/api/keyframeeffect/index.html +++ b/files/en-us/web/api/keyframeeffect/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyframeEffect")}}

    See also

    diff --git a/files/en-us/web/api/keyframeeffect/iterationcomposite/index.html b/files/en-us/web/api/keyframeeffect/iterationcomposite/index.html index 38ef93b50581e2f..16dd761fb9c5d79 100644 --- a/files/en-us/web/api/keyframeeffect/iterationcomposite/index.html +++ b/files/en-us/web/api/keyframeeffect/iterationcomposite/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyframeEffect.iterationComposite")}}

    See also

    diff --git a/files/en-us/web/api/keyframeeffect/keyframeeffect/index.html b/files/en-us/web/api/keyframeeffect/keyframeeffect/index.html index 13e6b8f15b4e80a..7e6690e1efc8d01 100644 --- a/files/en-us/web/api/keyframeeffect/keyframeeffect/index.html +++ b/files/en-us/web/api/keyframeeffect/keyframeeffect/index.html @@ -91,8 +91,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyframeEffect.KeyframeEffect")}}

    See also

    diff --git a/files/en-us/web/api/keyframeeffect/setkeyframes/index.html b/files/en-us/web/api/keyframeeffect/setkeyframes/index.html index 202bf51374ddb60..b971b2a89ccd58b 100644 --- a/files/en-us/web/api/keyframeeffect/setkeyframes/index.html +++ b/files/en-us/web/api/keyframeeffect/setkeyframes/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyframeEffect.setKeyframes")}}

    See also

    diff --git a/files/en-us/web/api/keyframeeffect/target/index.html b/files/en-us/web/api/keyframeeffect/target/index.html index 8148dac84791146..fdb00c89c5b33d3 100644 --- a/files/en-us/web/api/keyframeeffect/target/index.html +++ b/files/en-us/web/api/keyframeeffect/target/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyframeEffect.target")}}

    See also

    diff --git a/files/en-us/web/api/keyframeeffectoptions/index.html b/files/en-us/web/api/keyframeeffectoptions/index.html index 71cefb23d823af5..a89c9199e4a9f6d 100644 --- a/files/en-us/web/api/keyframeeffectoptions/index.html +++ b/files/en-us/web/api/keyframeeffectoptions/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.KeyframeEffectOptions")}}

    See also

    diff --git a/files/en-us/web/api/largestcontentfulpaint/index.html b/files/en-us/web/api/largestcontentfulpaint/index.html index 4988c9655b775ee..2569578b8dd8793 100644 --- a/files/en-us/web/api/largestcontentfulpaint/index.html +++ b/files/en-us/web/api/largestcontentfulpaint/index.html @@ -94,6 +94,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.LargestContentfulPaint")}}

    diff --git a/files/en-us/web/api/layoutshift/index.html b/files/en-us/web/api/layoutshift/index.html index cb19504bf2aa89b..10ac6240f68da14 100644 --- a/files/en-us/web/api/layoutshift/index.html +++ b/files/en-us/web/api/layoutshift/index.html @@ -87,6 +87,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.LayoutShift")}}

    diff --git a/files/en-us/web/api/layoutshiftattribution/index.html b/files/en-us/web/api/layoutshiftattribution/index.html index 6026f8c93cac2f1..2478c0b9c28df63 100644 --- a/files/en-us/web/api/layoutshiftattribution/index.html +++ b/files/en-us/web/api/layoutshiftattribution/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.LayoutShiftAttribution")}}

    diff --git a/files/en-us/web/api/linearaccelerationsensor/index.html b/files/en-us/web/api/linearaccelerationsensor/index.html index e30d1d1d23d44bf..2219186a718df8a 100644 --- a/files/en-us/web/api/linearaccelerationsensor/index.html +++ b/files/en-us/web/api/linearaccelerationsensor/index.html @@ -69,6 +69,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.LinearAccelerationSensor")}}

    diff --git a/files/en-us/web/api/linearaccelerationsensor/linearaccelerationsensor/index.html b/files/en-us/web/api/linearaccelerationsensor/linearaccelerationsensor/index.html index 9f72c57ddd1817c..9779a1b8d7b1a10 100644 --- a/files/en-us/web/api/linearaccelerationsensor/linearaccelerationsensor/index.html +++ b/files/en-us/web/api/linearaccelerationsensor/linearaccelerationsensor/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.LinearAccelerationSensor.LinearAccelerationSensor")}}

    diff --git a/files/en-us/web/api/linkstyle/index.html b/files/en-us/web/api/linkstyle/index.html index 2148c99a43361a7..3b7b1ab065daed1 100644 --- a/files/en-us/web/api/linkstyle/index.html +++ b/files/en-us/web/api/linkstyle/index.html @@ -50,6 +50,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.LinkStyle")}}

    diff --git a/files/en-us/web/api/localfilesystem/index.html b/files/en-us/web/api/localfilesystem/index.html index 0152b075a97e42b..eab76b153623e3b 100644 --- a/files/en-us/web/api/localfilesystem/index.html +++ b/files/en-us/web/api/localfilesystem/index.html @@ -214,8 +214,6 @@
    Exceptions

    Browser compatibility

    - -

    {{Compat("api.LocalFileSystem")}}

    See also

    diff --git a/files/en-us/web/api/localfilesystemsync/index.html b/files/en-us/web/api/localfilesystemsync/index.html index 138c35f8128b403..cddfe5f239a4f1b 100644 --- a/files/en-us/web/api/localfilesystemsync/index.html +++ b/files/en-us/web/api/localfilesystemsync/index.html @@ -175,8 +175,6 @@
    Exceptions

    Browser compatibility

    - -

    {{Compat("api.LocalFileSystemSync")}}

    See also

    diff --git a/files/en-us/web/api/localfilesystemsync/requestfilesystemsync/index.html b/files/en-us/web/api/localfilesystemsync/requestfilesystemsync/index.html index 6c2559fd09b47a6..44843f7560a2049 100644 --- a/files/en-us/web/api/localfilesystemsync/requestfilesystemsync/index.html +++ b/files/en-us/web/api/localfilesystemsync/requestfilesystemsync/index.html @@ -90,8 +90,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.LocalFileSystemSync.requestFileSystemSync")}}

    See also

    diff --git a/files/en-us/web/api/localmediastream/index.html b/files/en-us/web/api/localmediastream/index.html index 00d1ef3d61b238e..dde6276979f238f 100644 --- a/files/en-us/web/api/localmediastream/index.html +++ b/files/en-us/web/api/localmediastream/index.html @@ -37,8 +37,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.LocalMediaStream")}}

    See also

    diff --git a/files/en-us/web/api/location/ancestororigins/index.html b/files/en-us/web/api/location/ancestororigins/index.html index 622c12bf0bb3ff4..e197aab63eab035 100644 --- a/files/en-us/web/api/location/ancestororigins/index.html +++ b/files/en-us/web/api/location/ancestororigins/index.html @@ -37,6 +37,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.ancestorOrigins")}}

    diff --git a/files/en-us/web/api/location/assign/index.html b/files/en-us/web/api/location/assign/index.html index 6e7136abab3e6cb..d84d1ddd59e0868 100644 --- a/files/en-us/web/api/location/assign/index.html +++ b/files/en-us/web/api/location/assign/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.assign")}}

    See also

    diff --git a/files/en-us/web/api/location/hash/index.html b/files/en-us/web/api/location/hash/index.html index 0c0dfcfd2e5baeb..cf43b1ffff12dd4 100644 --- a/files/en-us/web/api/location/hash/index.html +++ b/files/en-us/web/api/location/hash/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.hash")}}

    diff --git a/files/en-us/web/api/location/host/index.html b/files/en-us/web/api/location/host/index.html index 257d3e9f4b30621..10b52e567ae07db 100644 --- a/files/en-us/web/api/location/host/index.html +++ b/files/en-us/web/api/location/host/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.host")}}

    diff --git a/files/en-us/web/api/location/hostname/index.html b/files/en-us/web/api/location/hostname/index.html index 70a07b889430db8..343f751f4f8476b 100644 --- a/files/en-us/web/api/location/hostname/index.html +++ b/files/en-us/web/api/location/hostname/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.hostname")}}

    diff --git a/files/en-us/web/api/location/href/index.html b/files/en-us/web/api/location/href/index.html index a21ae2cf5a45105..e680c99ee537bdc 100644 --- a/files/en-us/web/api/location/href/index.html +++ b/files/en-us/web/api/location/href/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.href")}}

    diff --git a/files/en-us/web/api/location/index.html b/files/en-us/web/api/location/index.html index 19057e686361d73..7d49ee005771e25 100644 --- a/files/en-us/web/api/location/index.html +++ b/files/en-us/web/api/location/index.html @@ -134,8 +134,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location")}}

    See also

    diff --git a/files/en-us/web/api/location/origin/index.html b/files/en-us/web/api/location/origin/index.html index 1ba34b7b4cf4878..63a158da867078f 100644 --- a/files/en-us/web/api/location/origin/index.html +++ b/files/en-us/web/api/location/origin/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.origin")}}

    diff --git a/files/en-us/web/api/location/password/index.html b/files/en-us/web/api/location/password/index.html index 30e715ffac9869d..b782e06c97e8d68 100644 --- a/files/en-us/web/api/location/password/index.html +++ b/files/en-us/web/api/location/password/index.html @@ -28,6 +28,4 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.Location.password")}}

    diff --git a/files/en-us/web/api/location/pathname/index.html b/files/en-us/web/api/location/pathname/index.html index 23adf2ccb1bb731..793dcac5b7b74e7 100644 --- a/files/en-us/web/api/location/pathname/index.html +++ b/files/en-us/web/api/location/pathname/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.pathname")}}

    diff --git a/files/en-us/web/api/location/port/index.html b/files/en-us/web/api/location/port/index.html index f767f93a6eb86e7..e7a9d258f95e38b 100644 --- a/files/en-us/web/api/location/port/index.html +++ b/files/en-us/web/api/location/port/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.port")}}

    diff --git a/files/en-us/web/api/location/protocol/index.html b/files/en-us/web/api/location/protocol/index.html index e4f0ba0a452c7ad..b18f8be6a145695 100644 --- a/files/en-us/web/api/location/protocol/index.html +++ b/files/en-us/web/api/location/protocol/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.protocol")}}

    diff --git a/files/en-us/web/api/location/reload/index.html b/files/en-us/web/api/location/reload/index.html index 6ecde37f7513124..7af5749a5d6e242 100644 --- a/files/en-us/web/api/location/reload/index.html +++ b/files/en-us/web/api/location/reload/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.reload")}}

    See also

    diff --git a/files/en-us/web/api/location/replace/index.html b/files/en-us/web/api/location/replace/index.html index cd1ddffc8a7df50..42f4de4e0951538 100644 --- a/files/en-us/web/api/location/replace/index.html +++ b/files/en-us/web/api/location/replace/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.replace")}}

    See also

    diff --git a/files/en-us/web/api/location/search/index.html b/files/en-us/web/api/location/search/index.html index 21341068c41aac9..7aacf5e44c7cb3b 100644 --- a/files/en-us/web/api/location/search/index.html +++ b/files/en-us/web/api/location/search/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.search")}}

    diff --git a/files/en-us/web/api/location/tostring/index.html b/files/en-us/web/api/location/tostring/index.html index d159b439c22c281..c03ff5daac162f1 100644 --- a/files/en-us/web/api/location/tostring/index.html +++ b/files/en-us/web/api/location/tostring/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Location.toString")}}

    diff --git a/files/en-us/web/api/location/username/index.html b/files/en-us/web/api/location/username/index.html index 6f4af1e8edbfaa0..9a45d3de134f660 100644 --- a/files/en-us/web/api/location/username/index.html +++ b/files/en-us/web/api/location/username/index.html @@ -26,6 +26,4 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.Location.username")}}

    diff --git a/files/en-us/web/api/lock/index.html b/files/en-us/web/api/lock/index.html index e8dec8a35ea8c25..e26fee53e12cc06 100644 --- a/files/en-us/web/api/lock/index.html +++ b/files/en-us/web/api/lock/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Lock")}}

    diff --git a/files/en-us/web/api/lock/mode/index.html b/files/en-us/web/api/lock/mode/index.html index f7c44238729955d..eea85f0b184225e 100644 --- a/files/en-us/web/api/lock/mode/index.html +++ b/files/en-us/web/api/lock/mode/index.html @@ -60,6 +60,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Lock.mode")}}

    diff --git a/files/en-us/web/api/lock/name/index.html b/files/en-us/web/api/lock/name/index.html index c8258814967e83b..f92d64623939fcf 100644 --- a/files/en-us/web/api/lock/name/index.html +++ b/files/en-us/web/api/lock/name/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Lock.name")}}

    diff --git a/files/en-us/web/api/lockmanager/index.html b/files/en-us/web/api/lockmanager/index.html index 9b6a5ae2468158a..593b0373c004d44 100644 --- a/files/en-us/web/api/lockmanager/index.html +++ b/files/en-us/web/api/lockmanager/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.LockManager")}}

    diff --git a/files/en-us/web/api/lockmanager/query/index.html b/files/en-us/web/api/lockmanager/query/index.html index 681b0d662e2d3c2..d06e6489e5c6069 100644 --- a/files/en-us/web/api/lockmanager/query/index.html +++ b/files/en-us/web/api/lockmanager/query/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.LockManager.query")}}

    diff --git a/files/en-us/web/api/lockmanager/request/index.html b/files/en-us/web/api/lockmanager/request/index.html index 29aa2909caa69d0..5daae2d7585d382 100644 --- a/files/en-us/web/api/lockmanager/request/index.html +++ b/files/en-us/web/api/lockmanager/request/index.html @@ -132,6 +132,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.LockManager.request")}}

    diff --git a/files/en-us/web/api/long_tasks_api/index.html b/files/en-us/web/api/long_tasks_api/index.html index a0201628165241e..7ee40b9c7f2ec92 100644 --- a/files/en-us/web/api/long_tasks_api/index.html +++ b/files/en-us/web/api/long_tasks_api/index.html @@ -103,7 +103,6 @@

    PerformanceLongTaskTiming

    -

    {{Compat("api.PerformanceLongTaskTiming")}}

    diff --git a/files/en-us/web/api/magnetometer/index.html b/files/en-us/web/api/magnetometer/index.html index 4018d22a2654fa8..f33db4124d48fd8 100644 --- a/files/en-us/web/api/magnetometer/index.html +++ b/files/en-us/web/api/magnetometer/index.html @@ -74,6 +74,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Magnetometer")}}

    diff --git a/files/en-us/web/api/magnetometer/magnetometer/index.html b/files/en-us/web/api/magnetometer/magnetometer/index.html index 82367aa5514d984..b0ed64e89a15e9c 100644 --- a/files/en-us/web/api/magnetometer/magnetometer/index.html +++ b/files/en-us/web/api/magnetometer/magnetometer/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Magnetometer.Magnetometer")}}

    diff --git a/files/en-us/web/api/magnetometer/x/index.html b/files/en-us/web/api/magnetometer/x/index.html index 86c8f7a7d842203..0864789743014c8 100644 --- a/files/en-us/web/api/magnetometer/x/index.html +++ b/files/en-us/web/api/magnetometer/x/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Magnetometer.x")}}

    diff --git a/files/en-us/web/api/magnetometer/y/index.html b/files/en-us/web/api/magnetometer/y/index.html index fe7af67d9b09aea..6a27b82e5a3ecf4 100644 --- a/files/en-us/web/api/magnetometer/y/index.html +++ b/files/en-us/web/api/magnetometer/y/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Magnetometer.y")}}

    diff --git a/files/en-us/web/api/magnetometer/z/index.html b/files/en-us/web/api/magnetometer/z/index.html index dd883de6a034470..00b724fa38dc63d 100644 --- a/files/en-us/web/api/magnetometer/z/index.html +++ b/files/en-us/web/api/magnetometer/z/index.html @@ -63,6 +63,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Magnetometer.z")}}

    diff --git a/files/en-us/web/api/mathmlelement/index.html b/files/en-us/web/api/mathmlelement/index.html index 5eb3b1643d01d18..c3f1c67ef05531b 100644 --- a/files/en-us/web/api/mathmlelement/index.html +++ b/files/en-us/web/api/mathmlelement/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MathMLElement")}}

    See also

    diff --git a/files/en-us/web/api/media_capabilities_api/index.html b/files/en-us/web/api/media_capabilities_api/index.html index fceb0c583911182..80c5d881035ad51 100644 --- a/files/en-us/web/api/media_capabilities_api/index.html +++ b/files/en-us/web/api/media_capabilities_api/index.html @@ -103,8 +103,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaCapabilities")}}

    See also

    diff --git a/files/en-us/web/api/media_source_extensions_api/index.html b/files/en-us/web/api/media_source_extensions_api/index.html index 1ff694afd87c109..f6f5d3945025b5e 100644 --- a/files/en-us/web/api/media_source_extensions_api/index.html +++ b/files/en-us/web/api/media_source_extensions_api/index.html @@ -94,7 +94,6 @@

    MediaSource interface

    -

    {{Compat("api.MediaSource", 0)}}

    diff --git a/files/en-us/web/api/media_streams_api/constraints/index.html b/files/en-us/web/api/media_streams_api/constraints/index.html index 565165189c07919..f002e8188e01b01 100644 --- a/files/en-us/web/api/media_streams_api/constraints/index.html +++ b/files/en-us/web/api/media_streams_api/constraints/index.html @@ -564,7 +564,6 @@

    MediaDevices.getSupportedCon
    -

    {{Compat("api.MediaDevices.getSupportedConstraints")}}

    diff --git a/files/en-us/web/api/media_streams_api/index.html b/files/en-us/web/api/media_streams_api/index.html index d6bcb7bfc0c14c4..ecfb11d630dea5f 100644 --- a/files/en-us/web/api/media_streams_api/index.html +++ b/files/en-us/web/api/media_streams_api/index.html @@ -76,8 +76,6 @@

    Guides and tutorials

    Browser compatibility

    - -

    {{Compat("api.MediaStream")}}

    See also

    diff --git a/files/en-us/web/api/mediacapabilities/decodinginfo/index.html b/files/en-us/web/api/mediacapabilities/decodinginfo/index.html index 7d5d4346d008a0a..8c1200eae217854 100644 --- a/files/en-us/web/api/mediacapabilities/decodinginfo/index.html +++ b/files/en-us/web/api/mediacapabilities/decodinginfo/index.html @@ -90,8 +90,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaCapabilities.decodingInfo")}}

    See also

    diff --git a/files/en-us/web/api/mediacapabilities/encodinginfo/index.html b/files/en-us/web/api/mediacapabilities/encodinginfo/index.html index 97b4559d7fe7091..d06709db0965b86 100644 --- a/files/en-us/web/api/mediacapabilities/encodinginfo/index.html +++ b/files/en-us/web/api/mediacapabilities/encodinginfo/index.html @@ -91,8 +91,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaCapabilities.encodingInfo")}}

    See also

    diff --git a/files/en-us/web/api/mediacapabilities/index.html b/files/en-us/web/api/mediacapabilities/index.html index 79d34cd3e396aa3..6c234742c0554da 100644 --- a/files/en-us/web/api/mediacapabilities/index.html +++ b/files/en-us/web/api/mediacapabilities/index.html @@ -17,7 +17,6 @@

    The information is accessed through the mediaCapabilities property of the {{domxref("Navigator")}} interface.

    -

    Methods

    @@ -27,7 +26,6 @@

    Methods

    When passed a valid media configuration, it returns a promise with information as to whether the media type is supported, and whether decoding such media would be smooth and power efficient.
    -

    Specifications

    @@ -49,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaCapabilities")}}

    See also

    diff --git a/files/en-us/web/api/mediacapabilitiesinfo/index.html b/files/en-us/web/api/mediacapabilitiesinfo/index.html index 10ae3740cc1077c..afc9aa75de4e897 100644 --- a/files/en-us/web/api/mediacapabilitiesinfo/index.html +++ b/files/en-us/web/api/mediacapabilitiesinfo/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaCapabilitiesInfo")}}

    See also

    diff --git a/files/en-us/web/api/mediaconfiguration/index.html b/files/en-us/web/api/mediaconfiguration/index.html index dabc7a447304985..70ee24504c8af69 100644 --- a/files/en-us/web/api/mediaconfiguration/index.html +++ b/files/en-us/web/api/mediaconfiguration/index.html @@ -117,8 +117,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaConfiguration")}}

    See also

    diff --git a/files/en-us/web/api/mediadecodingconfiguration/index.html b/files/en-us/web/api/mediadecodingconfiguration/index.html index f62fd4b25c06b24..84643ed632c6edf 100644 --- a/files/en-us/web/api/mediadecodingconfiguration/index.html +++ b/files/en-us/web/api/mediadecodingconfiguration/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaDecodingConfiguration")}}

    See also

    diff --git a/files/en-us/web/api/mediadeviceinfo/deviceid/index.html b/files/en-us/web/api/mediadeviceinfo/deviceid/index.html index 542ca6764c3fcc6..14783dbcc37c4b5 100644 --- a/files/en-us/web/api/mediadeviceinfo/deviceid/index.html +++ b/files/en-us/web/api/mediadeviceinfo/deviceid/index.html @@ -42,6 +42,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaDeviceInfo.deviceId")}}

    diff --git a/files/en-us/web/api/mediadeviceinfo/groupid/index.html b/files/en-us/web/api/mediadeviceinfo/groupid/index.html index ba689cc52103862..4d1cddc62830461 100644 --- a/files/en-us/web/api/mediadeviceinfo/groupid/index.html +++ b/files/en-us/web/api/mediadeviceinfo/groupid/index.html @@ -90,6 +90,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaDeviceInfo.groupId")}}

    diff --git a/files/en-us/web/api/mediadeviceinfo/index.html b/files/en-us/web/api/mediadeviceinfo/index.html index b1bdb481aa57853..b275d824da0e4c7 100644 --- a/files/en-us/web/api/mediadeviceinfo/index.html +++ b/files/en-us/web/api/mediadeviceinfo/index.html @@ -96,7 +96,6 @@

    Browser compatibility

    -

    {{Compat("api.MediaDeviceInfo")}}

    diff --git a/files/en-us/web/api/mediadeviceinfo/kind/index.html b/files/en-us/web/api/mediadeviceinfo/kind/index.html index 9a346ccde77b883..8165fbf36c1ad1f 100644 --- a/files/en-us/web/api/mediadeviceinfo/kind/index.html +++ b/files/en-us/web/api/mediadeviceinfo/kind/index.html @@ -42,6 +42,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaDeviceInfo.kind")}}

    diff --git a/files/en-us/web/api/mediadeviceinfo/label/index.html b/files/en-us/web/api/mediadeviceinfo/label/index.html index 3c3a1e03d990b1d..7912b905b3d6792 100644 --- a/files/en-us/web/api/mediadeviceinfo/label/index.html +++ b/files/en-us/web/api/mediadeviceinfo/label/index.html @@ -45,6 +45,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaDeviceInfo.label")}}

    diff --git a/files/en-us/web/api/mediadevices/devicechange_event/index.html b/files/en-us/web/api/mediadevices/devicechange_event/index.html index c50f0394d34dcae..e719987ab2e1fe8 100644 --- a/files/en-us/web/api/mediadevices/devicechange_event/index.html +++ b/files/en-us/web/api/mediadevices/devicechange_event/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaDevices.devicechange_event")}}

    See also

    diff --git a/files/en-us/web/api/mediadevices/enumeratedevices/index.html b/files/en-us/web/api/mediadevices/enumeratedevices/index.html index 6a7118de7d5c714..e3db46cd50a5486 100644 --- a/files/en-us/web/api/mediadevices/enumeratedevices/index.html +++ b/files/en-us/web/api/mediadevices/enumeratedevices/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaDevices.enumerateDevices")}}

    See also

    diff --git a/files/en-us/web/api/mediadevices/getdisplaymedia/index.html b/files/en-us/web/api/mediadevices/getdisplaymedia/index.html index 9044071e29e4ef7..0a917db64910b18 100644 --- a/files/en-us/web/api/mediadevices/getdisplaymedia/index.html +++ b/files/en-us/web/api/mediadevices/getdisplaymedia/index.html @@ -115,7 +115,6 @@

    Browser compatibility

    -

    {{Compat("api.MediaDevices.getDisplayMedia")}}

    diff --git a/files/en-us/web/api/mediadevices/getsupportedconstraints/index.html b/files/en-us/web/api/mediadevices/getsupportedconstraints/index.html index 8f0af4654e21195..93a8a8a983e27df 100644 --- a/files/en-us/web/api/mediadevices/getsupportedconstraints/index.html +++ b/files/en-us/web/api/mediadevices/getsupportedconstraints/index.html @@ -84,6 +84,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaDevices.getSupportedConstraints")}}

    diff --git a/files/en-us/web/api/mediadevices/getusermedia/index.html b/files/en-us/web/api/mediadevices/getusermedia/index.html index 7f8d20a500edacb..2ad5e944ce44828 100644 --- a/files/en-us/web/api/mediadevices/getusermedia/index.html +++ b/files/en-us/web/api/mediadevices/getusermedia/index.html @@ -335,8 +335,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaDevices.getUserMedia")}}

    See also

    diff --git a/files/en-us/web/api/mediadevices/index.html b/files/en-us/web/api/mediadevices/index.html index 42eab38e73cf11d..d71acf915fdcc0b 100644 --- a/files/en-us/web/api/mediadevices/index.html +++ b/files/en-us/web/api/mediadevices/index.html @@ -114,7 +114,6 @@

    Browser compatibility

    -

    {{Compat("api.MediaDevices")}}

    diff --git a/files/en-us/web/api/mediadevices/ondevicechange/index.html b/files/en-us/web/api/mediadevices/ondevicechange/index.html index 806f3cbabaee15c..0631403bf327aea 100644 --- a/files/en-us/web/api/mediadevices/ondevicechange/index.html +++ b/files/en-us/web/api/mediadevices/ondevicechange/index.html @@ -203,7 +203,6 @@

    Browser compatibility

    -

    {{Compat("api.MediaDevices.ondevicechange")}}

    diff --git a/files/en-us/web/api/mediaelementaudiosourcenode/index.html b/files/en-us/web/api/mediaelementaudiosourcenode/index.html index a6db4dd87d35965..e2bee5899c35a1f 100644 --- a/files/en-us/web/api/mediaelementaudiosourcenode/index.html +++ b/files/en-us/web/api/mediaelementaudiosourcenode/index.html @@ -80,7 +80,6 @@

    Browser compatibility

    -

    {{Compat("api.MediaElementAudioSourceNode")}}

    diff --git a/files/en-us/web/api/mediaelementaudiosourcenode/mediaelement/index.html b/files/en-us/web/api/mediaelementaudiosourcenode/mediaelement/index.html index d02d4a23f854179..cd974a5d0b1d7d0 100644 --- a/files/en-us/web/api/mediaelementaudiosourcenode/mediaelement/index.html +++ b/files/en-us/web/api/mediaelementaudiosourcenode/mediaelement/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaElementAudioSourceNode.mediaElement")}}

    diff --git a/files/en-us/web/api/mediaelementaudiosourcenode/mediaelementaudiosourcenode/index.html b/files/en-us/web/api/mediaelementaudiosourcenode/mediaelementaudiosourcenode/index.html index 83de4053fc8d2ea..f16efd1542aea69 100644 --- a/files/en-us/web/api/mediaelementaudiosourcenode/mediaelementaudiosourcenode/index.html +++ b/files/en-us/web/api/mediaelementaudiosourcenode/mediaelementaudiosourcenode/index.html @@ -66,6 +66,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaElementAudioSourceNode.MediaElementAudioSourceNode")}}

    diff --git a/files/en-us/web/api/mediaencodingconfiguration/index.html b/files/en-us/web/api/mediaencodingconfiguration/index.html index 313e7e0dae88846..54c60e7fcb85119 100644 --- a/files/en-us/web/api/mediaencodingconfiguration/index.html +++ b/files/en-us/web/api/mediaencodingconfiguration/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaEncodingConfiguration")}}

    See also

    diff --git a/files/en-us/web/api/mediaerror/code/index.html b/files/en-us/web/api/mediaerror/code/index.html index e732df97207982c..ca3278bc6a311fb 100644 --- a/files/en-us/web/api/mediaerror/code/index.html +++ b/files/en-us/web/api/mediaerror/code/index.html @@ -88,8 +88,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaError.code")}}

    See also

    diff --git a/files/en-us/web/api/mediaerror/index.html b/files/en-us/web/api/mediaerror/index.html index c0586ecf002e3f9..ae9738c410f5efb 100644 --- a/files/en-us/web/api/mediaerror/index.html +++ b/files/en-us/web/api/mediaerror/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaError")}}

    See also

    diff --git a/files/en-us/web/api/mediaerror/message/index.html b/files/en-us/web/api/mediaerror/message/index.html index f278dc4b4c957cc..55f6831c5fec4a7 100644 --- a/files/en-us/web/api/mediaerror/message/index.html +++ b/files/en-us/web/api/mediaerror/message/index.html @@ -92,8 +92,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaError.message")}}

    See also

    diff --git a/files/en-us/web/api/mediakeymessageevent/index.html b/files/en-us/web/api/mediakeymessageevent/index.html index 1618727f80f7688..35e445580afd71a 100644 --- a/files/en-us/web/api/mediakeymessageevent/index.html +++ b/files/en-us/web/api/mediakeymessageevent/index.html @@ -62,6 +62,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeyMessageEvent")}}

    diff --git a/files/en-us/web/api/mediakeymessageevent/mediakeymessageevent/index.html b/files/en-us/web/api/mediakeymessageevent/mediakeymessageevent/index.html index 6c92759e1b6dd82..97606a94c756d23 100644 --- a/files/en-us/web/api/mediakeymessageevent/mediakeymessageevent/index.html +++ b/files/en-us/web/api/mediakeymessageevent/mediakeymessageevent/index.html @@ -36,6 +36,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaKeyMessageEvent.MediaKeyMessageEvent")}}

    diff --git a/files/en-us/web/api/mediakeymessageevent/message/index.html b/files/en-us/web/api/mediakeymessageevent/message/index.html index 63ef25337078c96..d195114cbcecd3c 100644 --- a/files/en-us/web/api/mediakeymessageevent/message/index.html +++ b/files/en-us/web/api/mediakeymessageevent/message/index.html @@ -39,6 +39,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeyMessageEvent.message")}}

    diff --git a/files/en-us/web/api/mediakeymessageevent/messagetype/index.html b/files/en-us/web/api/mediakeymessageevent/messagetype/index.html index 771251729bdecfc..c51368ab8484991 100644 --- a/files/en-us/web/api/mediakeymessageevent/messagetype/index.html +++ b/files/en-us/web/api/mediakeymessageevent/messagetype/index.html @@ -39,6 +39,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeyMessageEvent.messageType")}}

    diff --git a/files/en-us/web/api/mediakeys/createsession/index.html b/files/en-us/web/api/mediakeys/createsession/index.html index 56ef0714ec294e5..4821674aba255f0 100644 --- a/files/en-us/web/api/mediakeys/createsession/index.html +++ b/files/en-us/web/api/mediakeys/createsession/index.html @@ -40,6 +40,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeys.createSession")}}

    diff --git a/files/en-us/web/api/mediakeys/index.html b/files/en-us/web/api/mediakeys/index.html index a32894e636bda17..b34b2a3cc642d04 100644 --- a/files/en-us/web/api/mediakeys/index.html +++ b/files/en-us/web/api/mediakeys/index.html @@ -54,6 +54,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeys")}}

    diff --git a/files/en-us/web/api/mediakeys/setservercertificate/index.html b/files/en-us/web/api/mediakeys/setservercertificate/index.html index ec3456631bb6af9..3a4beba6b1ea04c 100644 --- a/files/en-us/web/api/mediakeys/setservercertificate/index.html +++ b/files/en-us/web/api/mediakeys/setservercertificate/index.html @@ -40,6 +40,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeys.setServerCertificate")}}

    diff --git a/files/en-us/web/api/mediakeysession/close/index.html b/files/en-us/web/api/mediakeysession/close/index.html index 0c2ff4997e4c462..d6d2e6d5d5da219 100644 --- a/files/en-us/web/api/mediakeysession/close/index.html +++ b/files/en-us/web/api/mediakeysession/close/index.html @@ -44,6 +44,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySession.close")}}

    diff --git a/files/en-us/web/api/mediakeysession/closed/index.html b/files/en-us/web/api/mediakeysession/closed/index.html index b3c07296ffd6264..f96d3971e1fc4d3 100644 --- a/files/en-us/web/api/mediakeysession/closed/index.html +++ b/files/en-us/web/api/mediakeysession/closed/index.html @@ -44,6 +44,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySession.closed")}}

    diff --git a/files/en-us/web/api/mediakeysession/expiration/index.html b/files/en-us/web/api/mediakeysession/expiration/index.html index 48082d0a10df755..a56b47296927fe7 100644 --- a/files/en-us/web/api/mediakeysession/expiration/index.html +++ b/files/en-us/web/api/mediakeysession/expiration/index.html @@ -40,6 +40,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySession.expiration")}}

    diff --git a/files/en-us/web/api/mediakeysession/generaterequest/index.html b/files/en-us/web/api/mediakeysession/generaterequest/index.html index 6f971aec9e473c4..bca819f9fa96f02 100644 --- a/files/en-us/web/api/mediakeysession/generaterequest/index.html +++ b/files/en-us/web/api/mediakeysession/generaterequest/index.html @@ -40,6 +40,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySession.generateRequest")}}

    diff --git a/files/en-us/web/api/mediakeysession/index.html b/files/en-us/web/api/mediakeysession/index.html index 68714d6ff6c57dd..51540227a178afb 100644 --- a/files/en-us/web/api/mediakeysession/index.html +++ b/files/en-us/web/api/mediakeysession/index.html @@ -80,6 +80,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySession")}}

    diff --git a/files/en-us/web/api/mediakeysession/keystatuses/index.html b/files/en-us/web/api/mediakeysession/keystatuses/index.html index 65674656131ebde..be61844fd66ae13 100644 --- a/files/en-us/web/api/mediakeysession/keystatuses/index.html +++ b/files/en-us/web/api/mediakeysession/keystatuses/index.html @@ -40,6 +40,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySession.keyStatuses")}}

    diff --git a/files/en-us/web/api/mediakeysession/load/index.html b/files/en-us/web/api/mediakeysession/load/index.html index 7fb8d00fa856826..ef0cf38c6e81efc 100644 --- a/files/en-us/web/api/mediakeysession/load/index.html +++ b/files/en-us/web/api/mediakeysession/load/index.html @@ -51,6 +51,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySession.load")}}

    diff --git a/files/en-us/web/api/mediakeysession/onkeystatuseschange/index.html b/files/en-us/web/api/mediakeysession/onkeystatuseschange/index.html index 5ca1347459c8c68..b7ed1146d512166 100644 --- a/files/en-us/web/api/mediakeysession/onkeystatuseschange/index.html +++ b/files/en-us/web/api/mediakeysession/onkeystatuseschange/index.html @@ -35,6 +35,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySession.onkeystatuseschange")}}

    diff --git a/files/en-us/web/api/mediakeysession/onmessage/index.html b/files/en-us/web/api/mediakeysession/onmessage/index.html index 8bda724dae6b82b..a840273c41adce5 100644 --- a/files/en-us/web/api/mediakeysession/onmessage/index.html +++ b/files/en-us/web/api/mediakeysession/onmessage/index.html @@ -36,6 +36,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySession.onmessage")}}

    diff --git a/files/en-us/web/api/mediakeysession/remove/index.html b/files/en-us/web/api/mediakeysession/remove/index.html index b681063ffad12fb..1030fc51fc7c65f 100644 --- a/files/en-us/web/api/mediakeysession/remove/index.html +++ b/files/en-us/web/api/mediakeysession/remove/index.html @@ -40,6 +40,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySession.remove")}}

    diff --git a/files/en-us/web/api/mediakeysession/sessionid/index.html b/files/en-us/web/api/mediakeysession/sessionid/index.html index d75f96f55bfc2f2..f68bb464db6d045 100644 --- a/files/en-us/web/api/mediakeysession/sessionid/index.html +++ b/files/en-us/web/api/mediakeysession/sessionid/index.html @@ -40,6 +40,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySession.sessionId")}}

    diff --git a/files/en-us/web/api/mediakeysession/update/index.html b/files/en-us/web/api/mediakeysession/update/index.html index 2dc25a00e8a0152..01c4efd1c622882 100644 --- a/files/en-us/web/api/mediakeysession/update/index.html +++ b/files/en-us/web/api/mediakeysession/update/index.html @@ -51,6 +51,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySession.update")}}

    diff --git a/files/en-us/web/api/mediakeystatusmap/entries/index.html b/files/en-us/web/api/mediakeystatusmap/entries/index.html index a998c0917a953ba..b622a39f8043661 100644 --- a/files/en-us/web/api/mediakeystatusmap/entries/index.html +++ b/files/en-us/web/api/mediakeystatusmap/entries/index.html @@ -46,6 +46,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaKeyStatusMap.entries")}}

    diff --git a/files/en-us/web/api/mediakeystatusmap/foreach/index.html b/files/en-us/web/api/mediakeystatusmap/foreach/index.html index 730892c6db1dacc..f33ab3b407a19bf 100644 --- a/files/en-us/web/api/mediakeystatusmap/foreach/index.html +++ b/files/en-us/web/api/mediakeystatusmap/foreach/index.html @@ -60,6 +60,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaKeyStatusMap.forEach")}}

    diff --git a/files/en-us/web/api/mediakeystatusmap/get/index.html b/files/en-us/web/api/mediakeystatusmap/get/index.html index 3141be48dde49f7..14265c2878ebdb3 100644 --- a/files/en-us/web/api/mediakeystatusmap/get/index.html +++ b/files/en-us/web/api/mediakeystatusmap/get/index.html @@ -49,6 +49,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaKeyStatusMap.get")}}

    diff --git a/files/en-us/web/api/mediakeystatusmap/has/index.html b/files/en-us/web/api/mediakeystatusmap/has/index.html index c0b78d665c43b49..2033f35b75bb712 100644 --- a/files/en-us/web/api/mediakeystatusmap/has/index.html +++ b/files/en-us/web/api/mediakeystatusmap/has/index.html @@ -49,6 +49,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaKeyStatusMap.has")}}

    diff --git a/files/en-us/web/api/mediakeystatusmap/index.html b/files/en-us/web/api/mediakeystatusmap/index.html index eca83336011f23a..e7853fbe4cc8ffb 100644 --- a/files/en-us/web/api/mediakeystatusmap/index.html +++ b/files/en-us/web/api/mediakeystatusmap/index.html @@ -59,6 +59,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeyStatusMap")}}

    diff --git a/files/en-us/web/api/mediakeystatusmap/keys/index.html b/files/en-us/web/api/mediakeystatusmap/keys/index.html index 9d34347fd907e3c..c4a6fb1592e165f 100644 --- a/files/en-us/web/api/mediakeystatusmap/keys/index.html +++ b/files/en-us/web/api/mediakeystatusmap/keys/index.html @@ -46,6 +46,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaKeyStatusMap.keys")}}

    diff --git a/files/en-us/web/api/mediakeystatusmap/size/index.html b/files/en-us/web/api/mediakeystatusmap/size/index.html index 92e38dabe33c439..95a73a1a06f1e24 100644 --- a/files/en-us/web/api/mediakeystatusmap/size/index.html +++ b/files/en-us/web/api/mediakeystatusmap/size/index.html @@ -42,6 +42,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaKeyStatusMap.size")}}

    diff --git a/files/en-us/web/api/mediakeystatusmap/values/index.html b/files/en-us/web/api/mediakeystatusmap/values/index.html index 3399e5f6ed4982a..5fd698dbe5b23aa 100644 --- a/files/en-us/web/api/mediakeystatusmap/values/index.html +++ b/files/en-us/web/api/mediakeystatusmap/values/index.html @@ -46,6 +46,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaKeyStatusMap.values")}}

    diff --git a/files/en-us/web/api/mediakeysystemaccess/createmediakeys/index.html b/files/en-us/web/api/mediakeysystemaccess/createmediakeys/index.html index 3c10d2cc0b0bd16..aeffdf039291a03 100644 --- a/files/en-us/web/api/mediakeysystemaccess/createmediakeys/index.html +++ b/files/en-us/web/api/mediakeysystemaccess/createmediakeys/index.html @@ -42,6 +42,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySystemAccess.createMediaKeys")}}

    diff --git a/files/en-us/web/api/mediakeysystemaccess/getconfiguration/index.html b/files/en-us/web/api/mediakeysystemaccess/getconfiguration/index.html index 060441e46e0145a..393b545830ea046 100644 --- a/files/en-us/web/api/mediakeysystemaccess/getconfiguration/index.html +++ b/files/en-us/web/api/mediakeysystemaccess/getconfiguration/index.html @@ -42,6 +42,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySystemAccess.getConfiguration")}}

    diff --git a/files/en-us/web/api/mediakeysystemaccess/index.html b/files/en-us/web/api/mediakeysystemaccess/index.html index 5ee89eaea30ad5b..60d4399497a0945 100644 --- a/files/en-us/web/api/mediakeysystemaccess/index.html +++ b/files/en-us/web/api/mediakeysystemaccess/index.html @@ -54,6 +54,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySystemAccess")}}

    diff --git a/files/en-us/web/api/mediakeysystemaccess/keysystem/index.html b/files/en-us/web/api/mediakeysystemaccess/keysystem/index.html index e90fcba9694b0eb..a5b52cbe23e3143 100644 --- a/files/en-us/web/api/mediakeysystemaccess/keysystem/index.html +++ b/files/en-us/web/api/mediakeysystemaccess/keysystem/index.html @@ -40,6 +40,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySystemAccess.keySystem")}}

    diff --git a/files/en-us/web/api/mediakeysystemconfiguration/audiocapabilities/index.html b/files/en-us/web/api/mediakeysystemconfiguration/audiocapabilities/index.html index e1369ba8d8fbe27..2cb2da8807e22d5 100644 --- a/files/en-us/web/api/mediakeysystemconfiguration/audiocapabilities/index.html +++ b/files/en-us/web/api/mediakeysystemconfiguration/audiocapabilities/index.html @@ -41,6 +41,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySystemConfiguration.audioCapabilities")}}

    diff --git a/files/en-us/web/api/mediakeysystemconfiguration/distinctiveidentifier/index.html b/files/en-us/web/api/mediakeysystemconfiguration/distinctiveidentifier/index.html index 39287c92a5f5ae9..61c8dd8a2adc182 100644 --- a/files/en-us/web/api/mediakeysystemconfiguration/distinctiveidentifier/index.html +++ b/files/en-us/web/api/mediakeysystemconfiguration/distinctiveidentifier/index.html @@ -41,6 +41,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySystemConfiguration.distinctiveIdentifier")}}

    diff --git a/files/en-us/web/api/mediakeysystemconfiguration/index.html b/files/en-us/web/api/mediakeysystemconfiguration/index.html index ed31c3b2971e396..8ad8a4148aff6d6 100644 --- a/files/en-us/web/api/mediakeysystemconfiguration/index.html +++ b/files/en-us/web/api/mediakeysystemconfiguration/index.html @@ -53,6 +53,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySystemConfiguration")}}

    diff --git a/files/en-us/web/api/mediakeysystemconfiguration/initdatatypes/index.html b/files/en-us/web/api/mediakeysystemconfiguration/initdatatypes/index.html index d2de6c56ee1f6e7..dfd3fd2a842c9f2 100644 --- a/files/en-us/web/api/mediakeysystemconfiguration/initdatatypes/index.html +++ b/files/en-us/web/api/mediakeysystemconfiguration/initdatatypes/index.html @@ -42,6 +42,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySystemConfiguration.initDataTypes")}}

    diff --git a/files/en-us/web/api/mediakeysystemconfiguration/persistentstate/index.html b/files/en-us/web/api/mediakeysystemconfiguration/persistentstate/index.html index 9ffca4430763e1b..c5b6102322f2a80 100644 --- a/files/en-us/web/api/mediakeysystemconfiguration/persistentstate/index.html +++ b/files/en-us/web/api/mediakeysystemconfiguration/persistentstate/index.html @@ -41,6 +41,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySystemConfiguration.persistentState")}}

    diff --git a/files/en-us/web/api/mediakeysystemconfiguration/videocapabilities/index.html b/files/en-us/web/api/mediakeysystemconfiguration/videocapabilities/index.html index f62ee8a302c659b..7d849f60ac149be 100644 --- a/files/en-us/web/api/mediakeysystemconfiguration/videocapabilities/index.html +++ b/files/en-us/web/api/mediakeysystemconfiguration/videocapabilities/index.html @@ -41,6 +41,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaKeySystemConfiguration.videoCapabilities")}}

    diff --git a/files/en-us/web/api/medialist/index.html b/files/en-us/web/api/medialist/index.html index cf54e3cd96b5938..aed11874f6a13c4 100644 --- a/files/en-us/web/api/medialist/index.html +++ b/files/en-us/web/api/medialist/index.html @@ -63,6 +63,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaList")}}

    diff --git a/files/en-us/web/api/medialist/mediatext/index.html b/files/en-us/web/api/medialist/mediatext/index.html index 4f14bfb35e3e19d..536002bc18daf22 100644 --- a/files/en-us/web/api/medialist/mediatext/index.html +++ b/files/en-us/web/api/medialist/mediatext/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaList.mediaText")}}

    diff --git a/files/en-us/web/api/mediametadata/album/index.html b/files/en-us/web/api/mediametadata/album/index.html index 2d0735975ae3aa1..25a587472da5a7a 100644 --- a/files/en-us/web/api/mediametadata/album/index.html +++ b/files/en-us/web/api/mediametadata/album/index.html @@ -60,6 +60,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaMetadata.album")}}

    diff --git a/files/en-us/web/api/mediametadata/artist/index.html b/files/en-us/web/api/mediametadata/artist/index.html index c8720261a92ec61..61e72acb991149b 100644 --- a/files/en-us/web/api/mediametadata/artist/index.html +++ b/files/en-us/web/api/mediametadata/artist/index.html @@ -64,6 +64,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaMetadata.artist")}}

    diff --git a/files/en-us/web/api/mediametadata/artwork/index.html b/files/en-us/web/api/mediametadata/artwork/index.html index a3b39cf13a6510a..f4125555ecd5708 100644 --- a/files/en-us/web/api/mediametadata/artwork/index.html +++ b/files/en-us/web/api/mediametadata/artwork/index.html @@ -65,7 +65,6 @@

    Browser Compatibility

    -

    {{Compat("api.MediaMetadata.artwork")}}

    See also

    diff --git a/files/en-us/web/api/mediametadata/index.html b/files/en-us/web/api/mediametadata/index.html index 6ca42dd7c939c1a..9ae8a057162f4d2 100644 --- a/files/en-us/web/api/mediametadata/index.html +++ b/files/en-us/web/api/mediametadata/index.html @@ -75,6 +75,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaMetadata")}}

    diff --git a/files/en-us/web/api/mediametadata/mediametadata/index.html b/files/en-us/web/api/mediametadata/mediametadata/index.html index de956f3b63f0a43..53c909b8b356298 100644 --- a/files/en-us/web/api/mediametadata/mediametadata/index.html +++ b/files/en-us/web/api/mediametadata/mediametadata/index.html @@ -75,6 +75,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaMetadata.MediaMetadata")}}

    diff --git a/files/en-us/web/api/mediametadata/title/index.html b/files/en-us/web/api/mediametadata/title/index.html index 3eef1c5894eb06d..f7d031096ed62f4 100644 --- a/files/en-us/web/api/mediametadata/title/index.html +++ b/files/en-us/web/api/mediametadata/title/index.html @@ -65,6 +65,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaMetadata.title")}}

    diff --git a/files/en-us/web/api/mediaquerylist/addlistener/index.html b/files/en-us/web/api/mediaquerylist/addlistener/index.html index 3ab14b400ce6622..8cab060a11d6c25 100644 --- a/files/en-us/web/api/mediaquerylist/addlistener/index.html +++ b/files/en-us/web/api/mediaquerylist/addlistener/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaQueryList.addListener")}}

    See also

    diff --git a/files/en-us/web/api/mediaquerylist/index.html b/files/en-us/web/api/mediaquerylist/index.html index 9d28bcd8b8743b3..bd94c1d3fd42a09 100644 --- a/files/en-us/web/api/mediaquerylist/index.html +++ b/files/en-us/web/api/mediaquerylist/index.html @@ -98,8 +98,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaQueryList")}}

    See also

    diff --git a/files/en-us/web/api/mediaquerylist/matches/index.html b/files/en-us/web/api/mediaquerylist/matches/index.html index 5922a1decf3729d..176e404f5ec717b 100644 --- a/files/en-us/web/api/mediaquerylist/matches/index.html +++ b/files/en-us/web/api/mediaquerylist/matches/index.html @@ -71,8 +71,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaQueryList.matches")}}

    See also

    diff --git a/files/en-us/web/api/mediaquerylist/media/index.html b/files/en-us/web/api/mediaquerylist/media/index.html index 5ea769f03b8a0c0..031fc909e9d8766 100644 --- a/files/en-us/web/api/mediaquerylist/media/index.html +++ b/files/en-us/web/api/mediaquerylist/media/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaQueryList.media")}}

    See also

    diff --git a/files/en-us/web/api/mediaquerylist/onchange/index.html b/files/en-us/web/api/mediaquerylist/onchange/index.html index 62f9b9ac9e62958..7f61ec22e53883f 100644 --- a/files/en-us/web/api/mediaquerylist/onchange/index.html +++ b/files/en-us/web/api/mediaquerylist/onchange/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaQueryList.onchange")}}

    See also

    diff --git a/files/en-us/web/api/mediaquerylist/removelistener/index.html b/files/en-us/web/api/mediaquerylist/removelistener/index.html index e84d633fc14f4d1..7bba6691371af6c 100644 --- a/files/en-us/web/api/mediaquerylist/removelistener/index.html +++ b/files/en-us/web/api/mediaquerylist/removelistener/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaQueryList.removeListener")}}

    See also

    diff --git a/files/en-us/web/api/mediaquerylistevent/index.html b/files/en-us/web/api/mediaquerylistevent/index.html index b2ae58644fca437..54247c7b4836c1a 100644 --- a/files/en-us/web/api/mediaquerylistevent/index.html +++ b/files/en-us/web/api/mediaquerylistevent/index.html @@ -35,7 +35,6 @@

    Methods

    The MediaQueryListEvent interface inherits methods from its parent interface, {{DOMxRef("Event")}}.

    -

    Examples

    var mql = window.matchMedia('(max-width: 600px)');
    @@ -73,8 +72,6 @@ 

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaQueryListEvent")}}

    See also

    diff --git a/files/en-us/web/api/mediaquerylistevent/matches/index.html b/files/en-us/web/api/mediaquerylistevent/matches/index.html index 6f2829351aa4e80..e2d7cfa7c9587c0 100644 --- a/files/en-us/web/api/mediaquerylistevent/matches/index.html +++ b/files/en-us/web/api/mediaquerylistevent/matches/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaQueryListEvent.matches")}}

    See also

    diff --git a/files/en-us/web/api/mediaquerylistevent/media/index.html b/files/en-us/web/api/mediaquerylistevent/media/index.html index 5723fb0e81549b0..f172e30b579614b 100644 --- a/files/en-us/web/api/mediaquerylistevent/media/index.html +++ b/files/en-us/web/api/mediaquerylistevent/media/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaQueryListEvent.media")}}

    See also

    diff --git a/files/en-us/web/api/mediaquerylistevent/mediaquerylistevent/index.html b/files/en-us/web/api/mediaquerylistevent/mediaquerylistevent/index.html index 7a9a9b197cbee00..dd3b86653670c6b 100644 --- a/files/en-us/web/api/mediaquerylistevent/mediaquerylistevent/index.html +++ b/files/en-us/web/api/mediaquerylistevent/mediaquerylistevent/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaQueryListEvent.MediaQueryListEvent")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/audiobitspersecond/index.html b/files/en-us/web/api/mediarecorder/audiobitspersecond/index.html index c1f1d8253f1fd45..6f45de78c82a287 100644 --- a/files/en-us/web/api/mediarecorder/audiobitspersecond/index.html +++ b/files/en-us/web/api/mediarecorder/audiobitspersecond/index.html @@ -40,6 +40,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.MediaRecorder.audioBitsPerSecond")}}

    diff --git a/files/en-us/web/api/mediarecorder/error_event/index.html b/files/en-us/web/api/mediarecorder/error_event/index.html index 38d0c949c2834bf..f4c48117a428228 100644 --- a/files/en-us/web/api/mediarecorder/error_event/index.html +++ b/files/en-us/web/api/mediarecorder/error_event/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.error_event")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/ignoremutedmedia/index.html b/files/en-us/web/api/mediarecorder/ignoremutedmedia/index.html index d22188fa9947acb..1233d0154bec58f 100644 --- a/files/en-us/web/api/mediarecorder/ignoremutedmedia/index.html +++ b/files/en-us/web/api/mediarecorder/ignoremutedmedia/index.html @@ -25,6 +25,4 @@

    Value

    Browser Compatibility

    - -

    {{Compat("api.MediaRecorder.ignoreMutedMedia")}}

    diff --git a/files/en-us/web/api/mediarecorder/index.html b/files/en-us/web/api/mediarecorder/index.html index deae551c3ac9fcc..71c3a245ae60b8f 100644 --- a/files/en-us/web/api/mediarecorder/index.html +++ b/files/en-us/web/api/mediarecorder/index.html @@ -188,8 +188,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/istypesupported/index.html b/files/en-us/web/api/mediarecorder/istypesupported/index.html index 663a190377b4407..bdf54d9a557c7de 100644 --- a/files/en-us/web/api/mediarecorder/istypesupported/index.html +++ b/files/en-us/web/api/mediarecorder/istypesupported/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.isTypeSupported")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/mediarecorder/index.html b/files/en-us/web/api/mediarecorder/mediarecorder/index.html index 55e28a1305728ce..ada79a667b6407f 100644 --- a/files/en-us/web/api/mediarecorder/mediarecorder/index.html +++ b/files/en-us/web/api/mediarecorder/mediarecorder/index.html @@ -93,8 +93,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.MediaRecorder")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/mimetype/index.html b/files/en-us/web/api/mediarecorder/mimetype/index.html index 60b0e9222668053..5d0eb21f2db2d2f 100644 --- a/files/en-us/web/api/mediarecorder/mimetype/index.html +++ b/files/en-us/web/api/mediarecorder/mimetype/index.html @@ -86,8 +86,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.mimeType")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/ondataavailable/index.html b/files/en-us/web/api/mediarecorder/ondataavailable/index.html index a011b256c488f01..50af35f18afabbb 100644 --- a/files/en-us/web/api/mediarecorder/ondataavailable/index.html +++ b/files/en-us/web/api/mediarecorder/ondataavailable/index.html @@ -78,8 +78,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.ondataavailable")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/onerror/index.html b/files/en-us/web/api/mediarecorder/onerror/index.html index 80cdef3e2672f1f..7bd34aff6510b35 100644 --- a/files/en-us/web/api/mediarecorder/onerror/index.html +++ b/files/en-us/web/api/mediarecorder/onerror/index.html @@ -106,8 +106,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.onerror")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/onpause/index.html b/files/en-us/web/api/mediarecorder/onpause/index.html index aa47a524a51408a..8e5628f86352842 100644 --- a/files/en-us/web/api/mediarecorder/onpause/index.html +++ b/files/en-us/web/api/mediarecorder/onpause/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.onpause")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/onresume/index.html b/files/en-us/web/api/mediarecorder/onresume/index.html index 7ac868241612c39..bb4689df73c87f7 100644 --- a/files/en-us/web/api/mediarecorder/onresume/index.html +++ b/files/en-us/web/api/mediarecorder/onresume/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.onresume")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/onstart/index.html b/files/en-us/web/api/mediarecorder/onstart/index.html index 71cb9ecde173dfe..cb89ff4f4587ad9 100644 --- a/files/en-us/web/api/mediarecorder/onstart/index.html +++ b/files/en-us/web/api/mediarecorder/onstart/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.onstart")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/onstop/index.html b/files/en-us/web/api/mediarecorder/onstop/index.html index c94443b3d5c4d31..5f51502182015ef 100644 --- a/files/en-us/web/api/mediarecorder/onstop/index.html +++ b/files/en-us/web/api/mediarecorder/onstop/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.onstop")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/onwarning/index.html b/files/en-us/web/api/mediarecorder/onwarning/index.html index 0b11f201d7cca7d..cdccb91c1b12e40 100644 --- a/files/en-us/web/api/mediarecorder/onwarning/index.html +++ b/files/en-us/web/api/mediarecorder/onwarning/index.html @@ -45,8 +45,6 @@

    Properties

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.onwarning")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/pause/index.html b/files/en-us/web/api/mediarecorder/pause/index.html index 5581c7df70fb0e4..4d7673f618848e5 100644 --- a/files/en-us/web/api/mediarecorder/pause/index.html +++ b/files/en-us/web/api/mediarecorder/pause/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.pause")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/requestdata/index.html b/files/en-us/web/api/mediarecorder/requestdata/index.html index 21fea30b1d442fc..9d124e752a4d601 100644 --- a/files/en-us/web/api/mediarecorder/requestdata/index.html +++ b/files/en-us/web/api/mediarecorder/requestdata/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.requestData")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/resume/index.html b/files/en-us/web/api/mediarecorder/resume/index.html index c7c29550aed319d..c756117e2da699f 100644 --- a/files/en-us/web/api/mediarecorder/resume/index.html +++ b/files/en-us/web/api/mediarecorder/resume/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.resume")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/start/index.html b/files/en-us/web/api/mediarecorder/start/index.html index a7516f27fc41c66..34d26164ee0d37c 100644 --- a/files/en-us/web/api/mediarecorder/start/index.html +++ b/files/en-us/web/api/mediarecorder/start/index.html @@ -90,8 +90,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.start")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/state/index.html b/files/en-us/web/api/mediarecorder/state/index.html index ab56cf561421bd7..8923b6ef113d380 100644 --- a/files/en-us/web/api/mediarecorder/state/index.html +++ b/files/en-us/web/api/mediarecorder/state/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.state")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/stop/index.html b/files/en-us/web/api/mediarecorder/stop/index.html index e56b344974f4924..41ed75f155497e5 100644 --- a/files/en-us/web/api/mediarecorder/stop/index.html +++ b/files/en-us/web/api/mediarecorder/stop/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.stop")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/stream/index.html b/files/en-us/web/api/mediarecorder/stream/index.html index c80b6486d2ba968..8c170ee5ec86837 100644 --- a/files/en-us/web/api/mediarecorder/stream/index.html +++ b/files/en-us/web/api/mediarecorder/stream/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MediaRecorder.stream")}}

    See also

    diff --git a/files/en-us/web/api/mediarecorder/videobitspersecond/index.html b/files/en-us/web/api/mediarecorder/videobitspersecond/index.html index bf888f5a0d352f7..11c2a527d153f3c 100644 --- a/files/en-us/web/api/mediarecorder/videobitspersecond/index.html +++ b/files/en-us/web/api/mediarecorder/videobitspersecond/index.html @@ -39,6 +39,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaRecorder.videoBitsPerSecond")}}

    diff --git a/files/en-us/web/api/mediasession/metadata/index.html b/files/en-us/web/api/mediasession/metadata/index.html index cfb5ac5e78e2481..54371a0e422731f 100644 --- a/files/en-us/web/api/mediasession/metadata/index.html +++ b/files/en-us/web/api/mediasession/metadata/index.html @@ -66,6 +66,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaSession.metadata")}}

    diff --git a/files/en-us/web/api/mediasession/playbackstate/index.html b/files/en-us/web/api/mediasession/playbackstate/index.html index a31005e4d06a073..93168732712d9cc 100644 --- a/files/en-us/web/api/mediasession/playbackstate/index.html +++ b/files/en-us/web/api/mediasession/playbackstate/index.html @@ -92,6 +92,5 @@

    Browser Compatibility

    -

    {{Compat("api.MediaSession.playbackState")}}

    diff --git a/files/en-us/web/api/mediasession/setactionhandler/index.html b/files/en-us/web/api/mediasession/setactionhandler/index.html index 524811514d3cfb8..f4c86181ed0090e 100644 --- a/files/en-us/web/api/mediasession/setactionhandler/index.html +++ b/files/en-us/web/api/mediasession/setactionhandler/index.html @@ -40,7 +40,6 @@

    Description

    The action handler receives as input a single parameter: an object conforming to the {{domxref("MediaSessionActionDetails")}} dictionary, which provides both the action type (so the same function can handle multiple action types), as well as data needed in order to perform the action.

    -

    Examples

    This example creates a new media session and assigns action handlers (which don't do anything) to it.

    @@ -171,6 +170,5 @@

    Browser compatibility

    -

    {{Compat("api.MediaSession.setActionHandler")}}

    diff --git a/files/en-us/web/api/mediasessionaction/index.html b/files/en-us/web/api/mediasessionaction/index.html index 40aac081ac16758..4e0fcea71805f18 100644 --- a/files/en-us/web/api/mediasessionaction/index.html +++ b/files/en-us/web/api/mediasessionaction/index.html @@ -135,7 +135,6 @@

    Browser compatibility

    -

    {{Compat("api.MediaSessionAction")}}

    diff --git a/files/en-us/web/api/mediasessionactiondetails/action/index.html b/files/en-us/web/api/mediasessionactiondetails/action/index.html index 22c08a7aa988ef4..8594b700600eb9e 100644 --- a/files/en-us/web/api/mediasessionactiondetails/action/index.html +++ b/files/en-us/web/api/mediasessionactiondetails/action/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.MediaSessionActionDetails.action")}}

    See also

    diff --git a/files/en-us/web/api/mediasessionactiondetails/fastseek/index.html b/files/en-us/web/api/mediasessionactiondetails/fastseek/index.html index 2f39d2fabe66dc4..b7b447074cd4a2f 100644 --- a/files/en-us/web/api/mediasessionactiondetails/fastseek/index.html +++ b/files/en-us/web/api/mediasessionactiondetails/fastseek/index.html @@ -53,7 +53,6 @@

    Browser compatibility

    -

    {{Compat("api.MediaSessionActionDetails.fastSeek")}}

      diff --git a/files/en-us/web/api/mediasessionactiondetails/index.html b/files/en-us/web/api/mediasessionactiondetails/index.html index 74f76064148a1c8..38735b5e5e07af3 100644 --- a/files/en-us/web/api/mediasessionactiondetails/index.html +++ b/files/en-us/web/api/mediasessionactiondetails/index.html @@ -90,6 +90,5 @@

      Browser compatibility

      -

      {{Compat("api.MediaSessionActionDetails")}}

      diff --git a/files/en-us/web/api/mediasessionactiondetails/seekoffset/index.html b/files/en-us/web/api/mediasessionactiondetails/seekoffset/index.html index 467dfb828eb449e..0d1e18b8f7b14ac 100644 --- a/files/en-us/web/api/mediasessionactiondetails/seekoffset/index.html +++ b/files/en-us/web/api/mediasessionactiondetails/seekoffset/index.html @@ -57,7 +57,6 @@

      Browser compatibility

      -

      {{Compat("api.MediaSessionActionDetails.seekOffset")}}

        diff --git a/files/en-us/web/api/mediasessionactiondetails/seektime/index.html b/files/en-us/web/api/mediasessionactiondetails/seektime/index.html index b0b5ba7ffa836de..075c07c5b65f86e 100644 --- a/files/en-us/web/api/mediasessionactiondetails/seektime/index.html +++ b/files/en-us/web/api/mediasessionactiondetails/seektime/index.html @@ -63,7 +63,6 @@

        Browser compatibility

        -

        {{Compat("api.MediaSessionActionDetails.seekTime")}}

          diff --git a/files/en-us/web/api/mediasettingsrange/index.html b/files/en-us/web/api/mediasettingsrange/index.html index b4c9471357fcaba..a5336f09ea8a98c 100644 --- a/files/en-us/web/api/mediasettingsrange/index.html +++ b/files/en-us/web/api/mediasettingsrange/index.html @@ -77,6 +77,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaSettingsRange")}}

          diff --git a/files/en-us/web/api/mediasettingsrange/max/index.html b/files/en-us/web/api/mediasettingsrange/max/index.html index 19006134241a63b..514e7e9297ee3a7 100644 --- a/files/en-us/web/api/mediasettingsrange/max/index.html +++ b/files/en-us/web/api/mediasettingsrange/max/index.html @@ -42,6 +42,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaSettingsRange.max")}}

          diff --git a/files/en-us/web/api/mediasettingsrange/min/index.html b/files/en-us/web/api/mediasettingsrange/min/index.html index 26fc73fd351a845..8540ca829a5d0a1 100644 --- a/files/en-us/web/api/mediasettingsrange/min/index.html +++ b/files/en-us/web/api/mediasettingsrange/min/index.html @@ -42,6 +42,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaSettingsRange.min")}}

          diff --git a/files/en-us/web/api/mediasettingsrange/step/index.html b/files/en-us/web/api/mediasettingsrange/step/index.html index c6b70c6ee6788fb..15e20ba802fa756 100644 --- a/files/en-us/web/api/mediasettingsrange/step/index.html +++ b/files/en-us/web/api/mediasettingsrange/step/index.html @@ -42,6 +42,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaSettingsRange.step")}}

          diff --git a/files/en-us/web/api/mediasource/activesourcebuffers/index.html b/files/en-us/web/api/mediasource/activesourcebuffers/index.html index 2d7e9fb8b3cb248..ac61f9b90825506 100644 --- a/files/en-us/web/api/mediasource/activesourcebuffers/index.html +++ b/files/en-us/web/api/mediasource/activesourcebuffers/index.html @@ -69,7 +69,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaSource.activeSourceBuffers")}}

          diff --git a/files/en-us/web/api/mediasource/addsourcebuffer/index.html b/files/en-us/web/api/mediasource/addsourcebuffer/index.html index d217f0bdad2ed24..d7a5bd7053cb95e 100644 --- a/files/en-us/web/api/mediasource/addsourcebuffer/index.html +++ b/files/en-us/web/api/mediasource/addsourcebuffer/index.html @@ -98,7 +98,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaSource.addSourceBuffer")}}

          diff --git a/files/en-us/web/api/mediasource/clearliveseekablerange/index.html b/files/en-us/web/api/mediasource/clearliveseekablerange/index.html index 4145508d5ae1e46..39ae01ee8e42b20 100644 --- a/files/en-us/web/api/mediasource/clearliveseekablerange/index.html +++ b/files/en-us/web/api/mediasource/clearliveseekablerange/index.html @@ -48,6 +48,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaSource.clearLiveSeekableRange")}}

          diff --git a/files/en-us/web/api/mediasource/duration/index.html b/files/en-us/web/api/mediasource/duration/index.html index 6034b707ac1434c..686c709b6435a16 100644 --- a/files/en-us/web/api/mediasource/duration/index.html +++ b/files/en-us/web/api/mediasource/duration/index.html @@ -92,7 +92,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaSource.duration")}}

          diff --git a/files/en-us/web/api/mediasource/endofstream/index.html b/files/en-us/web/api/mediasource/endofstream/index.html index 6818162ea6027b0..b0a165edcea4c3b 100644 --- a/files/en-us/web/api/mediasource/endofstream/index.html +++ b/files/en-us/web/api/mediasource/endofstream/index.html @@ -107,7 +107,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaSource.endOfStream")}}

          diff --git a/files/en-us/web/api/mediasource/index.html b/files/en-us/web/api/mediasource/index.html index 8a0b1c4d158380c..528fb24e40b612a 100644 --- a/files/en-us/web/api/mediasource/index.html +++ b/files/en-us/web/api/mediasource/index.html @@ -141,7 +141,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaSource")}}

          diff --git a/files/en-us/web/api/mediasource/istypesupported/index.html b/files/en-us/web/api/mediasource/istypesupported/index.html index 40e8585a5f8d93a..f52a43946b154e9 100644 --- a/files/en-us/web/api/mediasource/istypesupported/index.html +++ b/files/en-us/web/api/mediasource/istypesupported/index.html @@ -89,7 +89,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaSource.isTypeSupported")}}

          diff --git a/files/en-us/web/api/mediasource/mediasource/index.html b/files/en-us/web/api/mediasource/mediasource/index.html index 08ce6fdae2d751a..85440b04aed2585 100644 --- a/files/en-us/web/api/mediasource/mediasource/index.html +++ b/files/en-us/web/api/mediasource/mediasource/index.html @@ -51,7 +51,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaSource.MediaSource")}}

          diff --git a/files/en-us/web/api/mediasource/readystate/index.html b/files/en-us/web/api/mediasource/readystate/index.html index 43b571f49e02515..89351b6fd5c169e 100644 --- a/files/en-us/web/api/mediasource/readystate/index.html +++ b/files/en-us/web/api/mediasource/readystate/index.html @@ -79,7 +79,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaSource.readyState")}}

          diff --git a/files/en-us/web/api/mediasource/removesourcebuffer/index.html b/files/en-us/web/api/mediasource/removesourcebuffer/index.html index 11b0a7caa9f3239..e3995f79b63c816 100644 --- a/files/en-us/web/api/mediasource/removesourcebuffer/index.html +++ b/files/en-us/web/api/mediasource/removesourcebuffer/index.html @@ -79,7 +79,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaSource.removeSourceBuffer")}}

          diff --git a/files/en-us/web/api/mediasource/setliveseekablerange/index.html b/files/en-us/web/api/mediasource/setliveseekablerange/index.html index 78d66574a556026..25cce7cd5213237 100644 --- a/files/en-us/web/api/mediasource/setliveseekablerange/index.html +++ b/files/en-us/web/api/mediasource/setliveseekablerange/index.html @@ -57,6 +57,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaSource.setLiveSeekableRange")}}

          diff --git a/files/en-us/web/api/mediasource/sourcebuffers/index.html b/files/en-us/web/api/mediasource/sourcebuffers/index.html index 4501c28dfa36f9e..edcbd0dbff6488d 100644 --- a/files/en-us/web/api/mediasource/sourcebuffers/index.html +++ b/files/en-us/web/api/mediasource/sourcebuffers/index.html @@ -67,7 +67,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaSource.sourceBuffers")}}

          diff --git a/files/en-us/web/api/mediastream/active/index.html b/files/en-us/web/api/mediastream/active/index.html index 397d905d38540f4..6aaaeea1beee781 100644 --- a/files/en-us/web/api/mediastream/active/index.html +++ b/files/en-us/web/api/mediastream/active/index.html @@ -55,6 +55,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStream.active")}}

          diff --git a/files/en-us/web/api/mediastream/addtrack/index.html b/files/en-us/web/api/mediastream/addtrack/index.html index e6e4a897fc37d85..e13b4db05fcdce2 100644 --- a/files/en-us/web/api/mediastream/addtrack/index.html +++ b/files/en-us/web/api/mediastream/addtrack/index.html @@ -58,8 +58,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStream.addTrack")}}

          See also

          diff --git a/files/en-us/web/api/mediastream/addtrack_event/index.html b/files/en-us/web/api/mediastream/addtrack_event/index.html index 710577e86b00980..2b789d547ea5464 100644 --- a/files/en-us/web/api/mediastream/addtrack_event/index.html +++ b/files/en-us/web/api/mediastream/addtrack_event/index.html @@ -64,8 +64,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStream.addtrack_event")}}

          See also

          diff --git a/files/en-us/web/api/mediastream/clone/index.html b/files/en-us/web/api/mediastream/clone/index.html index 7668fb239b1f476..a296cb22c1388e6 100644 --- a/files/en-us/web/api/mediastream/clone/index.html +++ b/files/en-us/web/api/mediastream/clone/index.html @@ -45,6 +45,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStream.clone")}}

          diff --git a/files/en-us/web/api/mediastream/ended/index.html b/files/en-us/web/api/mediastream/ended/index.html index ea208c8341fccb5..0ce50d018ea81fb 100644 --- a/files/en-us/web/api/mediastream/ended/index.html +++ b/files/en-us/web/api/mediastream/ended/index.html @@ -32,6 +32,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStream.ended")}}

          diff --git a/files/en-us/web/api/mediastream/gettrackbyid/index.html b/files/en-us/web/api/mediastream/gettrackbyid/index.html index a19c678fd8556ee..8e2c290f8f1276d 100644 --- a/files/en-us/web/api/mediastream/gettrackbyid/index.html +++ b/files/en-us/web/api/mediastream/gettrackbyid/index.html @@ -58,8 +58,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStream.getTrackById")}}

          See also

          diff --git a/files/en-us/web/api/mediastream/getvideotracks/index.html b/files/en-us/web/api/mediastream/getvideotracks/index.html index ffa9681b6a61d4b..eb65907266a4148 100644 --- a/files/en-us/web/api/mediastream/getvideotracks/index.html +++ b/files/en-us/web/api/mediastream/getvideotracks/index.html @@ -73,6 +73,5 @@

          Browser compatibility

          -

          {{Compat("api.MediaStream.getVideoTracks")}}

          diff --git a/files/en-us/web/api/mediastream/id/index.html b/files/en-us/web/api/mediastream/id/index.html index dc995f9e55e552a..8b13436a68dcdc0 100644 --- a/files/en-us/web/api/mediastream/id/index.html +++ b/files/en-us/web/api/mediastream/id/index.html @@ -45,8 +45,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStream.id")}}

          See Also

          diff --git a/files/en-us/web/api/mediastream/index.html b/files/en-us/web/api/mediastream/index.html index f2dda5c08174d42..1ee333248908b27 100644 --- a/files/en-us/web/api/mediastream/index.html +++ b/files/en-us/web/api/mediastream/index.html @@ -125,8 +125,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStream")}}

          See also

          diff --git a/files/en-us/web/api/mediastream/mediastream/index.html b/files/en-us/web/api/mediastream/mediastream/index.html index fc922ed4569d4f8..e65c21add34e97d 100644 --- a/files/en-us/web/api/mediastream/mediastream/index.html +++ b/files/en-us/web/api/mediastream/mediastream/index.html @@ -61,8 +61,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStream.MediaStream")}}

          See also

          diff --git a/files/en-us/web/api/mediastream/onaddtrack/index.html b/files/en-us/web/api/mediastream/onaddtrack/index.html index 954e8c77e619e6f..e1557579c043964 100644 --- a/files/en-us/web/api/mediastream/onaddtrack/index.html +++ b/files/en-us/web/api/mediastream/onaddtrack/index.html @@ -60,7 +60,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaStream.onaddtrack")}}

          diff --git a/files/en-us/web/api/mediastream/onremovetrack/index.html b/files/en-us/web/api/mediastream/onremovetrack/index.html index b6ef11c8f587b3c..770143bb44c7ab6 100644 --- a/files/en-us/web/api/mediastream/onremovetrack/index.html +++ b/files/en-us/web/api/mediastream/onremovetrack/index.html @@ -61,7 +61,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaStream.onremovetrack")}}

          diff --git a/files/en-us/web/api/mediastream/removetrack_event/index.html b/files/en-us/web/api/mediastream/removetrack_event/index.html index 0ea8d8386d2ee74..eb1f2238a2f2af6 100644 --- a/files/en-us/web/api/mediastream/removetrack_event/index.html +++ b/files/en-us/web/api/mediastream/removetrack_event/index.html @@ -64,8 +64,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStream.removetrack_event")}}

          See also

          diff --git a/files/en-us/web/api/mediastream_image_capture_api/index.html b/files/en-us/web/api/mediastream_image_capture_api/index.html index cf3168d72a73e5d..e67dbfdd22b9194 100644 --- a/files/en-us/web/api/mediastream_image_capture_api/index.html +++ b/files/en-us/web/api/mediastream_image_capture_api/index.html @@ -78,8 +78,6 @@

          Browser compatibility

          ImageCapture

          - -

          {{Compat("api.ImageCapture")}}

          PhotoCapabilities

          diff --git a/files/en-us/web/api/mediastream_recording_api/index.html b/files/en-us/web/api/mediastream_recording_api/index.html index cd59a0226e68ac6..11cc3d7f310c691 100644 --- a/files/en-us/web/api/mediastream_recording_api/index.html +++ b/files/en-us/web/api/mediastream_recording_api/index.html @@ -149,8 +149,6 @@

          Browser compatibility

          MediaRecorder

          - -

          {{Compat("api.MediaRecorder")}}

          See also

          diff --git a/files/en-us/web/api/mediastream_recording_api/using_the_mediastream_recording_api/index.html b/files/en-us/web/api/mediastream_recording_api/using_the_mediastream_recording_api/index.html index 4c9d910bc949759..169b4d45c1e11c3 100644 --- a/files/en-us/web/api/mediastream_recording_api/using_the_mediastream_recording_api/index.html +++ b/files/en-us/web/api/mediastream_recording_api/using_the_mediastream_recording_api/index.html @@ -121,7 +121,6 @@

          Basic app setup

          // Success callback .then(function(stream) { - }) // Error callback @@ -261,8 +260,6 @@

          Browser compatibility

          MediaRecorder

          - -

          {{Compat("api.MediaRecorder")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamaudiodestinationnode/index.html b/files/en-us/web/api/mediastreamaudiodestinationnode/index.html index 32e11ffb9bc1364..9d16a097a804bd8 100644 --- a/files/en-us/web/api/mediastreamaudiodestinationnode/index.html +++ b/files/en-us/web/api/mediastreamaudiodestinationnode/index.html @@ -86,7 +86,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaStreamAudioDestinationNode")}}

          diff --git a/files/en-us/web/api/mediastreamaudiodestinationnode/mediastreamaudiodestinationnode/index.html b/files/en-us/web/api/mediastreamaudiodestinationnode/mediastreamaudiodestinationnode/index.html index 363bc7a160648da..5da3cc83a1ca6de 100644 --- a/files/en-us/web/api/mediastreamaudiodestinationnode/mediastreamaudiodestinationnode/index.html +++ b/files/en-us/web/api/mediastreamaudiodestinationnode/mediastreamaudiodestinationnode/index.html @@ -57,6 +57,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamAudioDestinationNode.MediaStreamAudioDestinationNode")}}

          diff --git a/files/en-us/web/api/mediastreamaudiodestinationnode/stream/index.html b/files/en-us/web/api/mediastreamaudiodestinationnode/stream/index.html index 263baffdf102bd5..af872ea35f9a431 100644 --- a/files/en-us/web/api/mediastreamaudiodestinationnode/stream/index.html +++ b/files/en-us/web/api/mediastreamaudiodestinationnode/stream/index.html @@ -54,7 +54,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaStreamAudioDestinationNode.stream")}}

          diff --git a/files/en-us/web/api/mediastreamaudiosourcenode/index.html b/files/en-us/web/api/mediastreamaudiosourcenode/index.html index ed79493be327c45..dbd9e8bdd6885fb 100644 --- a/files/en-us/web/api/mediastreamaudiosourcenode/index.html +++ b/files/en-us/web/api/mediastreamaudiosourcenode/index.html @@ -114,7 +114,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaStreamAudioSourceNode")}}

          diff --git a/files/en-us/web/api/mediastreamaudiosourcenode/mediastream/index.html b/files/en-us/web/api/mediastreamaudiosourcenode/mediastream/index.html index a9e1e0dea5b4f03..905490629ce6344 100644 --- a/files/en-us/web/api/mediastreamaudiosourcenode/mediastream/index.html +++ b/files/en-us/web/api/mediastreamaudiosourcenode/mediastream/index.html @@ -56,6 +56,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamAudioSourceNode.mediaStream")}}

          diff --git a/files/en-us/web/api/mediastreamaudiosourcenode/mediastreamaudiosourcenode/index.html b/files/en-us/web/api/mediastreamaudiosourcenode/mediastreamaudiosourcenode/index.html index e4494a08027030b..d38e0531595ca01 100644 --- a/files/en-us/web/api/mediastreamaudiosourcenode/mediastreamaudiosourcenode/index.html +++ b/files/en-us/web/api/mediastreamaudiosourcenode/mediastreamaudiosourcenode/index.html @@ -93,6 +93,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamAudioSourceNode.MediaStreamAudioSourceNode")}}

          diff --git a/files/en-us/web/api/mediastreamaudiosourceoptions/index.html b/files/en-us/web/api/mediastreamaudiosourceoptions/index.html index 20854cee14cff3c..488a952081e9d2a 100644 --- a/files/en-us/web/api/mediastreamaudiosourceoptions/index.html +++ b/files/en-us/web/api/mediastreamaudiosourceoptions/index.html @@ -46,6 +46,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamAudioSourceOptions")}}

          diff --git a/files/en-us/web/api/mediastreamaudiosourceoptions/mediastream/index.html b/files/en-us/web/api/mediastreamaudiosourceoptions/mediastream/index.html index 956ac7658505abd..8ff22dfebaee962 100644 --- a/files/en-us/web/api/mediastreamaudiosourceoptions/mediastream/index.html +++ b/files/en-us/web/api/mediastreamaudiosourceoptions/mediastream/index.html @@ -54,6 +54,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamAudioSourceOptions.mediaStream")}} 

          diff --git a/files/en-us/web/api/mediastreamconstraints/audio/index.html b/files/en-us/web/api/mediastreamconstraints/audio/index.html index ff5f675c5478b9c..8a89245a039889d 100644 --- a/files/en-us/web/api/mediastreamconstraints/audio/index.html +++ b/files/en-us/web/api/mediastreamconstraints/audio/index.html @@ -20,7 +20,6 @@

          The {{domxref("MediaStreamConstraints")}} dictionary's audio property is used to indicate what kind of audio track, if any, should be included in the {{domxref("MediaStream")}} returned by a call to {{domxref("MediaDevices.getUserMedia", "getUserMedia()")}}.

          -

          To learn more about how constraints work, see Capabilities, constraints, and settings.

          Syntax

          @@ -191,8 +190,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamConstraints.audio")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamconstraints/index.html b/files/en-us/web/api/mediastreamconstraints/index.html index f5f66600e614f8e..35dea8ccf12d0f4 100644 --- a/files/en-us/web/api/mediastreamconstraints/index.html +++ b/files/en-us/web/api/mediastreamconstraints/index.html @@ -44,8 +44,6 @@

          Security

          Browser compatibility

          - -

          {{Compat("api.MediaStreamConstraints")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamconstraints/video/index.html b/files/en-us/web/api/mediastreamconstraints/video/index.html index 9856462a750a5ce..976b4d79068ef42 100644 --- a/files/en-us/web/api/mediastreamconstraints/video/index.html +++ b/files/en-us/web/api/mediastreamconstraints/video/index.html @@ -19,7 +19,6 @@

          The {{domxref("MediaStreamConstraints")}} dictionary's video property is used to indicate what kind of video track, if any, should be included in the {{domxref("MediaStream")}} returned by a call to {{domxref("MediaDevices.getUserMedia", "getUserMedia()")}}.

          -

          To learn more about how constraints work, see Capabilities, constraints, and settings.

          Syntax

          @@ -187,8 +186,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamConstraints.video")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamevent/index.html b/files/en-us/web/api/mediastreamevent/index.html index 2dc1d5d5c5ab79c..dabf9af309d7e74 100644 --- a/files/en-us/web/api/mediastreamevent/index.html +++ b/files/en-us/web/api/mediastreamevent/index.html @@ -43,8 +43,6 @@

          Examples

          Browser compatibility

          - -

          {{Compat("api.MediaStreamEvent")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamevent/mediastreamevent/index.html b/files/en-us/web/api/mediastreamevent/mediastreamevent/index.html index 6235ebe9db8189a..bfd1f2cc95b2c8c 100644 --- a/files/en-us/web/api/mediastreamevent/mediastreamevent/index.html +++ b/files/en-us/web/api/mediastreamevent/mediastreamevent/index.html @@ -40,8 +40,6 @@

          Example

          Browser compatibility

          - -

          {{Compat("api.MediaStreamEvent.MediaStreamEvent")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamevent/stream/index.html b/files/en-us/web/api/mediastreamevent/stream/index.html index e029f2ebf8f245a..06b881ac33bb4ae 100644 --- a/files/en-us/web/api/mediastreamevent/stream/index.html +++ b/files/en-us/web/api/mediastreamevent/stream/index.html @@ -29,8 +29,6 @@

          Example

          Browser compatibility

          - -

          {{Compat("api.MediaStreamEvent.stream")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/applyconstraints/index.html b/files/en-us/web/api/mediastreamtrack/applyconstraints/index.html index bc9bcb7beb383df..d86474bfdf529c5 100644 --- a/files/en-us/web/api/mediastreamtrack/applyconstraints/index.html +++ b/files/en-us/web/api/mediastreamtrack/applyconstraints/index.html @@ -81,8 +81,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.applyConstraints")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/clone/index.html b/files/en-us/web/api/mediastreamtrack/clone/index.html index 12f82d8709142c7..9753cb80e81dc52 100644 --- a/files/en-us/web/api/mediastreamtrack/clone/index.html +++ b/files/en-us/web/api/mediastreamtrack/clone/index.html @@ -41,6 +41,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.clone")}}

          diff --git a/files/en-us/web/api/mediastreamtrack/enabled/index.html b/files/en-us/web/api/mediastreamtrack/enabled/index.html index b405b0749aada27..821f7f009d96ae8 100644 --- a/files/en-us/web/api/mediastreamtrack/enabled/index.html +++ b/files/en-us/web/api/mediastreamtrack/enabled/index.html @@ -79,8 +79,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.enabled")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/ended_event/index.html b/files/en-us/web/api/mediastreamtrack/ended_event/index.html index a057a9e8dbbf851..28af5422d8352a4 100644 --- a/files/en-us/web/api/mediastreamtrack/ended_event/index.html +++ b/files/en-us/web/api/mediastreamtrack/ended_event/index.html @@ -87,8 +87,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.ended_event")}}

          See Also

          diff --git a/files/en-us/web/api/mediastreamtrack/getcapabilities/index.html b/files/en-us/web/api/mediastreamtrack/getcapabilities/index.html index 5f82ffc991fab1c..5403ebd9e03cb5d 100644 --- a/files/en-us/web/api/mediastreamtrack/getcapabilities/index.html +++ b/files/en-us/web/api/mediastreamtrack/getcapabilities/index.html @@ -43,6 +43,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.getCapabilities")}}

          diff --git a/files/en-us/web/api/mediastreamtrack/getconstraints/index.html b/files/en-us/web/api/mediastreamtrack/getconstraints/index.html index 873438e40d2c3d2..f88929d58c3762d 100644 --- a/files/en-us/web/api/mediastreamtrack/getconstraints/index.html +++ b/files/en-us/web/api/mediastreamtrack/getconstraints/index.html @@ -57,6 +57,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.getConstraints")}}

          diff --git a/files/en-us/web/api/mediastreamtrack/getsettings/index.html b/files/en-us/web/api/mediastreamtrack/getsettings/index.html index 1d8ca22ef96411d..5eb082eadd31b92 100644 --- a/files/en-us/web/api/mediastreamtrack/getsettings/index.html +++ b/files/en-us/web/api/mediastreamtrack/getsettings/index.html @@ -44,6 +44,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.getSettings")}}

          diff --git a/files/en-us/web/api/mediastreamtrack/id/index.html b/files/en-us/web/api/mediastreamtrack/id/index.html index f1fa034dc70e56d..15d1a9ee4d1badc 100644 --- a/files/en-us/web/api/mediastreamtrack/id/index.html +++ b/files/en-us/web/api/mediastreamtrack/id/index.html @@ -38,8 +38,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.id")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/index.html b/files/en-us/web/api/mediastreamtrack/index.html index 99457db8190925c..61e029697875e71 100644 --- a/files/en-us/web/api/mediastreamtrack/index.html +++ b/files/en-us/web/api/mediastreamtrack/index.html @@ -118,8 +118,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/kind/index.html b/files/en-us/web/api/mediastreamtrack/kind/index.html index 578b801050e3e1d..5000a599e9f876b 100644 --- a/files/en-us/web/api/mediastreamtrack/kind/index.html +++ b/files/en-us/web/api/mediastreamtrack/kind/index.html @@ -48,8 +48,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.kind")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/label/index.html b/files/en-us/web/api/mediastreamtrack/label/index.html index 69b7cdaa81ad699..6087231fb3dcbf2 100644 --- a/files/en-us/web/api/mediastreamtrack/label/index.html +++ b/files/en-us/web/api/mediastreamtrack/label/index.html @@ -39,8 +39,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.label")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/mute_event/index.html b/files/en-us/web/api/mediastreamtrack/mute_event/index.html index f1e0eea6e017fa5..e6deab6a1ed6659 100644 --- a/files/en-us/web/api/mediastreamtrack/mute_event/index.html +++ b/files/en-us/web/api/mediastreamtrack/mute_event/index.html @@ -90,8 +90,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.mute_event")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/muted/index.html b/files/en-us/web/api/mediastreamtrack/muted/index.html index 541ffeba34b24de..183bd1cd1f03ba1 100644 --- a/files/en-us/web/api/mediastreamtrack/muted/index.html +++ b/files/en-us/web/api/mediastreamtrack/muted/index.html @@ -61,6 +61,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.muted")}}

          diff --git a/files/en-us/web/api/mediastreamtrack/onended/index.html b/files/en-us/web/api/mediastreamtrack/onended/index.html index 263d9e7fec0c9f9..9fe107b9300cb25 100644 --- a/files/en-us/web/api/mediastreamtrack/onended/index.html +++ b/files/en-us/web/api/mediastreamtrack/onended/index.html @@ -55,8 +55,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.onended")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/onmute/index.html b/files/en-us/web/api/mediastreamtrack/onmute/index.html index c351a1d70392d9f..680546835b691e5 100644 --- a/files/en-us/web/api/mediastreamtrack/onmute/index.html +++ b/files/en-us/web/api/mediastreamtrack/onmute/index.html @@ -55,8 +55,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.onmute")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/onoverconstrained/index.html b/files/en-us/web/api/mediastreamtrack/onoverconstrained/index.html index 557ec3a81ae0e9e..de5d7ff1cef4491 100644 --- a/files/en-us/web/api/mediastreamtrack/onoverconstrained/index.html +++ b/files/en-us/web/api/mediastreamtrack/onoverconstrained/index.html @@ -31,8 +31,6 @@

          Example

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.onoverconstrained")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/onunmute/index.html b/files/en-us/web/api/mediastreamtrack/onunmute/index.html index a71d6f58626d319..0ae76cb28641cc3 100644 --- a/files/en-us/web/api/mediastreamtrack/onunmute/index.html +++ b/files/en-us/web/api/mediastreamtrack/onunmute/index.html @@ -58,8 +58,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.onunmute")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/readystate/index.html b/files/en-us/web/api/mediastreamtrack/readystate/index.html index b3e6ae4c73cdd05..5d4069769e687bf 100644 --- a/files/en-us/web/api/mediastreamtrack/readystate/index.html +++ b/files/en-us/web/api/mediastreamtrack/readystate/index.html @@ -48,8 +48,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.readyState")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/remote/index.html b/files/en-us/web/api/mediastreamtrack/remote/index.html index 54b4125ad0c6116..470dc724448b155 100644 --- a/files/en-us/web/api/mediastreamtrack/remote/index.html +++ b/files/en-us/web/api/mediastreamtrack/remote/index.html @@ -19,8 +19,6 @@

          Syntax

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.remote")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/stop/index.html b/files/en-us/web/api/mediastreamtrack/stop/index.html index c1eba7cc11ea945..8e9552247788bf6 100644 --- a/files/en-us/web/api/mediastreamtrack/stop/index.html +++ b/files/en-us/web/api/mediastreamtrack/stop/index.html @@ -70,8 +70,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.stop")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrack/unmute_event/index.html b/files/en-us/web/api/mediastreamtrack/unmute_event/index.html index e7ebaa3766d2b25..1d67f5f87719332 100644 --- a/files/en-us/web/api/mediastreamtrack/unmute_event/index.html +++ b/files/en-us/web/api/mediastreamtrack/unmute_event/index.html @@ -88,8 +88,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrack.unmute_event")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrackaudiosourcenode/index.html b/files/en-us/web/api/mediastreamtrackaudiosourcenode/index.html index e5f31055123fcb5..25afcb75229f91c 100644 --- a/files/en-us/web/api/mediastreamtrackaudiosourcenode/index.html +++ b/files/en-us/web/api/mediastreamtrackaudiosourcenode/index.html @@ -67,7 +67,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaStreamTrackAudioSourceNode")}}

          diff --git a/files/en-us/web/api/mediastreamtrackaudiosourcenode/mediastreamtrackaudiosourcenode/index.html b/files/en-us/web/api/mediastreamtrackaudiosourcenode/mediastreamtrackaudiosourcenode/index.html index 1b46fb4e24143d1..608eb6c30190172 100644 --- a/files/en-us/web/api/mediastreamtrackaudiosourcenode/mediastreamtrackaudiosourcenode/index.html +++ b/files/en-us/web/api/mediastreamtrackaudiosourcenode/mediastreamtrackaudiosourcenode/index.html @@ -97,6 +97,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrackAudioSourceNode.MediaStreamTrackAudioSourceNode")}}

          diff --git a/files/en-us/web/api/mediastreamtrackaudiosourceoptions/index.html b/files/en-us/web/api/mediastreamtrackaudiosourceoptions/index.html index 5cc3ad2dafa00fc..5bbdfd6b266ff09 100644 --- a/files/en-us/web/api/mediastreamtrackaudiosourceoptions/index.html +++ b/files/en-us/web/api/mediastreamtrackaudiosourceoptions/index.html @@ -45,6 +45,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrackAudioSourceOptions")}}

          diff --git a/files/en-us/web/api/mediastreamtrackaudiosourceoptions/mediastreamtrack/index.html b/files/en-us/web/api/mediastreamtrackaudiosourceoptions/mediastreamtrack/index.html index 08233868e9f925d..abf6788d7379280 100644 --- a/files/en-us/web/api/mediastreamtrackaudiosourceoptions/mediastreamtrack/index.html +++ b/files/en-us/web/api/mediastreamtrackaudiosourceoptions/mediastreamtrack/index.html @@ -56,6 +56,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrackAudioSourceOptions.mediaStreamTrack")}} 

          diff --git a/files/en-us/web/api/mediastreamtrackevent/index.html b/files/en-us/web/api/mediastreamtrackevent/index.html index 5b98f344891098d..900afa8e07c0608 100644 --- a/files/en-us/web/api/mediastreamtrackevent/index.html +++ b/files/en-us/web/api/mediastreamtrackevent/index.html @@ -59,8 +59,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrackEvent")}}

          See also

          diff --git a/files/en-us/web/api/mediastreamtrackevent/mediastreamtrackevent/index.html b/files/en-us/web/api/mediastreamtrackevent/mediastreamtrackevent/index.html index 0eac234b6406d00..11263ee7d582721 100644 --- a/files/en-us/web/api/mediastreamtrackevent/mediastreamtrackevent/index.html +++ b/files/en-us/web/api/mediastreamtrackevent/mediastreamtrackevent/index.html @@ -51,8 +51,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaStreamTrackEvent.MediaStreamTrackEvent")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/aspectratio/index.html b/files/en-us/web/api/mediatrackconstraints/aspectratio/index.html index dbcb315b3adf859..c8748d4e68c0c02 100644 --- a/files/en-us/web/api/mediatrackconstraints/aspectratio/index.html +++ b/files/en-us/web/api/mediatrackconstraints/aspectratio/index.html @@ -60,7 +60,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaTrackConstraints.aspectRatio")}}

          diff --git a/files/en-us/web/api/mediatrackconstraints/autogaincontrol/index.html b/files/en-us/web/api/mediatrackconstraints/autogaincontrol/index.html index 8c190321cdd1f48..e4f18fd68df289f 100644 --- a/files/en-us/web/api/mediatrackconstraints/autogaincontrol/index.html +++ b/files/en-us/web/api/mediatrackconstraints/autogaincontrol/index.html @@ -56,8 +56,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.autoGainControl")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/channelcount/index.html b/files/en-us/web/api/mediatrackconstraints/channelcount/index.html index 478fd3841ec1608..a42a9686abd3288 100644 --- a/files/en-us/web/api/mediatrackconstraints/channelcount/index.html +++ b/files/en-us/web/api/mediatrackconstraints/channelcount/index.html @@ -57,8 +57,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.channelCount")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/cursor/index.html b/files/en-us/web/api/mediatrackconstraints/cursor/index.html index 4b0f1f5ec5042da..937347ab5cdd686 100644 --- a/files/en-us/web/api/mediatrackconstraints/cursor/index.html +++ b/files/en-us/web/api/mediatrackconstraints/cursor/index.html @@ -103,8 +103,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.cursor")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/deviceid/index.html b/files/en-us/web/api/mediatrackconstraints/deviceid/index.html index 6a74adc6205dd23..b32db9004699299 100644 --- a/files/en-us/web/api/mediatrackconstraints/deviceid/index.html +++ b/files/en-us/web/api/mediatrackconstraints/deviceid/index.html @@ -66,8 +66,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.deviceId")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/displaysurface/index.html b/files/en-us/web/api/mediatrackconstraints/displaysurface/index.html index 247d3590e90549f..43e3980a3d9f234 100644 --- a/files/en-us/web/api/mediatrackconstraints/displaysurface/index.html +++ b/files/en-us/web/api/mediatrackconstraints/displaysurface/index.html @@ -81,8 +81,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.displaySurface")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/echocancellation/index.html b/files/en-us/web/api/mediatrackconstraints/echocancellation/index.html index 8c7e3a8e0598019..325e7a223be50db 100644 --- a/files/en-us/web/api/mediatrackconstraints/echocancellation/index.html +++ b/files/en-us/web/api/mediatrackconstraints/echocancellation/index.html @@ -57,8 +57,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.echoCancellation")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/facingmode/index.html b/files/en-us/web/api/mediatrackconstraints/facingmode/index.html index d78d1976ad0fdca..cd3dc21f4b315f5 100644 --- a/files/en-us/web/api/mediatrackconstraints/facingmode/index.html +++ b/files/en-us/web/api/mediatrackconstraints/facingmode/index.html @@ -69,8 +69,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.facingMode")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/framerate/index.html b/files/en-us/web/api/mediatrackconstraints/framerate/index.html index 687246e07f1395b..2fe01e8eb2dab36 100644 --- a/files/en-us/web/api/mediatrackconstraints/framerate/index.html +++ b/files/en-us/web/api/mediatrackconstraints/framerate/index.html @@ -58,8 +58,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.frameRate")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/groupid/index.html b/files/en-us/web/api/mediatrackconstraints/groupid/index.html index 425ac39639e4dd6..3837c1db3aebe25 100644 --- a/files/en-us/web/api/mediatrackconstraints/groupid/index.html +++ b/files/en-us/web/api/mediatrackconstraints/groupid/index.html @@ -62,8 +62,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.groupId")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/height/index.html b/files/en-us/web/api/mediatrackconstraints/height/index.html index bf80357d0357008..30a4f6e41ebaa76 100644 --- a/files/en-us/web/api/mediatrackconstraints/height/index.html +++ b/files/en-us/web/api/mediatrackconstraints/height/index.html @@ -55,8 +55,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.height")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/index.html b/files/en-us/web/api/mediatrackconstraints/index.html index 6becbefd27d1829..4356dc1c1a6cf9f 100644 --- a/files/en-us/web/api/mediatrackconstraints/index.html +++ b/files/en-us/web/api/mediatrackconstraints/index.html @@ -172,7 +172,6 @@

          Browser compatibility

          -

          {{Compat("api.MediaTrackConstraints")}}

          diff --git a/files/en-us/web/api/mediatrackconstraints/latency/index.html b/files/en-us/web/api/mediatrackconstraints/latency/index.html index d49f9813f00d69c..34a49600b08c22f 100644 --- a/files/en-us/web/api/mediatrackconstraints/latency/index.html +++ b/files/en-us/web/api/mediatrackconstraints/latency/index.html @@ -64,8 +64,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.latency")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/logicalsurface/index.html b/files/en-us/web/api/mediatrackconstraints/logicalsurface/index.html index 2f1886c2e788f9a..cb944acf215a98f 100644 --- a/files/en-us/web/api/mediatrackconstraints/logicalsurface/index.html +++ b/files/en-us/web/api/mediatrackconstraints/logicalsurface/index.html @@ -70,8 +70,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.logicalSurface")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/noisesuppression/index.html b/files/en-us/web/api/mediatrackconstraints/noisesuppression/index.html index 318e8ef04e67a32..bed38117275b772 100644 --- a/files/en-us/web/api/mediatrackconstraints/noisesuppression/index.html +++ b/files/en-us/web/api/mediatrackconstraints/noisesuppression/index.html @@ -56,8 +56,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.noiseSuppression")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/samplerate/index.html b/files/en-us/web/api/mediatrackconstraints/samplerate/index.html index 9e8df3ef75c682f..3948e90f6e57f5e 100644 --- a/files/en-us/web/api/mediatrackconstraints/samplerate/index.html +++ b/files/en-us/web/api/mediatrackconstraints/samplerate/index.html @@ -56,8 +56,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.sampleRate")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/samplesize/index.html b/files/en-us/web/api/mediatrackconstraints/samplesize/index.html index 521d9e278842b19..6748b1f4c96fa14 100644 --- a/files/en-us/web/api/mediatrackconstraints/samplesize/index.html +++ b/files/en-us/web/api/mediatrackconstraints/samplesize/index.html @@ -59,8 +59,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.sampleSize")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/volume/index.html b/files/en-us/web/api/mediatrackconstraints/volume/index.html index 8dbd19e7d8ea3ec..9e3b24dfae26b0b 100644 --- a/files/en-us/web/api/mediatrackconstraints/volume/index.html +++ b/files/en-us/web/api/mediatrackconstraints/volume/index.html @@ -42,8 +42,6 @@

          Example

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.volume")}}

          See also

          diff --git a/files/en-us/web/api/mediatrackconstraints/width/index.html b/files/en-us/web/api/mediatrackconstraints/width/index.html index b35ed46dc0e426e..2f4132898f28649 100644 --- a/files/en-us/web/api/mediatrackconstraints/width/index.html +++ b/files/en-us/web/api/mediatrackconstraints/width/index.html @@ -55,8 +55,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackConstraints.width")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/aspectratio/index.html b/files/en-us/web/api/mediatracksettings/aspectratio/index.html index adc15eb5de48b2e..cd1cf529b0eec93 100644 --- a/files/en-us/web/api/mediatracksettings/aspectratio/index.html +++ b/files/en-us/web/api/mediatracksettings/aspectratio/index.html @@ -54,8 +54,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.aspectRatio")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/autogaincontrol/index.html b/files/en-us/web/api/mediatracksettings/autogaincontrol/index.html index 48ee456777a01ac..c298c9f625c4f51 100644 --- a/files/en-us/web/api/mediatracksettings/autogaincontrol/index.html +++ b/files/en-us/web/api/mediatracksettings/autogaincontrol/index.html @@ -54,8 +54,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.autoGainControl")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/channelcount/index.html b/files/en-us/web/api/mediatracksettings/channelcount/index.html index 6f0239a6dd4aa94..3e2a3a7663dc569 100644 --- a/files/en-us/web/api/mediatracksettings/channelcount/index.html +++ b/files/en-us/web/api/mediatracksettings/channelcount/index.html @@ -54,8 +54,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.channelCount")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/cursor/index.html b/files/en-us/web/api/mediatracksettings/cursor/index.html index de6855195f6d789..9f5f8f26126184e 100644 --- a/files/en-us/web/api/mediatracksettings/cursor/index.html +++ b/files/en-us/web/api/mediatracksettings/cursor/index.html @@ -58,8 +58,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.cursor")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/deviceid/index.html b/files/en-us/web/api/mediatracksettings/deviceid/index.html index ef09e93056c3c68..c6feb19a585fb55 100644 --- a/files/en-us/web/api/mediatracksettings/deviceid/index.html +++ b/files/en-us/web/api/mediatracksettings/deviceid/index.html @@ -63,8 +63,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.deviceId")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/displaysurface/index.html b/files/en-us/web/api/mediatracksettings/displaysurface/index.html index 5e3c4f2f0b3525b..fc7984cae9f47a1 100644 --- a/files/en-us/web/api/mediatracksettings/displaysurface/index.html +++ b/files/en-us/web/api/mediatracksettings/displaysurface/index.html @@ -64,8 +64,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.displaySurface")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/echocancellation/index.html b/files/en-us/web/api/mediatracksettings/echocancellation/index.html index 1eaafa0e15b7ede..57361be5c993d47 100644 --- a/files/en-us/web/api/mediatracksettings/echocancellation/index.html +++ b/files/en-us/web/api/mediatracksettings/echocancellation/index.html @@ -57,8 +57,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.echoCancellation")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/facingmode/index.html b/files/en-us/web/api/mediatracksettings/facingmode/index.html index f8d61234ef26af4..2c4b5dcdbb427e6 100644 --- a/files/en-us/web/api/mediatracksettings/facingmode/index.html +++ b/files/en-us/web/api/mediatracksettings/facingmode/index.html @@ -71,8 +71,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.facingMode")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/framerate/index.html b/files/en-us/web/api/mediatracksettings/framerate/index.html index d806b781d643fc4..3163f2b13c91885 100644 --- a/files/en-us/web/api/mediatracksettings/framerate/index.html +++ b/files/en-us/web/api/mediatracksettings/framerate/index.html @@ -54,8 +54,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.frameRate")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/groupid/index.html b/files/en-us/web/api/mediatracksettings/groupid/index.html index e50d1c83a0fee84..32402f139f8d019 100644 --- a/files/en-us/web/api/mediatracksettings/groupid/index.html +++ b/files/en-us/web/api/mediatracksettings/groupid/index.html @@ -61,8 +61,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.groupId")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/height/index.html b/files/en-us/web/api/mediatracksettings/height/index.html index 36c4d83ca372292..c333cfddb3b312b 100644 --- a/files/en-us/web/api/mediatracksettings/height/index.html +++ b/files/en-us/web/api/mediatracksettings/height/index.html @@ -54,8 +54,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.height")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/index.html b/files/en-us/web/api/mediatracksettings/index.html index 90eccea16253bb7..ec00f349146369d 100644 --- a/files/en-us/web/api/mediatracksettings/index.html +++ b/files/en-us/web/api/mediatracksettings/index.html @@ -149,8 +149,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/latency/index.html b/files/en-us/web/api/mediatracksettings/latency/index.html index f1b67f8a3e5b190..32d95008687c2d6 100644 --- a/files/en-us/web/api/mediatracksettings/latency/index.html +++ b/files/en-us/web/api/mediatracksettings/latency/index.html @@ -58,8 +58,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.latency")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/logicalsurface/index.html b/files/en-us/web/api/mediatracksettings/logicalsurface/index.html index a9916c4b8a764cb..a738952e03047fa 100644 --- a/files/en-us/web/api/mediatracksettings/logicalsurface/index.html +++ b/files/en-us/web/api/mediatracksettings/logicalsurface/index.html @@ -56,8 +56,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.logicalSurface")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/noisesuppression/index.html b/files/en-us/web/api/mediatracksettings/noisesuppression/index.html index cd09053e8fa8e26..9cb7f9bde155108 100644 --- a/files/en-us/web/api/mediatracksettings/noisesuppression/index.html +++ b/files/en-us/web/api/mediatracksettings/noisesuppression/index.html @@ -54,8 +54,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.noiseSuppression")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/samplerate/index.html b/files/en-us/web/api/mediatracksettings/samplerate/index.html index 909db814ae87bba..14f82d35a884874 100644 --- a/files/en-us/web/api/mediatracksettings/samplerate/index.html +++ b/files/en-us/web/api/mediatracksettings/samplerate/index.html @@ -54,8 +54,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.sampleRate")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/samplesize/index.html b/files/en-us/web/api/mediatracksettings/samplesize/index.html index 9725e6684dedba2..220a8f0f1100604 100644 --- a/files/en-us/web/api/mediatracksettings/samplesize/index.html +++ b/files/en-us/web/api/mediatracksettings/samplesize/index.html @@ -56,8 +56,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.sampleSize")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/volume/index.html b/files/en-us/web/api/mediatracksettings/volume/index.html index cc86f97746cf01d..d82f53db0f33bf3 100644 --- a/files/en-us/web/api/mediatracksettings/volume/index.html +++ b/files/en-us/web/api/mediatracksettings/volume/index.html @@ -34,8 +34,6 @@

          Example

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.volume")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksettings/width/index.html b/files/en-us/web/api/mediatracksettings/width/index.html index 52f3e5257667a2f..b01880dfefa7f6f 100644 --- a/files/en-us/web/api/mediatracksettings/width/index.html +++ b/files/en-us/web/api/mediatracksettings/width/index.html @@ -54,8 +54,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSettings.width")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/aspectratio/index.html b/files/en-us/web/api/mediatracksupportedconstraints/aspectratio/index.html index abd4f2de63e06e2..63c40462ff427a6 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/aspectratio/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/aspectratio/index.html @@ -78,8 +78,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.aspectRatio")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/autogaincontrol/index.html b/files/en-us/web/api/mediatracksupportedconstraints/autogaincontrol/index.html index 05074a504cb49a6..e986b310ed72262 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/autogaincontrol/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/autogaincontrol/index.html @@ -84,8 +84,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.autoGainControl")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/channelcount/index.html b/files/en-us/web/api/mediatracksupportedconstraints/channelcount/index.html index af3df71e0a0455c..5a7a712f57562ae 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/channelcount/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/channelcount/index.html @@ -78,8 +78,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.channelCount")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/cursor/index.html b/files/en-us/web/api/mediatracksupportedconstraints/cursor/index.html index 0d1394d7d2b12b8..dc149bf1325d98c 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/cursor/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/cursor/index.html @@ -77,8 +77,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.cursor")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/deviceid/index.html b/files/en-us/web/api/mediatracksupportedconstraints/deviceid/index.html index c1c2b6b4e2f9cf0..ff372e915d14a05 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/deviceid/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/deviceid/index.html @@ -78,8 +78,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.deviceId")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/displaysurface/index.html b/files/en-us/web/api/mediatracksupportedconstraints/displaysurface/index.html index bbc18d830e6f0ee..60306b3bdc70879 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/displaysurface/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/displaysurface/index.html @@ -76,8 +76,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.displaySurface")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/echocancellation/index.html b/files/en-us/web/api/mediatracksupportedconstraints/echocancellation/index.html index e077e768f3ff33e..03e938b5fc56abc 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/echocancellation/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/echocancellation/index.html @@ -77,8 +77,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.echoCancellation")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/facingmode/index.html b/files/en-us/web/api/mediatracksupportedconstraints/facingmode/index.html index 86cbacd8937266f..4faf6c493a31440 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/facingmode/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/facingmode/index.html @@ -77,8 +77,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.facingMode")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/framerate/index.html b/files/en-us/web/api/mediatracksupportedconstraints/framerate/index.html index 8a94c06e5f622a3..9da5e1055529a88 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/framerate/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/framerate/index.html @@ -92,8 +92,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.frameRate")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/groupid/index.html b/files/en-us/web/api/mediatracksupportedconstraints/groupid/index.html index 0667d73f4ca454d..0c9e9eb626f7613 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/groupid/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/groupid/index.html @@ -77,8 +77,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.groupId")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/height/index.html b/files/en-us/web/api/mediatracksupportedconstraints/height/index.html index 7ee746aa2bcf128..95ae976869a9b9e 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/height/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/height/index.html @@ -77,8 +77,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.height")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/index.html b/files/en-us/web/api/mediatracksupportedconstraints/index.html index b81893a1ae33700..b70d90c408e5fc1 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/index.html @@ -83,8 +83,6 @@

          Properties specific to shar

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/latency/index.html b/files/en-us/web/api/mediatracksupportedconstraints/latency/index.html index 7426e673ec18256..2236b6bd024a28e 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/latency/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/latency/index.html @@ -78,8 +78,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.latency")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/logicalsurface/index.html b/files/en-us/web/api/mediatracksupportedconstraints/logicalsurface/index.html index dc785e5242effec..35f65e621798155 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/logicalsurface/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/logicalsurface/index.html @@ -74,8 +74,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.logicalSurface")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/noisesuppression/index.html b/files/en-us/web/api/mediatracksupportedconstraints/noisesuppression/index.html index 91e3a946f0c061c..60b28a71d939028 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/noisesuppression/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/noisesuppression/index.html @@ -81,8 +81,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.noiseSuppression")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/samplerate/index.html b/files/en-us/web/api/mediatracksupportedconstraints/samplerate/index.html index d60553be3a67f36..bf83b289a2a832f 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/samplerate/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/samplerate/index.html @@ -77,8 +77,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.sampleRate")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/samplesize/index.html b/files/en-us/web/api/mediatracksupportedconstraints/samplesize/index.html index 97bf7ffe91c056b..155359ad1a529a4 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/samplesize/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/samplesize/index.html @@ -77,8 +77,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.sampleSize")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/volume/index.html b/files/en-us/web/api/mediatracksupportedconstraints/volume/index.html index 8638b95cb220238..fd006ec6f0daeff 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/volume/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/volume/index.html @@ -58,8 +58,6 @@

          Result

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.volume")}}

          See also

          diff --git a/files/en-us/web/api/mediatracksupportedconstraints/width/index.html b/files/en-us/web/api/mediatracksupportedconstraints/width/index.html index bf3957082f4492d..7fd25f8129f5fa1 100644 --- a/files/en-us/web/api/mediatracksupportedconstraints/width/index.html +++ b/files/en-us/web/api/mediatracksupportedconstraints/width/index.html @@ -66,8 +66,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MediaTrackSupportedConstraints.width")}}

          See also

          diff --git a/files/en-us/web/api/merchantvalidationevent/complete/index.html b/files/en-us/web/api/merchantvalidationevent/complete/index.html index 9e95e2571731993..be1788aaef8ac87 100644 --- a/files/en-us/web/api/merchantvalidationevent/complete/index.html +++ b/files/en-us/web/api/merchantvalidationevent/complete/index.html @@ -64,7 +64,6 @@

          Browser compatibility

          -

          {{Compat("api.MerchantValidationEvent.complete")}}

          diff --git a/files/en-us/web/api/merchantvalidationevent/index.html b/files/en-us/web/api/merchantvalidationevent/index.html index 228ab8121c2fb6b..81a6d457bfd6dd7 100644 --- a/files/en-us/web/api/merchantvalidationevent/index.html +++ b/files/en-us/web/api/merchantvalidationevent/index.html @@ -48,6 +48,5 @@

          Browser compatibility

          -

          {{Compat("api.MerchantValidationEvent")}}

          diff --git a/files/en-us/web/api/merchantvalidationevent/merchantvalidationevent/index.html b/files/en-us/web/api/merchantvalidationevent/merchantvalidationevent/index.html index c35dfd084aeb015..09b3175b9f65fea 100644 --- a/files/en-us/web/api/merchantvalidationevent/merchantvalidationevent/index.html +++ b/files/en-us/web/api/merchantvalidationevent/merchantvalidationevent/index.html @@ -57,7 +57,6 @@

          Browser compatibility

          -

          {{Compat("api.MerchantValidationEvent.MerchantValidationEvent")}}

          diff --git a/files/en-us/web/api/merchantvalidationevent/methodname/index.html b/files/en-us/web/api/merchantvalidationevent/methodname/index.html index 8aa34f9705a77b4..74a26ae99b29492 100644 --- a/files/en-us/web/api/merchantvalidationevent/methodname/index.html +++ b/files/en-us/web/api/merchantvalidationevent/methodname/index.html @@ -34,7 +34,6 @@

          Browser compatibility

          -

          {{Compat("api.MerchantValidationEvent.methodName")}}

          diff --git a/files/en-us/web/api/merchantvalidationevent/validationurl/index.html b/files/en-us/web/api/merchantvalidationevent/validationurl/index.html index c5e371b037f3cc9..918f253a5ca3481 100644 --- a/files/en-us/web/api/merchantvalidationevent/validationurl/index.html +++ b/files/en-us/web/api/merchantvalidationevent/validationurl/index.html @@ -35,7 +35,6 @@

          Browser compatibility

          -

          {{Compat("api.MerchantValidationEvent.validationURL")}}

          diff --git a/files/en-us/web/api/messagechannel/index.html b/files/en-us/web/api/messagechannel/index.html index f1dea9a63fc4603..0549c80d812b3b0 100644 --- a/files/en-us/web/api/messagechannel/index.html +++ b/files/en-us/web/api/messagechannel/index.html @@ -56,7 +56,6 @@

          Example

          iframe.contentWindow.postMessage('Hello from the main page!', '*', [channel.port2]); } - // Handle messages received on port1 function onMessage(e) { output.innerHTML = e.data; @@ -86,7 +85,6 @@

          Browser compatibility

          -

          {{Compat("api.MessageChannel")}}

          diff --git a/files/en-us/web/api/messagechannel/messagechannel/index.html b/files/en-us/web/api/messagechannel/messagechannel/index.html index 2b72b61d092eab1..0e36eb8427b5985 100644 --- a/files/en-us/web/api/messagechannel/messagechannel/index.html +++ b/files/en-us/web/api/messagechannel/messagechannel/index.html @@ -66,7 +66,6 @@

          Browser compatibility

          -

          {{Compat("api.MessageChannel.MessageChannel")}}

          diff --git a/files/en-us/web/api/messagechannel/port1/index.html b/files/en-us/web/api/messagechannel/port1/index.html index 8cdcd05c7b6b31c..44b9c29cc009c0c 100644 --- a/files/en-us/web/api/messagechannel/port1/index.html +++ b/files/en-us/web/api/messagechannel/port1/index.html @@ -69,7 +69,6 @@

          Browser compatibility

          -

          {{Compat("api.MessageChannel.port1")}}

          diff --git a/files/en-us/web/api/messagechannel/port2/index.html b/files/en-us/web/api/messagechannel/port2/index.html index 86f6d4a06fe5fc9..9f3b87b0a094b06 100644 --- a/files/en-us/web/api/messagechannel/port2/index.html +++ b/files/en-us/web/api/messagechannel/port2/index.html @@ -68,7 +68,6 @@

          Browser compatibility

          -

          {{Compat("api.MessageChannel.port2")}}

          diff --git a/files/en-us/web/api/messageevent/data/index.html b/files/en-us/web/api/messageevent/data/index.html index 53f78bfaf098923..9254dfb132a7f53 100644 --- a/files/en-us/web/api/messageevent/data/index.html +++ b/files/en-us/web/api/messageevent/data/index.html @@ -49,8 +49,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MessageEvent.data")}}

          See also

          diff --git a/files/en-us/web/api/messageevent/index.html b/files/en-us/web/api/messageevent/index.html index 412593ed933e11b..fe8dd7c9248fb1b 100644 --- a/files/en-us/web/api/messageevent/index.html +++ b/files/en-us/web/api/messageevent/index.html @@ -127,8 +127,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MessageEvent")}}

          See also

          diff --git a/files/en-us/web/api/messageevent/lasteventid/index.html b/files/en-us/web/api/messageevent/lasteventid/index.html index aac42dadaa1a394..8b28a8ebb7021f1 100644 --- a/files/en-us/web/api/messageevent/lasteventid/index.html +++ b/files/en-us/web/api/messageevent/lasteventid/index.html @@ -50,8 +50,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MessageEvent.lastEventId")}}

          See also

          diff --git a/files/en-us/web/api/messageevent/messageevent/index.html b/files/en-us/web/api/messageevent/messageevent/index.html index ee6208d28f75e89..ac467aba97639a6 100644 --- a/files/en-us/web/api/messageevent/messageevent/index.html +++ b/files/en-us/web/api/messageevent/messageevent/index.html @@ -64,8 +64,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MessageEvent.MessageEvent")}}

          See also

          diff --git a/files/en-us/web/api/messageevent/origin/index.html b/files/en-us/web/api/messageevent/origin/index.html index ed740c7d4ef3c7c..ecfea97008b3174 100644 --- a/files/en-us/web/api/messageevent/origin/index.html +++ b/files/en-us/web/api/messageevent/origin/index.html @@ -50,8 +50,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MessageEvent.origin")}}

          See also

          diff --git a/files/en-us/web/api/messageevent/ports/index.html b/files/en-us/web/api/messageevent/ports/index.html index a7e801a913f1b56..95bf7085450c583 100644 --- a/files/en-us/web/api/messageevent/ports/index.html +++ b/files/en-us/web/api/messageevent/ports/index.html @@ -54,8 +54,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MessageEvent.ports")}}

          See also

          diff --git a/files/en-us/web/api/messageevent/source/index.html b/files/en-us/web/api/messageevent/source/index.html index 1ddfeff1e2f59af..62450bef0d21e39 100644 --- a/files/en-us/web/api/messageevent/source/index.html +++ b/files/en-us/web/api/messageevent/source/index.html @@ -50,8 +50,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MessageEvent.source")}}

          See also

          diff --git a/files/en-us/web/api/messageport/close/index.html b/files/en-us/web/api/messageport/close/index.html index f86db0375303e37..be52bd432c9348d 100644 --- a/files/en-us/web/api/messageport/close/index.html +++ b/files/en-us/web/api/messageport/close/index.html @@ -65,7 +65,6 @@

          Browser compatibility

          -

          {{Compat("api.MessagePort.close")}}

          diff --git a/files/en-us/web/api/messageport/index.html b/files/en-us/web/api/messageport/index.html index dcce1592c0593e4..c6e5c1f8335c4c0 100644 --- a/files/en-us/web/api/messageport/index.html +++ b/files/en-us/web/api/messageport/index.html @@ -73,7 +73,6 @@

          Example

          iframe.contentWindow.postMessage('Hello from the main page!', '*', [channel.port2]); } - // Handle messages received on port1 function onMessage(e) { output.innerHTML = e.data; @@ -103,7 +102,6 @@

          Browser compatibility

          -

          {{Compat("api.MessagePort")}}

          diff --git a/files/en-us/web/api/messageport/message_event/index.html b/files/en-us/web/api/messageport/message_event/index.html index a7eb16982831483..9fd443eca462506 100644 --- a/files/en-us/web/api/messageport/message_event/index.html +++ b/files/en-us/web/api/messageport/message_event/index.html @@ -86,8 +86,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MessagePort.message_event")}}

          See also

          diff --git a/files/en-us/web/api/messageport/messageerror_event/index.html b/files/en-us/web/api/messageport/messageerror_event/index.html index faf6b9a5d77dd1e..fc9a131e230e96d 100644 --- a/files/en-us/web/api/messageport/messageerror_event/index.html +++ b/files/en-us/web/api/messageport/messageerror_event/index.html @@ -95,8 +95,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("api.MessagePort.messageerror_event")}}

          See also

          diff --git a/files/en-us/web/api/messageport/onmessage/index.html b/files/en-us/web/api/messageport/onmessage/index.html index 8567052d4f63a8d..1d75b988d84ee35 100644 --- a/files/en-us/web/api/messageport/onmessage/index.html +++ b/files/en-us/web/api/messageport/onmessage/index.html @@ -63,7 +63,6 @@

          Browser compatibility

          -

          {{Compat("api.MessagePort.onmessage")}}

          diff --git a/files/en-us/web/api/messageport/onmessageerror/index.html b/files/en-us/web/api/messageport/onmessageerror/index.html index 59cee6c744bfb3f..d8123782bd4e435 100644 --- a/files/en-us/web/api/messageport/onmessageerror/index.html +++ b/files/en-us/web/api/messageport/onmessageerror/index.html @@ -41,7 +41,6 @@

          Browser compatibility

          -

          {{Compat("api.MessagePort.onmessageerror")}}

          diff --git a/files/en-us/web/api/messageport/postmessage/index.html b/files/en-us/web/api/messageport/postmessage/index.html index af973fb5f66bb0d..f04270a43c3e269 100644 --- a/files/en-us/web/api/messageport/postmessage/index.html +++ b/files/en-us/web/api/messageport/postmessage/index.html @@ -76,7 +76,6 @@

          Browser compatibility

          -

          {{Compat("api.MessagePort.postMessage")}}

          diff --git a/files/en-us/web/api/messageport/start/index.html b/files/en-us/web/api/messageport/start/index.html index f5c52090185eee0..3b27541daadc512 100644 --- a/files/en-us/web/api/messageport/start/index.html +++ b/files/en-us/web/api/messageport/start/index.html @@ -67,7 +67,6 @@

          Browser compatibility

          -

          {{Compat("api.MessagePort.start")}}

          diff --git a/files/en-us/web/api/metadata/index.html b/files/en-us/web/api/metadata/index.html index 21be51115a724d3..b15832c2852155b 100644 --- a/files/en-us/web/api/metadata/index.html +++ b/files/en-us/web/api/metadata/index.html @@ -57,7 +57,6 @@

          Browser compatibility

          -

          {{Compat("api.Metadata")}}

          diff --git a/files/en-us/web/api/metadata/modificationtime/index.html b/files/en-us/web/api/metadata/modificationtime/index.html index 17649470ade1b5a..58b3ec338404c95 100644 --- a/files/en-us/web/api/metadata/modificationtime/index.html +++ b/files/en-us/web/api/metadata/modificationtime/index.html @@ -45,8 +45,6 @@

          Example

          Browser compatibility

          - -

          {{Compat("api.Metadata.modificationTime")}}

          See also

          diff --git a/files/en-us/web/api/metadata/size/index.html b/files/en-us/web/api/metadata/size/index.html index 1df6666b3752645..cfa6bb2045e1ac0 100644 --- a/files/en-us/web/api/metadata/size/index.html +++ b/files/en-us/web/api/metadata/size/index.html @@ -44,8 +44,6 @@

          Example

          Browser compatibility

          - -

          {{Compat("api.Metadata.size")}}

          See also

          diff --git a/files/en-us/web/api/midiaccess/index.html b/files/en-us/web/api/midiaccess/index.html index b1890d5890beb4e..ea9f3658ee9a1d8 100644 --- a/files/en-us/web/api/midiaccess/index.html +++ b/files/en-us/web/api/midiaccess/index.html @@ -66,6 +66,5 @@

          Browser compatibility

          -

          {{Compat("api.MIDIAccess")}}

          diff --git a/files/en-us/web/api/midiconnectionevent/index.html b/files/en-us/web/api/midiconnectionevent/index.html index f99b4435a864df2..233d9fa4e607054 100644 --- a/files/en-us/web/api/midiconnectionevent/index.html +++ b/files/en-us/web/api/midiconnectionevent/index.html @@ -30,8 +30,6 @@

          Properties

          Examples

          - -

          Specifications

    @@ -53,6 +51,5 @@

    Browser compatibility

    -

    {{Compat("api.MIDIConnectionEvent")}}

    diff --git a/files/en-us/web/api/midiinput/index.html b/files/en-us/web/api/midiinput/index.html index d43f5e38e3667ba..7f3eaf479cd0229 100644 --- a/files/en-us/web/api/midiinput/index.html +++ b/files/en-us/web/api/midiinput/index.html @@ -46,6 +46,5 @@

    Browser compatibility

    -

    {{Compat("api.MIDIInput")}}

    diff --git a/files/en-us/web/api/midiinputmap/index.html b/files/en-us/web/api/midiinputmap/index.html index 7f05d9aaff64dba..d60bf0d63b56e85 100644 --- a/files/en-us/web/api/midiinputmap/index.html +++ b/files/en-us/web/api/midiinputmap/index.html @@ -29,6 +29,5 @@

    Browser compatibility

    -

    {{Compat("api.MIDIInputMap")}}

    diff --git a/files/en-us/web/api/midioutputmap/index.html b/files/en-us/web/api/midioutputmap/index.html index 33c43015f170e5c..4ff095f27171f04 100644 --- a/files/en-us/web/api/midioutputmap/index.html +++ b/files/en-us/web/api/midioutputmap/index.html @@ -29,6 +29,5 @@

    Browser compatibility

    -

    {{Compat("api.MIDIOutputMap")}}

    diff --git a/files/en-us/web/api/mimetype/index.html b/files/en-us/web/api/mimetype/index.html index ad069f689c3fde9..7aae6fe4fdf3cf5 100644 --- a/files/en-us/web/api/mimetype/index.html +++ b/files/en-us/web/api/mimetype/index.html @@ -45,6 +45,5 @@

    Browser compatibility

    -

    {{Compat("api.MimeType")}}

    diff --git a/files/en-us/web/api/mimetypearray/index.html b/files/en-us/web/api/mimetypearray/index.html index b6870e8b5b78342..cff5d394ed1d5bb 100644 --- a/files/en-us/web/api/mimetypearray/index.html +++ b/files/en-us/web/api/mimetypearray/index.html @@ -63,6 +63,5 @@

    Browser compatibility

    -

    {{Compat("api.MimeTypeArray")}}

    diff --git a/files/en-us/web/api/mouseevent/altkey/index.html b/files/en-us/web/api/mouseevent/altkey/index.html index 6712ca0393c848d..eca843ee20ff47c 100644 --- a/files/en-us/web/api/mouseevent/altkey/index.html +++ b/files/en-us/web/api/mouseevent/altkey/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.altKey")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/button/index.html b/files/en-us/web/api/mouseevent/button/index.html index 7a5a69905f15d1f..df29a697d6cae6b 100644 --- a/files/en-us/web/api/mouseevent/button/index.html +++ b/files/en-us/web/api/mouseevent/button/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.button")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/buttons/index.html b/files/en-us/web/api/mouseevent/buttons/index.html index 91f3a479eadbc50..df6cc728eb9fe74 100644 --- a/files/en-us/web/api/mouseevent/buttons/index.html +++ b/files/en-us/web/api/mouseevent/buttons/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.buttons")}}

    Firefox notes

    diff --git a/files/en-us/web/api/mouseevent/clientx/index.html b/files/en-us/web/api/mouseevent/clientx/index.html index 2f6ba111853ef4a..1ac5e84988e6585 100644 --- a/files/en-us/web/api/mouseevent/clientx/index.html +++ b/files/en-us/web/api/mouseevent/clientx/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.clientX")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/clienty/index.html b/files/en-us/web/api/mouseevent/clienty/index.html index a9c900d863004b9..802de449d2f4620 100644 --- a/files/en-us/web/api/mouseevent/clienty/index.html +++ b/files/en-us/web/api/mouseevent/clienty/index.html @@ -78,8 +78,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.clientY")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/ctrlkey/index.html b/files/en-us/web/api/mouseevent/ctrlkey/index.html index 47ce015f6363996..6a4998dd21d64c9 100644 --- a/files/en-us/web/api/mouseevent/ctrlkey/index.html +++ b/files/en-us/web/api/mouseevent/ctrlkey/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.ctrlKey")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/getmodifierstate/index.html b/files/en-us/web/api/mouseevent/getmodifierstate/index.html index 32b724b2a5cc62a..de025762ea7c125 100644 --- a/files/en-us/web/api/mouseevent/getmodifierstate/index.html +++ b/files/en-us/web/api/mouseevent/getmodifierstate/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.getModifierState")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/index.html b/files/en-us/web/api/mouseevent/index.html index 5184bb95de780e7..653ba4e1388fb0b 100644 --- a/files/en-us/web/api/mouseevent/index.html +++ b/files/en-us/web/api/mouseevent/index.html @@ -184,8 +184,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/initmouseevent/index.html b/files/en-us/web/api/mouseevent/initmouseevent/index.html index 757a057511d4eee..379a090b6c0b2c4 100644 --- a/files/en-us/web/api/mouseevent/initmouseevent/index.html +++ b/files/en-us/web/api/mouseevent/initmouseevent/index.html @@ -119,8 +119,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.initMouseEvent")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/metakey/index.html b/files/en-us/web/api/mouseevent/metakey/index.html index bb4845b7fee65a4..24711923186556e 100644 --- a/files/en-us/web/api/mouseevent/metakey/index.html +++ b/files/en-us/web/api/mouseevent/metakey/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.metaKey")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/mouseevent/index.html b/files/en-us/web/api/mouseevent/mouseevent/index.html index c87914742cc5214..c4ed93a7cd821a3 100644 --- a/files/en-us/web/api/mouseevent/mouseevent/index.html +++ b/files/en-us/web/api/mouseevent/mouseevent/index.html @@ -127,8 +127,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.MouseEvent")}}

    Polyfill

    diff --git a/files/en-us/web/api/mouseevent/movementx/index.html b/files/en-us/web/api/mouseevent/movementx/index.html index 23c3a84e313124a..b1d4cdfc28969e3 100644 --- a/files/en-us/web/api/mouseevent/movementx/index.html +++ b/files/en-us/web/api/mouseevent/movementx/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.movementX")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/movementy/index.html b/files/en-us/web/api/mouseevent/movementy/index.html index 49a4307cdd76404..63a1f1df8f9a7f4 100644 --- a/files/en-us/web/api/mouseevent/movementy/index.html +++ b/files/en-us/web/api/mouseevent/movementy/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.movementY")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/offsetx/index.html b/files/en-us/web/api/mouseevent/offsetx/index.html index 21153ef2d8b66ae..4b431b1f2ae4826 100644 --- a/files/en-us/web/api/mouseevent/offsetx/index.html +++ b/files/en-us/web/api/mouseevent/offsetx/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.offsetX")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/offsety/index.html b/files/en-us/web/api/mouseevent/offsety/index.html index b9b2671d9e5cfac..1815cb041811b3f 100644 --- a/files/en-us/web/api/mouseevent/offsety/index.html +++ b/files/en-us/web/api/mouseevent/offsety/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.offsetY")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/pagex/index.html b/files/en-us/web/api/mouseevent/pagex/index.html index 103300c71914a1a..76fecd72bd1c702 100644 --- a/files/en-us/web/api/mouseevent/pagex/index.html +++ b/files/en-us/web/api/mouseevent/pagex/index.html @@ -125,8 +125,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.pageX")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/pagey/index.html b/files/en-us/web/api/mouseevent/pagey/index.html index c43fd6714e90977..47af60c8b70f73b 100644 --- a/files/en-us/web/api/mouseevent/pagey/index.html +++ b/files/en-us/web/api/mouseevent/pagey/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.pageY")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/region/index.html b/files/en-us/web/api/mouseevent/region/index.html index 56c4e1da51b8f7c..15978e3c5550665 100644 --- a/files/en-us/web/api/mouseevent/region/index.html +++ b/files/en-us/web/api/mouseevent/region/index.html @@ -48,8 +48,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.region")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/relatedtarget/index.html b/files/en-us/web/api/mouseevent/relatedtarget/index.html index 607b393d23a2486..cdb8af6713d6197 100644 --- a/files/en-us/web/api/mouseevent/relatedtarget/index.html +++ b/files/en-us/web/api/mouseevent/relatedtarget/index.html @@ -161,8 +161,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.relatedTarget")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/screenx/index.html b/files/en-us/web/api/mouseevent/screenx/index.html index d3d78d957d769c1..3ee13c36989df2d 100644 --- a/files/en-us/web/api/mouseevent/screenx/index.html +++ b/files/en-us/web/api/mouseevent/screenx/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.screenX")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/screeny/index.html b/files/en-us/web/api/mouseevent/screeny/index.html index ed5ed77cf055168..f1800f9cf37df8c 100644 --- a/files/en-us/web/api/mouseevent/screeny/index.html +++ b/files/en-us/web/api/mouseevent/screeny/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.screenY")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/shiftkey/index.html b/files/en-us/web/api/mouseevent/shiftkey/index.html index af4ae5d17cdfc53..c2fd19ea07e1c90 100644 --- a/files/en-us/web/api/mouseevent/shiftkey/index.html +++ b/files/en-us/web/api/mouseevent/shiftkey/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.shiftKey")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/which/index.html b/files/en-us/web/api/mouseevent/which/index.html index bcf0668693489c8..88eae046ca43ac9 100644 --- a/files/en-us/web/api/mouseevent/which/index.html +++ b/files/en-us/web/api/mouseevent/which/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.which")}}

    See also

    diff --git a/files/en-us/web/api/mouseevent/x/index.html b/files/en-us/web/api/mouseevent/x/index.html index 3b22632159ac5ea..a62613d7cad15ae 100644 --- a/files/en-us/web/api/mouseevent/x/index.html +++ b/files/en-us/web/api/mouseevent/x/index.html @@ -31,6 +31,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.x")}}

    diff --git a/files/en-us/web/api/mouseevent/y/index.html b/files/en-us/web/api/mouseevent/y/index.html index 48cb9fdb21b59f0..20139fccf8285f5 100644 --- a/files/en-us/web/api/mouseevent/y/index.html +++ b/files/en-us/web/api/mouseevent/y/index.html @@ -31,6 +31,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.MouseEvent.y")}}

    diff --git a/files/en-us/web/api/mousescrollevent/index.html b/files/en-us/web/api/mousescrollevent/index.html index d2a621ee00cc40d..1b14d61f68710ee 100644 --- a/files/en-us/web/api/mousescrollevent/index.html +++ b/files/en-us/web/api/mousescrollevent/index.html @@ -80,8 +80,6 @@

    Methods

    Browser compatibility

    - -

    {{Compat("api.MouseScrollEvent")}}

    See also

    diff --git a/files/en-us/web/api/mousewheelevent/index.html b/files/en-us/web/api/mousewheelevent/index.html index dddb069f4fecc9c..6a4c5a5d40b2b0a 100644 --- a/files/en-us/web/api/mousewheelevent/index.html +++ b/files/en-us/web/api/mousewheelevent/index.html @@ -47,8 +47,6 @@

    Properties

    Browser compatibility

    - -

    {{Compat("api.MouseWheelEvent")}}

    See also

    diff --git a/files/en-us/web/api/mscandidatewindowupdate/index.html b/files/en-us/web/api/mscandidatewindowupdate/index.html index 07a449ac9465e58..ceca323f021b3ed 100644 --- a/files/en-us/web/api/mscandidatewindowupdate/index.html +++ b/files/en-us/web/api/mscandidatewindowupdate/index.html @@ -60,7 +60,6 @@

    Parameters

    Web applications need only register for this event once per element (the handler will remain valid for the lifetime of the element).

    -

    See also

      diff --git a/files/en-us/web/api/msgestureevent/index.html b/files/en-us/web/api/msgestureevent/index.html index b8361039ad59aa9..b5cf44b274faf71 100644 --- a/files/en-us/web/api/msgestureevent/index.html +++ b/files/en-us/web/api/msgestureevent/index.html @@ -76,8 +76,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.MSGestureEvent")}}

      See also

      diff --git a/files/en-us/web/api/msgetpropertyenabled/index.html b/files/en-us/web/api/msgetpropertyenabled/index.html index bda9abf0c059c58..59673b255b5ce3b 100644 --- a/files/en-us/web/api/msgetpropertyenabled/index.html +++ b/files/en-us/web/api/msgetpropertyenabled/index.html @@ -27,7 +27,6 @@

      Parameters

      The name of the property to enable.

      -

      Return value

      Type: Boolean

      diff --git a/files/en-us/web/api/msrangecollection/index.html b/files/en-us/web/api/msrangecollection/index.html index 5ea1a347903ae7b..d47f028ba72f3d9 100644 --- a/files/en-us/web/api/msrangecollection/index.html +++ b/files/en-us/web/api/msrangecollection/index.html @@ -6,10 +6,8 @@ ---

      {{non-standard_header}}{{APIRef}}

      -

      The MSRangeCollection object is an array of one or more Range objects.

      -

      Remarks

      The MSRangeCollection object does not inherit from any class or interface and does not define any members.

      diff --git a/files/en-us/web/api/msthumbnailclick/index.html b/files/en-us/web/api/msthumbnailclick/index.html index 50f0508b39a1fe3..b575c31b5ff0137 100644 --- a/files/en-us/web/api/msthumbnailclick/index.html +++ b/files/en-us/web/api/msthumbnailclick/index.html @@ -29,7 +29,6 @@

      Syntax

       

      -

      General info

      diff --git a/files/en-us/web/api/mutationevent/index.html b/files/en-us/web/api/mutationevent/index.html index 7ba2f57ec447189..387db17150f9b3c 100644 --- a/files/en-us/web/api/mutationevent/index.html +++ b/files/en-us/web/api/mutationevent/index.html @@ -73,8 +73,6 @@

      Usage

      Browser compatibility

      - -

      {{Compat("api.MutationEvent")}}

      See also

      diff --git a/files/en-us/web/api/mutationobserver/disconnect/index.html b/files/en-us/web/api/mutationobserver/disconnect/index.html index 3244ca32d72593b..a17b7f0e673fa70 100644 --- a/files/en-us/web/api/mutationobserver/disconnect/index.html +++ b/files/en-us/web/api/mutationobserver/disconnect/index.html @@ -85,6 +85,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.MutationObserver.disconnect")}}

      diff --git a/files/en-us/web/api/mutationobserver/index.html b/files/en-us/web/api/mutationobserver/index.html index 052eb289c163cf5..65ca0578be03e9c 100644 --- a/files/en-us/web/api/mutationobserver/index.html +++ b/files/en-us/web/api/mutationobserver/index.html @@ -93,8 +93,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.MutationObserver")}}

      See also

      diff --git a/files/en-us/web/api/mutationobserver/mutationobserver/index.html b/files/en-us/web/api/mutationobserver/mutationobserver/index.html index 0f761a5ecbdc739..1d692509111358e 100644 --- a/files/en-us/web/api/mutationobserver/mutationobserver/index.html +++ b/files/en-us/web/api/mutationobserver/mutationobserver/index.html @@ -118,6 +118,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.MutationObserver.MutationObserver")}}

      diff --git a/files/en-us/web/api/mutationobserver/observe/index.html b/files/en-us/web/api/mutationobserver/observe/index.html index 18f35ceb1754526..6492e788b5aafc1 100644 --- a/files/en-us/web/api/mutationobserver/observe/index.html +++ b/files/en-us/web/api/mutationobserver/observe/index.html @@ -133,6 +133,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.MutationObserver.observe")}}

      diff --git a/files/en-us/web/api/mutationobserver/takerecords/index.html b/files/en-us/web/api/mutationobserver/takerecords/index.html index 8df0cbbfed02c4a..eaa98fa22e2b3cb 100644 --- a/files/en-us/web/api/mutationobserver/takerecords/index.html +++ b/files/en-us/web/api/mutationobserver/takerecords/index.html @@ -86,6 +86,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.MutationObserver.takeRecords")}}

      diff --git a/files/en-us/web/api/mutationobserverinit/attributefilter/index.html b/files/en-us/web/api/mutationobserverinit/attributefilter/index.html index a066070b4650a01..54b107bb45f3e06 100644 --- a/files/en-us/web/api/mutationobserverinit/attributefilter/index.html +++ b/files/en-us/web/api/mutationobserverinit/attributefilter/index.html @@ -92,6 +92,5 @@

      Browser compatibility

      -

      {{Compat("api.MutationObserverInit.attributeFilter")}}

      diff --git a/files/en-us/web/api/mutationobserverinit/attributeoldvalue/index.html b/files/en-us/web/api/mutationobserverinit/attributeoldvalue/index.html index 9443acb292d1fc7..6628d5192195b0c 100644 --- a/files/en-us/web/api/mutationobserverinit/attributeoldvalue/index.html +++ b/files/en-us/web/api/mutationobserverinit/attributeoldvalue/index.html @@ -59,6 +59,5 @@

      Browser compatibility

      -

      {{Compat("api.MutationObserverInit.attributeOldValue")}}

      diff --git a/files/en-us/web/api/mutationobserverinit/attributes/index.html b/files/en-us/web/api/mutationobserverinit/attributes/index.html index b62e351b8b49ff1..0e905b19f4a6582 100644 --- a/files/en-us/web/api/mutationobserverinit/attributes/index.html +++ b/files/en-us/web/api/mutationobserverinit/attributes/index.html @@ -92,6 +92,5 @@

      Browser compatibility

      -

      {{Compat("api.MutationObserverInit.attributes")}}

      diff --git a/files/en-us/web/api/mutationobserverinit/characterdata/index.html b/files/en-us/web/api/mutationobserverinit/characterdata/index.html index 416508b574836bc..b77a040fca963c6 100644 --- a/files/en-us/web/api/mutationobserverinit/characterdata/index.html +++ b/files/en-us/web/api/mutationobserverinit/characterdata/index.html @@ -73,7 +73,6 @@

      Browser compatibility

      -

      {{Compat("api.MutationObserverInit.characterData")}}

      diff --git a/files/en-us/web/api/mutationobserverinit/characterdataoldvalue/index.html b/files/en-us/web/api/mutationobserverinit/characterdataoldvalue/index.html index a0ad4c6dc48418c..67bf2db3d9458fc 100644 --- a/files/en-us/web/api/mutationobserverinit/characterdataoldvalue/index.html +++ b/files/en-us/web/api/mutationobserverinit/characterdataoldvalue/index.html @@ -63,7 +63,6 @@

      Browser compatibility

      -

      {{Compat("api.MutationObserverInit.characterDataOldValue")}}

      diff --git a/files/en-us/web/api/mutationobserverinit/childlist/index.html b/files/en-us/web/api/mutationobserverinit/childlist/index.html index de0bbb8ce0b7263..2dac9f0d312da64 100644 --- a/files/en-us/web/api/mutationobserverinit/childlist/index.html +++ b/files/en-us/web/api/mutationobserverinit/childlist/index.html @@ -58,6 +58,5 @@

      Browser compatibility

      -

      {{Compat("api.MutationObserverInit.childList")}}

      diff --git a/files/en-us/web/api/mutationobserverinit/index.html b/files/en-us/web/api/mutationobserverinit/index.html index a100c717c21211f..bce61eed67678b4 100644 --- a/files/en-us/web/api/mutationobserverinit/index.html +++ b/files/en-us/web/api/mutationobserverinit/index.html @@ -63,6 +63,5 @@

      Browser compatibility

      -

      {{Compat("api.MutationObserverInit")}}

      diff --git a/files/en-us/web/api/mutationobserverinit/subtree/index.html b/files/en-us/web/api/mutationobserverinit/subtree/index.html index 48006d3f771f1cf..b0dec62d1ec80ce 100644 --- a/files/en-us/web/api/mutationobserverinit/subtree/index.html +++ b/files/en-us/web/api/mutationobserverinit/subtree/index.html @@ -74,6 +74,5 @@

      Browser compatibility

      -

      {{Compat("api.MutationObserverInit.subtree")}}

      diff --git a/files/en-us/web/api/mutationrecord/index.html b/files/en-us/web/api/mutationrecord/index.html index 26f23c0ebe304fd..733185157fc2e9f 100644 --- a/files/en-us/web/api/mutationrecord/index.html +++ b/files/en-us/web/api/mutationrecord/index.html @@ -105,6 +105,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.MutationRecord")}}

      diff --git a/files/en-us/web/api/namednodemap/getnameditem/index.html b/files/en-us/web/api/namednodemap/getnameditem/index.html index f1d801684b0fb33..8795fbf7d7ba762 100644 --- a/files/en-us/web/api/namednodemap/getnameditem/index.html +++ b/files/en-us/web/api/namednodemap/getnameditem/index.html @@ -23,6 +23,4 @@

      Parameters

      Browser compatibility

      - -

      {{Compat("api.NamedNodeMap.getNamedItem")}}

      diff --git a/files/en-us/web/api/namednodemap/index.html b/files/en-us/web/api/namednodemap/index.html index f7c1729a159b94a..e05a6de52e93d73 100644 --- a/files/en-us/web/api/namednodemap/index.html +++ b/files/en-us/web/api/namednodemap/index.html @@ -81,8 +81,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.NamedNodeMap")}}

      See also

      diff --git a/files/en-us/web/api/navigation_timing_api/index.html b/files/en-us/web/api/navigation_timing_api/index.html index 883447a2f71b147..97e0445ec4562a3 100644 --- a/files/en-us/web/api/navigation_timing_api/index.html +++ b/files/en-us/web/api/navigation_timing_api/index.html @@ -99,6 +99,5 @@

      Window.performance.timing

      -

      {{Compat("api.PerformanceTiming")}}

      diff --git a/files/en-us/web/api/navigationpreloadmanager/index.html b/files/en-us/web/api/navigationpreloadmanager/index.html index e8946808a014b84..5e485210824b43d 100644 --- a/files/en-us/web/api/navigationpreloadmanager/index.html +++ b/files/en-us/web/api/navigationpreloadmanager/index.html @@ -79,6 +79,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.NavigationPreloadManager")}}

      diff --git a/files/en-us/web/api/navigator/battery/index.html b/files/en-us/web/api/navigator/battery/index.html index 83d47f8e0841bf7..5acb745265d9a84 100644 --- a/files/en-us/web/api/navigator/battery/index.html +++ b/files/en-us/web/api/navigator/battery/index.html @@ -26,8 +26,6 @@

      Syntax

      Browser compatibility

      - -

      {{Compat("api.Navigator.battery")}}

      See also

      diff --git a/files/en-us/web/api/navigator/buildid/index.html b/files/en-us/web/api/navigator/buildid/index.html index e1c9fa6de17dd4d..295bae3df4a7957 100644 --- a/files/en-us/web/api/navigator/buildid/index.html +++ b/files/en-us/web/api/navigator/buildid/index.html @@ -31,8 +31,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.buildID")}}

      See also

      diff --git a/files/en-us/web/api/navigator/canshare/index.html b/files/en-us/web/api/navigator/canshare/index.html index 7fa0610b8fb0ff3..3887085902aaf36 100644 --- a/files/en-us/web/api/navigator/canshare/index.html +++ b/files/en-us/web/api/navigator/canshare/index.html @@ -35,8 +35,6 @@

      Examples

      Browser compatibility

      - -

      {{Compat("api.Navigator.canShare")}}

      See Also

      diff --git a/files/en-us/web/api/navigator/clipboard/index.html b/files/en-us/web/api/navigator/clipboard/index.html index f3244bb6b877257..c14b3f1bc420f12 100644 --- a/files/en-us/web/api/navigator/clipboard/index.html +++ b/files/en-us/web/api/navigator/clipboard/index.html @@ -59,8 +59,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.clipboard")}}

      {{APIRef("Clipboard API")}}
      diff --git a/files/en-us/web/api/navigator/connection/index.html b/files/en-us/web/api/navigator/connection/index.html index 9a8cd1421e48ea3..06b96b6aaba8bfe 100644 --- a/files/en-us/web/api/navigator/connection/index.html +++ b/files/en-us/web/api/navigator/connection/index.html @@ -43,8 +43,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.connection")}}

      See also

      diff --git a/files/en-us/web/api/navigator/contacts/index.html b/files/en-us/web/api/navigator/contacts/index.html index 85f86b6ed693930..fc56f1d19ec6963 100644 --- a/files/en-us/web/api/navigator/contacts/index.html +++ b/files/en-us/web/api/navigator/contacts/index.html @@ -48,8 +48,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.contacts")}}

      See also:

      diff --git a/files/en-us/web/api/navigator/cookieenabled/index.html b/files/en-us/web/api/navigator/cookieenabled/index.html index 5bf768c42b421f6..9ef79eaafaee360 100644 --- a/files/en-us/web/api/navigator/cookieenabled/index.html +++ b/files/en-us/web/api/navigator/cookieenabled/index.html @@ -52,6 +52,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.cookieEnabled")}}

      diff --git a/files/en-us/web/api/navigator/credentials/index.html b/files/en-us/web/api/navigator/credentials/index.html index 97ab0c614eea165..f4256ebf6d8f3b9 100644 --- a/files/en-us/web/api/navigator/credentials/index.html +++ b/files/en-us/web/api/navigator/credentials/index.html @@ -53,6 +53,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.credentials")}}

      diff --git a/files/en-us/web/api/navigator/devicememory/index.html b/files/en-us/web/api/navigator/devicememory/index.html index b2e0b8abc2fd85f..efbc47a6e8d75aa 100644 --- a/files/en-us/web/api/navigator/devicememory/index.html +++ b/files/en-us/web/api/navigator/devicememory/index.html @@ -51,8 +51,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.deviceMemory")}}

      See also

      diff --git a/files/en-us/web/api/navigator/donottrack/index.html b/files/en-us/web/api/navigator/donottrack/index.html index 255290db613797a..e1c16d5d2f5e87b 100644 --- a/files/en-us/web/api/navigator/donottrack/index.html +++ b/files/en-us/web/api/navigator/donottrack/index.html @@ -42,8 +42,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.doNotTrack")}}

      See also

      diff --git a/files/en-us/web/api/navigator/geolocation/index.html b/files/en-us/web/api/navigator/geolocation/index.html index 8679b7c3e6eb511..3a3fd1c662b6e37 100644 --- a/files/en-us/web/api/navigator/geolocation/index.html +++ b/files/en-us/web/api/navigator/geolocation/index.html @@ -43,8 +43,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.geolocation")}}

      See also

      diff --git a/files/en-us/web/api/navigator/getbattery/index.html b/files/en-us/web/api/navigator/getbattery/index.html index 7b243d635e99d3a..adc4371f59dcc93 100644 --- a/files/en-us/web/api/navigator/getbattery/index.html +++ b/files/en-us/web/api/navigator/getbattery/index.html @@ -76,8 +76,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.getBattery")}}

      See also

      diff --git a/files/en-us/web/api/navigator/getgamepads/index.html b/files/en-us/web/api/navigator/getgamepads/index.html index e631fc7f65d1793..e3eb047bbb9811d 100644 --- a/files/en-us/web/api/navigator/getgamepads/index.html +++ b/files/en-us/web/api/navigator/getgamepads/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.getGamepads")}}

      See also

      diff --git a/files/en-us/web/api/navigator/getusermedia/index.html b/files/en-us/web/api/navigator/getusermedia/index.html index fe164ad9f8d9eef..50fd8472c04d2d5 100644 --- a/files/en-us/web/api/navigator/getusermedia/index.html +++ b/files/en-us/web/api/navigator/getusermedia/index.html @@ -103,8 +103,6 @@

      Browser compatibility

      New code should use {{domxref("Navigator.mediaDevices.getUserMedia()")}} instead.

      - -

      {{Compat("api.Navigator.getUserMedia")}}

      See also

      diff --git a/files/en-us/web/api/navigator/keyboard/index.html b/files/en-us/web/api/navigator/keyboard/index.html index 5ca68faeaa347c4..e4ed9fba95d60ae 100644 --- a/files/en-us/web/api/navigator/keyboard/index.html +++ b/files/en-us/web/api/navigator/keyboard/index.html @@ -44,6 +44,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.keyboard")}}

      diff --git a/files/en-us/web/api/navigator/locks/index.html b/files/en-us/web/api/navigator/locks/index.html index 58276a71a129200..9c46a9b21e8635b 100644 --- a/files/en-us/web/api/navigator/locks/index.html +++ b/files/en-us/web/api/navigator/locks/index.html @@ -41,6 +41,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.locks")}}

      diff --git a/files/en-us/web/api/navigator/maxtouchpoints/index.html b/files/en-us/web/api/navigator/maxtouchpoints/index.html index 0dd8321a841bdf8..59bcba32a3db75d 100644 --- a/files/en-us/web/api/navigator/maxtouchpoints/index.html +++ b/files/en-us/web/api/navigator/maxtouchpoints/index.html @@ -50,6 +50,4 @@

      Specifications

      Browser compatibility

      - -
      {{Compat("api.Navigator.maxTouchPoints")}}
      diff --git a/files/en-us/web/api/navigator/mediacapabilities/index.html b/files/en-us/web/api/navigator/mediacapabilities/index.html index 638c95ce6e0ada2..8529dc4ccc023ca 100644 --- a/files/en-us/web/api/navigator/mediacapabilities/index.html +++ b/files/en-us/web/api/navigator/mediacapabilities/index.html @@ -61,8 +61,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.mediaCapabilities")}}

      See also

      diff --git a/files/en-us/web/api/navigator/mediadevices/index.html b/files/en-us/web/api/navigator/mediadevices/index.html index 58d43f3de7231fd..4012fe299f16b4e 100644 --- a/files/en-us/web/api/navigator/mediadevices/index.html +++ b/files/en-us/web/api/navigator/mediadevices/index.html @@ -46,8 +46,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.mediaDevices")}}

      See also

      diff --git a/files/en-us/web/api/navigator/mozislocallyavailable/index.html b/files/en-us/web/api/navigator/mozislocallyavailable/index.html index bfb69d5879c3e37..4ccdab104ec6a89 100644 --- a/files/en-us/web/api/navigator/mozislocallyavailable/index.html +++ b/files/en-us/web/api/navigator/mozislocallyavailable/index.html @@ -46,6 +46,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.mozIsLocallyAvailable")}}

      diff --git a/files/en-us/web/api/navigator/mssaveblob/index.html b/files/en-us/web/api/navigator/mssaveblob/index.html index fce7e444c5dad84..b66846d0c2499c8 100644 --- a/files/en-us/web/api/navigator/mssaveblob/index.html +++ b/files/en-us/web/api/navigator/mssaveblob/index.html @@ -42,6 +42,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.msSaveBlob")}}

      diff --git a/files/en-us/web/api/navigator/mssaveoropenblob/index.html b/files/en-us/web/api/navigator/mssaveoropenblob/index.html index 6f9e8435d5d5a86..8aa2db40b3c8bd3 100644 --- a/files/en-us/web/api/navigator/mssaveoropenblob/index.html +++ b/files/en-us/web/api/navigator/mssaveoropenblob/index.html @@ -41,6 +41,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.msSaveOrOpenBlob")}}

      diff --git a/files/en-us/web/api/navigator/oscpu/index.html b/files/en-us/web/api/navigator/oscpu/index.html index 10dd0a4d48fee78..7363d1a0f27e39b 100644 --- a/files/en-us/web/api/navigator/oscpu/index.html +++ b/files/en-us/web/api/navigator/oscpu/index.html @@ -106,6 +106,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.oscpu")}}

      diff --git a/files/en-us/web/api/navigator/permissions/index.html b/files/en-us/web/api/navigator/permissions/index.html index e3328268ba327a0..a26f621ba078d8c 100644 --- a/files/en-us/web/api/navigator/permissions/index.html +++ b/files/en-us/web/api/navigator/permissions/index.html @@ -53,8 +53,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.permissions")}}

      See also

      diff --git a/files/en-us/web/api/navigator/presentation/index.html b/files/en-us/web/api/navigator/presentation/index.html index a97b3efdd71d0ef..bd471345409633a 100644 --- a/files/en-us/web/api/navigator/presentation/index.html +++ b/files/en-us/web/api/navigator/presentation/index.html @@ -34,8 +34,6 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Navigator.presentation")}}

      See also

      diff --git a/files/en-us/web/api/navigator/productsub/index.html b/files/en-us/web/api/navigator/productsub/index.html index eeacf77b13afe5e..74a2bb39fd4360b 100644 --- a/files/en-us/web/api/navigator/productsub/index.html +++ b/files/en-us/web/api/navigator/productsub/index.html @@ -60,6 +60,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.productSub")}}

      diff --git a/files/en-us/web/api/navigator/registercontenthandler/index.html b/files/en-us/web/api/navigator/registercontenthandler/index.html index 8905a331636284e..c431669103931a9 100644 --- a/files/en-us/web/api/navigator/registercontenthandler/index.html +++ b/files/en-us/web/api/navigator/registercontenthandler/index.html @@ -61,8 +61,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.registerContentHandler")}}

      See also

      diff --git a/files/en-us/web/api/navigator/registerprotocolhandler/index.html b/files/en-us/web/api/navigator/registerprotocolhandler/index.html index 9f5c9c68a52f2f6..0c031c3578dc915 100644 --- a/files/en-us/web/api/navigator/registerprotocolhandler/index.html +++ b/files/en-us/web/api/navigator/registerprotocolhandler/index.html @@ -136,8 +136,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.registerProtocolHandler")}}

      See also

      diff --git a/files/en-us/web/api/navigator/requestmediakeysystemaccess/index.html b/files/en-us/web/api/navigator/requestmediakeysystemaccess/index.html index f4268a4cc638376..d49c31ff3ba398d 100644 --- a/files/en-us/web/api/navigator/requestmediakeysystemaccess/index.html +++ b/files/en-us/web/api/navigator/requestmediakeysystemaccess/index.html @@ -73,8 +73,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.requestMediaKeySystemAccess")}}

      Firefox compatibility notes

      diff --git a/files/en-us/web/api/navigator/sendbeacon/index.html b/files/en-us/web/api/navigator/sendbeacon/index.html index 72ac7c95218e7da..a7616bd065139f7 100644 --- a/files/en-us/web/api/navigator/sendbeacon/index.html +++ b/files/en-us/web/api/navigator/sendbeacon/index.html @@ -97,8 +97,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Navigator.sendBeacon")}}

      See also

      diff --git a/files/en-us/web/api/navigator/share/index.html b/files/en-us/web/api/navigator/share/index.html index 0c41ed141423c85..c0dd73a5fad0d79 100644 --- a/files/en-us/web/api/navigator/share/index.html +++ b/files/en-us/web/api/navigator/share/index.html @@ -31,7 +31,6 @@

      Parameters

    • files: A "FrozenArray" representing the array of file to be shared.
    -

    Return value

    A {{domxref("Promise")}} that will be fulfilled once a user has completed a share action (usually the user has chosen an application to share to). It will reject immediately if the data parameter is not correctly specified, and will also reject if the user cancels sharing.

    @@ -98,8 +97,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Navigator.share")}}

    See Also

    diff --git a/files/en-us/web/api/navigator/vendor/index.html b/files/en-us/web/api/navigator/vendor/index.html index 025f7c1367ac311..edba6441451f7ed 100644 --- a/files/en-us/web/api/navigator/vendor/index.html +++ b/files/en-us/web/api/navigator/vendor/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Navigator.vendor")}}

    diff --git a/files/en-us/web/api/navigator/vendorsub/index.html b/files/en-us/web/api/navigator/vendorsub/index.html index fe6e7a12e0bff6c..465090b4521a13e 100644 --- a/files/en-us/web/api/navigator/vendorsub/index.html +++ b/files/en-us/web/api/navigator/vendorsub/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Navigator.vendorSub")}}

    diff --git a/files/en-us/web/api/navigator/vibrate/index.html b/files/en-us/web/api/navigator/vibrate/index.html index 175bbbf3a25e4a9..240be620ec225fe 100644 --- a/files/en-us/web/api/navigator/vibrate/index.html +++ b/files/en-us/web/api/navigator/vibrate/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Navigator.vibrate")}}

    See also

    diff --git a/files/en-us/web/api/navigator/wakelock/index.html b/files/en-us/web/api/navigator/wakelock/index.html index 29e490673c25bbb..bba1314d03a0503 100644 --- a/files/en-us/web/api/navigator/wakelock/index.html +++ b/files/en-us/web/api/navigator/wakelock/index.html @@ -35,8 +35,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Navigator.wakeLock")}}

    See also

    diff --git a/files/en-us/web/api/navigatorconcurrenthardware/hardwareconcurrency/index.html b/files/en-us/web/api/navigatorconcurrenthardware/hardwareconcurrency/index.html index f4f49bc03210168..7adf70081b5b952 100644 --- a/files/en-us/web/api/navigatorconcurrenthardware/hardwareconcurrency/index.html +++ b/files/en-us/web/api/navigatorconcurrenthardware/hardwareconcurrency/index.html @@ -66,7 +66,6 @@

    Browser compatibility

    -

    {{Compat("api.NavigatorConcurrentHardware.hardwareConcurrency")}}

    diff --git a/files/en-us/web/api/navigatorconcurrenthardware/index.html b/files/en-us/web/api/navigatorconcurrenthardware/index.html index f0b1b470cdfc953..7bc80bb24cb6e7b 100644 --- a/files/en-us/web/api/navigatorconcurrenthardware/index.html +++ b/files/en-us/web/api/navigatorconcurrenthardware/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorConcurrentHardware")}}

    See also

    diff --git a/files/en-us/web/api/navigatorid/appcodename/index.html b/files/en-us/web/api/navigatorid/appcodename/index.html index beab6f48cbcf288..b2da2196acb42b8 100644 --- a/files/en-us/web/api/navigatorid/appcodename/index.html +++ b/files/en-us/web/api/navigatorid/appcodename/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorID.appCodeName")}}

    See also

    diff --git a/files/en-us/web/api/navigatorid/appname/index.html b/files/en-us/web/api/navigatorid/appname/index.html index aeafe4cda682b4e..365571c4b5db015 100644 --- a/files/en-us/web/api/navigatorid/appname/index.html +++ b/files/en-us/web/api/navigatorid/appname/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorID.appName")}}

    See also

    diff --git a/files/en-us/web/api/navigatorid/appversion/index.html b/files/en-us/web/api/navigatorid/appversion/index.html index e0e96ec7fb3a0a8..d25247b4859f2af 100644 --- a/files/en-us/web/api/navigatorid/appversion/index.html +++ b/files/en-us/web/api/navigatorid/appversion/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorID.appVersion")}}

    diff --git a/files/en-us/web/api/navigatorid/index.html b/files/en-us/web/api/navigatorid/index.html index dcd8cc1e2f84548..2453aef184606fa 100644 --- a/files/en-us/web/api/navigatorid/index.html +++ b/files/en-us/web/api/navigatorid/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorID")}}

    See also

    diff --git a/files/en-us/web/api/navigatorid/platform/index.html b/files/en-us/web/api/navigatorid/platform/index.html index 0e23b1727e2b203..ca03f116f3136ab 100644 --- a/files/en-us/web/api/navigatorid/platform/index.html +++ b/files/en-us/web/api/navigatorid/platform/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorID.platform")}}

    diff --git a/files/en-us/web/api/navigatorid/product/index.html b/files/en-us/web/api/navigatorid/product/index.html index c8ca308b846643b..b229326161f6f9e 100644 --- a/files/en-us/web/api/navigatorid/product/index.html +++ b/files/en-us/web/api/navigatorid/product/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorID.product")}}

    See also

    diff --git a/files/en-us/web/api/navigatorid/taintenabled/index.html b/files/en-us/web/api/navigatorid/taintenabled/index.html index cdd2b9828965981..f4b7adfd62b5887 100644 --- a/files/en-us/web/api/navigatorid/taintenabled/index.html +++ b/files/en-us/web/api/navigatorid/taintenabled/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorID.taintEnabled")}}

    See also

    diff --git a/files/en-us/web/api/navigatorid/useragent/index.html b/files/en-us/web/api/navigatorid/useragent/index.html index 32cd8cf28fd0f69..269399096693d99 100644 --- a/files/en-us/web/api/navigatorid/useragent/index.html +++ b/files/en-us/web/api/navigatorid/useragent/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorID.userAgent")}}

    See also

    diff --git a/files/en-us/web/api/navigatorlanguage/index.html b/files/en-us/web/api/navigatorlanguage/index.html index eecdf4c8a238e74..fc03450ef4ad63c 100644 --- a/files/en-us/web/api/navigatorlanguage/index.html +++ b/files/en-us/web/api/navigatorlanguage/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorLanguage")}}

    See also

    diff --git a/files/en-us/web/api/navigatorlanguage/language/index.html b/files/en-us/web/api/navigatorlanguage/language/index.html index 6a5ad2a4cb1d853..74bf28e45ce4fba 100644 --- a/files/en-us/web/api/navigatorlanguage/language/index.html +++ b/files/en-us/web/api/navigatorlanguage/language/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorLanguage.language")}}

    See also

    diff --git a/files/en-us/web/api/navigatorlanguage/languages/index.html b/files/en-us/web/api/navigatorlanguage/languages/index.html index 1dacb343ea8fcdb..c1dbe6d4af0a3c2 100644 --- a/files/en-us/web/api/navigatorlanguage/languages/index.html +++ b/files/en-us/web/api/navigatorlanguage/languages/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorLanguage.languages")}}

    See also

    diff --git a/files/en-us/web/api/navigatoronline/index.html b/files/en-us/web/api/navigatoronline/index.html index 558228bfaba13d1..f15aa1fa944c90e 100644 --- a/files/en-us/web/api/navigatoronline/index.html +++ b/files/en-us/web/api/navigatoronline/index.html @@ -42,8 +42,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorOnLine")}}

    See also

    diff --git a/files/en-us/web/api/navigatoronline/online/index.html b/files/en-us/web/api/navigatoronline/online/index.html index f8f6f798f6bc0c3..92069e3a1fcb532 100644 --- a/files/en-us/web/api/navigatoronline/online/index.html +++ b/files/en-us/web/api/navigatoronline/online/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorOnLine.onLine")}}

    Notes

    diff --git a/files/en-us/web/api/navigatorplugins/index.html b/files/en-us/web/api/navigatorplugins/index.html index 0f1d53e57066975..7cb48d4df18fa8a 100644 --- a/files/en-us/web/api/navigatorplugins/index.html +++ b/files/en-us/web/api/navigatorplugins/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorPlugins")}}

    See also

    diff --git a/files/en-us/web/api/navigatorplugins/javaenabled/index.html b/files/en-us/web/api/navigatorplugins/javaenabled/index.html index 32feda1f4e793cd..8be93ba9d0a605c 100644 --- a/files/en-us/web/api/navigatorplugins/javaenabled/index.html +++ b/files/en-us/web/api/navigatorplugins/javaenabled/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorPlugins.javaEnabled")}}

    diff --git a/files/en-us/web/api/navigatorplugins/mimetypes/index.html b/files/en-us/web/api/navigatorplugins/mimetypes/index.html index 2ac6a156eb32247..9a003d312441472 100644 --- a/files/en-us/web/api/navigatorplugins/mimetypes/index.html +++ b/files/en-us/web/api/navigatorplugins/mimetypes/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorPlugins.mimeTypes")}}

    diff --git a/files/en-us/web/api/navigatorplugins/plugins/index.html b/files/en-us/web/api/navigatorplugins/plugins/index.html index f72e5075138b686..5613db5e7d3c173 100644 --- a/files/en-us/web/api/navigatorplugins/plugins/index.html +++ b/files/en-us/web/api/navigatorplugins/plugins/index.html @@ -90,8 +90,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorPlugins.plugins")}}

    In addition to listing each plugin as a pseudo-array by zero-indexed numeric properties, Firefox provides properties that are the plugin name directly on the PluginArray object.

    diff --git a/files/en-us/web/api/navigatorstorage/index.html b/files/en-us/web/api/navigatorstorage/index.html index bb5840a254d0411..c2d844347a30c9f 100644 --- a/files/en-us/web/api/navigatorstorage/index.html +++ b/files/en-us/web/api/navigatorstorage/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NavigatorStorage")}}

    See also

    diff --git a/files/en-us/web/api/navigatorstorage/storage/index.html b/files/en-us/web/api/navigatorstorage/storage/index.html index 0d3fbee9dbb662f..14c613011729b12 100644 --- a/files/en-us/web/api/navigatorstorage/storage/index.html +++ b/files/en-us/web/api/navigatorstorage/storage/index.html @@ -45,7 +45,6 @@

    Browser compatibility

    -

    {{Compat("api.NavigatorStorage.storage")}}

    diff --git a/files/en-us/web/api/ndefmessage/index.html b/files/en-us/web/api/ndefmessage/index.html index c8e4d2d1032bc6b..f22bcdd28f5985c 100644 --- a/files/en-us/web/api/ndefmessage/index.html +++ b/files/en-us/web/api/ndefmessage/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFMessage")}}

    diff --git a/files/en-us/web/api/ndefmessage/records/index.html b/files/en-us/web/api/ndefmessage/records/index.html index 3cdbd4821d9ef3a..678e56055ef9424 100644 --- a/files/en-us/web/api/ndefmessage/records/index.html +++ b/files/en-us/web/api/ndefmessage/records/index.html @@ -40,6 +40,5 @@

    Browser compatibility

    -

    {{Compat("api.NDEFMessage.records")}}

    diff --git a/files/en-us/web/api/ndefreader/index.html b/files/en-us/web/api/ndefreader/index.html index a316fab956b9f88..424b598a5cd296e 100644 --- a/files/en-us/web/api/ndefreader/index.html +++ b/files/en-us/web/api/ndefreader/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFReader")}}

    diff --git a/files/en-us/web/api/ndefreader/ndefreader/index.html b/files/en-us/web/api/ndefreader/ndefreader/index.html index b4a342245c78eff..e3c8e4af44d925e 100644 --- a/files/en-us/web/api/ndefreader/ndefreader/index.html +++ b/files/en-us/web/api/ndefreader/ndefreader/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFReader.NDEFReader")}}

    diff --git a/files/en-us/web/api/ndefreader/onreading/index.html b/files/en-us/web/api/ndefreader/onreading/index.html index 81ad2d31c187be8..c97dace23b8528b 100644 --- a/files/en-us/web/api/ndefreader/onreading/index.html +++ b/files/en-us/web/api/ndefreader/onreading/index.html @@ -29,8 +29,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFReader.onreading")}}

    See also

    diff --git a/files/en-us/web/api/ndefreader/onreadingerror/index.html b/files/en-us/web/api/ndefreader/onreadingerror/index.html index 33ce0cd94ef8949..8b8636075437035 100644 --- a/files/en-us/web/api/ndefreader/onreadingerror/index.html +++ b/files/en-us/web/api/ndefreader/onreadingerror/index.html @@ -25,6 +25,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFReader.onreadingerror")}}

    diff --git a/files/en-us/web/api/ndefreader/scan/index.html b/files/en-us/web/api/ndefreader/scan/index.html index 79ab8b3feef314f..0b23e01359685b0 100644 --- a/files/en-us/web/api/ndefreader/scan/index.html +++ b/files/en-us/web/api/ndefreader/scan/index.html @@ -67,6 +67,5 @@

    Browser compatibility

    -

    {{Compat("api.NDEFReader.scan")}}

    diff --git a/files/en-us/web/api/ndefreader/write/index.html b/files/en-us/web/api/ndefreader/write/index.html index 63eb7d132d80667..e06d647d557ad03 100644 --- a/files/en-us/web/api/ndefreader/write/index.html +++ b/files/en-us/web/api/ndefreader/write/index.html @@ -72,6 +72,5 @@

    Browser compatibility

    -

    {{Compat("api.NDEFReader.write")}}

    diff --git a/files/en-us/web/api/ndefreadingevent/index.html b/files/en-us/web/api/ndefreadingevent/index.html index dc5d63f826bda71..d1e014b75de8370 100644 --- a/files/en-us/web/api/ndefreadingevent/index.html +++ b/files/en-us/web/api/ndefreadingevent/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFReadingEvent")}}

    See also

    diff --git a/files/en-us/web/api/ndefrecord/data/index.html b/files/en-us/web/api/ndefrecord/data/index.html index e659d5d00260b20..2dbccc2c862700c 100644 --- a/files/en-us/web/api/ndefrecord/data/index.html +++ b/files/en-us/web/api/ndefrecord/data/index.html @@ -39,6 +39,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFRecord.data")}}

    diff --git a/files/en-us/web/api/ndefrecord/encoding/index.html b/files/en-us/web/api/ndefrecord/encoding/index.html index f85b1fe3b79518f..600cd643eff3e2e 100644 --- a/files/en-us/web/api/ndefrecord/encoding/index.html +++ b/files/en-us/web/api/ndefrecord/encoding/index.html @@ -38,6 +38,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFRecord.encoding")}}

    diff --git a/files/en-us/web/api/ndefrecord/id/index.html b/files/en-us/web/api/ndefrecord/id/index.html index f7f872711944098..e250709096d10f9 100644 --- a/files/en-us/web/api/ndefrecord/id/index.html +++ b/files/en-us/web/api/ndefrecord/id/index.html @@ -40,6 +40,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFRecord.id")}}

    diff --git a/files/en-us/web/api/ndefrecord/index.html b/files/en-us/web/api/ndefrecord/index.html index b3798a71d55b5cb..eb7ff05c861ef14 100644 --- a/files/en-us/web/api/ndefrecord/index.html +++ b/files/en-us/web/api/ndefrecord/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFRecord")}}

    diff --git a/files/en-us/web/api/ndefrecord/lang/index.html b/files/en-us/web/api/ndefrecord/lang/index.html index 243a992c1c73b83..4c508e216f968cd 100644 --- a/files/en-us/web/api/ndefrecord/lang/index.html +++ b/files/en-us/web/api/ndefrecord/lang/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFRecord.lang")}}

    See also

    diff --git a/files/en-us/web/api/ndefrecord/mediatype/index.html b/files/en-us/web/api/ndefrecord/mediatype/index.html index 7b2ba17ac16a64e..feb9b7aae0b39bd 100644 --- a/files/en-us/web/api/ndefrecord/mediatype/index.html +++ b/files/en-us/web/api/ndefrecord/mediatype/index.html @@ -37,6 +37,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFRecord.mediaType")}}

    diff --git a/files/en-us/web/api/ndefrecord/ndefrecord/index.html b/files/en-us/web/api/ndefrecord/ndefrecord/index.html index 7ad16d8fd4f6282..290be09c62e66b4 100644 --- a/files/en-us/web/api/ndefrecord/ndefrecord/index.html +++ b/files/en-us/web/api/ndefrecord/ndefrecord/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFRecord.NDEFRecord")}}

    diff --git a/files/en-us/web/api/ndefrecord/recordtype/index.html b/files/en-us/web/api/ndefrecord/recordtype/index.html index fe170948afae156..c43f2274e6073e3 100644 --- a/files/en-us/web/api/ndefrecord/recordtype/index.html +++ b/files/en-us/web/api/ndefrecord/recordtype/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFRecord.recordType")}}

    diff --git a/files/en-us/web/api/ndefrecord/torecords/index.html b/files/en-us/web/api/ndefrecord/torecords/index.html index db79217ac82b88c..7af3d8011f3c17d 100644 --- a/files/en-us/web/api/ndefrecord/torecords/index.html +++ b/files/en-us/web/api/ndefrecord/torecords/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NDEFRecord.toRecords")}}

    diff --git a/files/en-us/web/api/network_information_api/index.html b/files/en-us/web/api/network_information_api/index.html index 0e6bff43301f2b4..6d14ec34e71133a 100644 --- a/files/en-us/web/api/network_information_api/index.html +++ b/files/en-us/web/api/network_information_api/index.html @@ -73,8 +73,6 @@

    Browser compatibility

    NetworkInformation

    - -

    {{Compat("api.NetworkInformation")}}

    diff --git a/files/en-us/web/api/networkinformation/downlink/index.html b/files/en-us/web/api/networkinformation/downlink/index.html index 67f5b18c5df9167..8adb26bb82d4b6b 100644 --- a/files/en-us/web/api/networkinformation/downlink/index.html +++ b/files/en-us/web/api/networkinformation/downlink/index.html @@ -45,6 +45,5 @@

    Browser compatibility

    -

    {{Compat("api.NetworkInformation.downlink")}}

    diff --git a/files/en-us/web/api/networkinformation/downlinkmax/index.html b/files/en-us/web/api/networkinformation/downlinkmax/index.html index c21bb4d54b2857e..ae9d7006e9528d2 100644 --- a/files/en-us/web/api/networkinformation/downlinkmax/index.html +++ b/files/en-us/web/api/networkinformation/downlinkmax/index.html @@ -70,6 +70,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NetworkInformation.downlinkMax")}}

    diff --git a/files/en-us/web/api/networkinformation/effectivetype/index.html b/files/en-us/web/api/networkinformation/effectivetype/index.html index c111da55e14b8ed..c94ce925ef43789 100644 --- a/files/en-us/web/api/networkinformation/effectivetype/index.html +++ b/files/en-us/web/api/networkinformation/effectivetype/index.html @@ -42,7 +42,6 @@

    Browser compatibility

    -

    {{Compat("api.NetworkInformation.effectiveType")}}

    diff --git a/files/en-us/web/api/networkinformation/index.html b/files/en-us/web/api/networkinformation/index.html index 02d3aee19149ffb..096b1ee7fd85b48 100644 --- a/files/en-us/web/api/networkinformation/index.html +++ b/files/en-us/web/api/networkinformation/index.html @@ -81,8 +81,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NetworkInformation")}}

    See also

    diff --git a/files/en-us/web/api/networkinformation/onchange/index.html b/files/en-us/web/api/networkinformation/onchange/index.html index 376c049259c4fde..90a4881f318b7eb 100644 --- a/files/en-us/web/api/networkinformation/onchange/index.html +++ b/files/en-us/web/api/networkinformation/onchange/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NetworkInformation.onchange")}}

    diff --git a/files/en-us/web/api/networkinformation/rtt/index.html b/files/en-us/web/api/networkinformation/rtt/index.html index 92b654af3bc769d..82cb1bc85f6246b 100644 --- a/files/en-us/web/api/networkinformation/rtt/index.html +++ b/files/en-us/web/api/networkinformation/rtt/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NetworkInformation.rtt")}}

    diff --git a/files/en-us/web/api/networkinformation/savedata/index.html b/files/en-us/web/api/networkinformation/savedata/index.html index bc558de1044721b..bbe6911ae598d85 100644 --- a/files/en-us/web/api/networkinformation/savedata/index.html +++ b/files/en-us/web/api/networkinformation/savedata/index.html @@ -38,6 +38,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NetworkInformation.saveData")}}

    diff --git a/files/en-us/web/api/networkinformation/type/index.html b/files/en-us/web/api/networkinformation/type/index.html index 6db8953924d99a2..2a0608f34c4b97b 100644 --- a/files/en-us/web/api/networkinformation/type/index.html +++ b/files/en-us/web/api/networkinformation/type/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NetworkInformation.type")}}

    diff --git a/files/en-us/web/api/node/appendchild/index.html b/files/en-us/web/api/node/appendchild/index.html index 7c473978a232a4f..ee0361868fd399f 100644 --- a/files/en-us/web/api/node/appendchild/index.html +++ b/files/en-us/web/api/node/appendchild/index.html @@ -88,7 +88,6 @@

    Browser compatibility

    -

    {{Compat("api.Node.appendChild")}}

    diff --git a/files/en-us/web/api/node/baseuri/index.html b/files/en-us/web/api/node/baseuri/index.html index d956c6aca928c1c..a129397f77b7d0a 100644 --- a/files/en-us/web/api/node/baseuri/index.html +++ b/files/en-us/web/api/node/baseuri/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.baseURI")}}

    See also

    diff --git a/files/en-us/web/api/node/childnodes/index.html b/files/en-us/web/api/node/childnodes/index.html index e0437f9b3324fdd..fcc9cc6183373fb 100644 --- a/files/en-us/web/api/node/childnodes/index.html +++ b/files/en-us/web/api/node/childnodes/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.childNodes")}}

    See also

    diff --git a/files/en-us/web/api/node/clonenode/index.html b/files/en-us/web/api/node/clonenode/index.html index a1839da22af5e4d..f122a9bd570c8f0 100644 --- a/files/en-us/web/api/node/clonenode/index.html +++ b/files/en-us/web/api/node/clonenode/index.html @@ -103,6 +103,5 @@

    Browser compatibility

    -

    {{Compat("api.Node.cloneNode")}}

    diff --git a/files/en-us/web/api/node/comparedocumentposition/index.html b/files/en-us/web/api/node/comparedocumentposition/index.html index 2c665c4fa481310..509b201bc86bf6a 100644 --- a/files/en-us/web/api/node/comparedocumentposition/index.html +++ b/files/en-us/web/api/node/comparedocumentposition/index.html @@ -110,8 +110,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.compareDocumentPosition")}}

    See also

    diff --git a/files/en-us/web/api/node/contains/index.html b/files/en-us/web/api/node/contains/index.html index dd0e56b7bbfa151..dbd5faf41d95b5a 100644 --- a/files/en-us/web/api/node/contains/index.html +++ b/files/en-us/web/api/node/contains/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.contains")}}

    See also

    diff --git a/files/en-us/web/api/node/firstchild/index.html b/files/en-us/web/api/node/firstchild/index.html index b8df8ddcb5f3072..0759a7ad70b2922 100644 --- a/files/en-us/web/api/node/firstchild/index.html +++ b/files/en-us/web/api/node/firstchild/index.html @@ -84,6 +84,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.firstChild")}}

    diff --git a/files/en-us/web/api/node/getrootnode/index.html b/files/en-us/web/api/node/getrootnode/index.html index 24ef10fe3b6ae53..0b29bed026ee173 100644 --- a/files/en-us/web/api/node/getrootnode/index.html +++ b/files/en-us/web/api/node/getrootnode/index.html @@ -93,6 +93,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.getRootNode")}}

    diff --git a/files/en-us/web/api/node/getuserdata/index.html b/files/en-us/web/api/node/getuserdata/index.html index 97cdfb309644b42..c6997a5621a51d3 100644 --- a/files/en-us/web/api/node/getuserdata/index.html +++ b/files/en-us/web/api/node/getuserdata/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.getUserData")}}

    See also

    diff --git a/files/en-us/web/api/node/haschildnodes/index.html b/files/en-us/web/api/node/haschildnodes/index.html index d1a995689b861f4..946a1a5dea09afe 100644 --- a/files/en-us/web/api/node/haschildnodes/index.html +++ b/files/en-us/web/api/node/haschildnodes/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.hasChildNodes")}}

    See also

    diff --git a/files/en-us/web/api/node/index.html b/files/en-us/web/api/node/index.html index 4bfd1bfec8916b7..ada8d9f4f2cf30b 100644 --- a/files/en-us/web/api/node/index.html +++ b/files/en-us/web/api/node/index.html @@ -371,6 +371,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node")}}

    diff --git a/files/en-us/web/api/node/insertbefore/index.html b/files/en-us/web/api/node/insertbefore/index.html index 9d5a6d4d5aa747b..ab266ce0439547f 100644 --- a/files/en-us/web/api/node/insertbefore/index.html +++ b/files/en-us/web/api/node/insertbefore/index.html @@ -169,8 +169,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.insertBefore")}}

    See also

    diff --git a/files/en-us/web/api/node/isconnected/index.html b/files/en-us/web/api/node/isconnected/index.html index 4e8ddaea6f6f0ea..467080c0cc30419 100644 --- a/files/en-us/web/api/node/isconnected/index.html +++ b/files/en-us/web/api/node/isconnected/index.html @@ -118,6 +118,5 @@

    Browser compatibility

    -

    {{Compat("api.Node.isConnected")}}

    diff --git a/files/en-us/web/api/node/isdefaultnamespace/index.html b/files/en-us/web/api/node/isdefaultnamespace/index.html index a03669a7252cfb5..f824bd99f537220 100644 --- a/files/en-us/web/api/node/isdefaultnamespace/index.html +++ b/files/en-us/web/api/node/isdefaultnamespace/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.isDefaultNamespace")}}

    diff --git a/files/en-us/web/api/node/isequalnode/index.html b/files/en-us/web/api/node/isequalnode/index.html index 28affb5b3887021..baba2a59b43cd32 100644 --- a/files/en-us/web/api/node/isequalnode/index.html +++ b/files/en-us/web/api/node/isequalnode/index.html @@ -82,8 +82,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.isEqualNode")}}

    See also

    diff --git a/files/en-us/web/api/node/issamenode/index.html b/files/en-us/web/api/node/issamenode/index.html index 2dec5b4f4455ec3..ad36b4b36f4fca4 100644 --- a/files/en-us/web/api/node/issamenode/index.html +++ b/files/en-us/web/api/node/issamenode/index.html @@ -88,8 +88,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.isSameNode")}}

    See also

    diff --git a/files/en-us/web/api/node/issupported/index.html b/files/en-us/web/api/node/issupported/index.html index 0a39e49edec671d..808f8b8724e3c98 100644 --- a/files/en-us/web/api/node/issupported/index.html +++ b/files/en-us/web/api/node/issupported/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.isSupported")}}

    See also

    diff --git a/files/en-us/web/api/node/lastchild/index.html b/files/en-us/web/api/node/lastchild/index.html index 31cf9741441ba10..0d546248188319b 100644 --- a/files/en-us/web/api/node/lastchild/index.html +++ b/files/en-us/web/api/node/lastchild/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.lastChild")}}

    diff --git a/files/en-us/web/api/node/localname/index.html b/files/en-us/web/api/node/localname/index.html index 69a8158d41c1e0d..a6b5f82f08d5e64 100644 --- a/files/en-us/web/api/node/localname/index.html +++ b/files/en-us/web/api/node/localname/index.html @@ -99,8 +99,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.localName")}}

    See also

    diff --git a/files/en-us/web/api/node/lookupnamespaceuri/index.html b/files/en-us/web/api/node/lookupnamespaceuri/index.html index 7671f8d8269874f..a964f7f6b25dae2 100644 --- a/files/en-us/web/api/node/lookupnamespaceuri/index.html +++ b/files/en-us/web/api/node/lookupnamespaceuri/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.lookupNamespaceURI")}}

    In Firefox, due to bug 312019, this method does not work with dynamically assigned namespaces (i.e., those set with {{domxref("Node.prefix")}}).

    diff --git a/files/en-us/web/api/node/lookupprefix/index.html b/files/en-us/web/api/node/lookupprefix/index.html index 0640e32028ef7a7..853643b43fd236b 100644 --- a/files/en-us/web/api/node/lookupprefix/index.html +++ b/files/en-us/web/api/node/lookupprefix/index.html @@ -16,8 +16,6 @@

    Browser compatibility

    - -

    {{Compat("api.Node.lookupPrefix")}}

    See also

    diff --git a/files/en-us/web/api/node/namespaceuri/index.html b/files/en-us/web/api/node/namespaceuri/index.html index 768a39c60f2211c..2d19a4df594faa4 100644 --- a/files/en-us/web/api/node/namespaceuri/index.html +++ b/files/en-us/web/api/node/namespaceuri/index.html @@ -76,7 +76,6 @@

    Browser compatibility

    -

    {{Compat("api.Node.namespaceURI")}}

    diff --git a/files/en-us/web/api/node/nextsibling/index.html b/files/en-us/web/api/node/nextsibling/index.html index 3992753030cfbef..e1a48170e4677f8 100644 --- a/files/en-us/web/api/node/nextsibling/index.html +++ b/files/en-us/web/api/node/nextsibling/index.html @@ -94,8 +94,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.nextSibling")}}

    See also

    diff --git a/files/en-us/web/api/node/nodename/index.html b/files/en-us/web/api/node/nodename/index.html index 756bc175b03cf8c..1a56dc681aca7ca 100644 --- a/files/en-us/web/api/node/nodename/index.html +++ b/files/en-us/web/api/node/nodename/index.html @@ -119,6 +119,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.nodeName")}}

    diff --git a/files/en-us/web/api/node/nodetype/index.html b/files/en-us/web/api/node/nodetype/index.html index b10b466e34a6d45..2c0185c0a153bc7 100644 --- a/files/en-us/web/api/node/nodetype/index.html +++ b/files/en-us/web/api/node/nodetype/index.html @@ -172,6 +172,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.nodeType")}}

    diff --git a/files/en-us/web/api/node/nodevalue/index.html b/files/en-us/web/api/node/nodevalue/index.html index 10d19fd6ed8e454..3b53f153613d897 100644 --- a/files/en-us/web/api/node/nodevalue/index.html +++ b/files/en-us/web/api/node/nodevalue/index.html @@ -105,6 +105,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.nodeValue")}}

    diff --git a/files/en-us/web/api/node/normalize/index.html b/files/en-us/web/api/node/normalize/index.html index 30bb97a939fac55..2ba242afe979389 100644 --- a/files/en-us/web/api/node/normalize/index.html +++ b/files/en-us/web/api/node/normalize/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.normalize")}}

    See also

    diff --git a/files/en-us/web/api/node/ownerdocument/index.html b/files/en-us/web/api/node/ownerdocument/index.html index 382fb4bc6478efc..7234c85abfff183 100644 --- a/files/en-us/web/api/node/ownerdocument/index.html +++ b/files/en-us/web/api/node/ownerdocument/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.ownerDocument")}}

    diff --git a/files/en-us/web/api/node/parentelement/index.html b/files/en-us/web/api/node/parentelement/index.html index 9ceb632dd9ac1e0..ab39ad25999e2e5 100644 --- a/files/en-us/web/api/node/parentelement/index.html +++ b/files/en-us/web/api/node/parentelement/index.html @@ -52,7 +52,6 @@

    Browser compatibility

    -

    {{Compat("api.Node.parentElement")}}

    diff --git a/files/en-us/web/api/node/parentnode/index.html b/files/en-us/web/api/node/parentnode/index.html index 483c953b1e622ea..ae2a4cda733eac2 100644 --- a/files/en-us/web/api/node/parentnode/index.html +++ b/files/en-us/web/api/node/parentnode/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.parentNode")}}

    See also

    diff --git a/files/en-us/web/api/node/prefix/index.html b/files/en-us/web/api/node/prefix/index.html index db11a9cc7d4b5c1..a1cb7f547811399 100644 --- a/files/en-us/web/api/node/prefix/index.html +++ b/files/en-us/web/api/node/prefix/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.prefix")}}

    See also

    diff --git a/files/en-us/web/api/node/previoussibling/index.html b/files/en-us/web/api/node/previoussibling/index.html index e2d7b3daa3e200a..a1ef5946ffcf5a0 100644 --- a/files/en-us/web/api/node/previoussibling/index.html +++ b/files/en-us/web/api/node/previoussibling/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.previousSibling")}}

    See also

    diff --git a/files/en-us/web/api/node/removechild/index.html b/files/en-us/web/api/node/removechild/index.html index e07b55c24f2d3e2..bd7837b5937ab2e 100644 --- a/files/en-us/web/api/node/removechild/index.html +++ b/files/en-us/web/api/node/removechild/index.html @@ -121,8 +121,6 @@

    Causing a NotFoundError

    Notes

    - -

    Unlike {{domxref ("Node.cloneNode()")}} the return value preserves the {{domxref ("EventListener")}}s.

    Specifications

    @@ -146,8 +144,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.removeChild")}}

    See also

    diff --git a/files/en-us/web/api/node/replacechild/index.html b/files/en-us/web/api/node/replacechild/index.html index 39b461fc3797f88..1ff815efbf9d3aa 100644 --- a/files/en-us/web/api/node/replacechild/index.html +++ b/files/en-us/web/api/node/replacechild/index.html @@ -86,8 +86,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.replaceChild")}}

    See also

    diff --git a/files/en-us/web/api/node/setuserdata/index.html b/files/en-us/web/api/node/setuserdata/index.html index b61c7f364d681db..9cf36baa8e69bd6 100644 --- a/files/en-us/web/api/node/setuserdata/index.html +++ b/files/en-us/web/api/node/setuserdata/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.setUserData")}}

    See also

    diff --git a/files/en-us/web/api/node/textcontent/index.html b/files/en-us/web/api/node/textcontent/index.html index 3eeb26218663c59..11d9a9f8a277373 100644 --- a/files/en-us/web/api/node/textcontent/index.html +++ b/files/en-us/web/api/node/textcontent/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Node.textContent")}}

    See also

    diff --git a/files/en-us/web/api/nodefilter/acceptnode/index.html b/files/en-us/web/api/nodefilter/acceptnode/index.html index ea74ae64353fb34..a33c80bf3b11e39 100644 --- a/files/en-us/web/api/nodefilter/acceptnode/index.html +++ b/files/en-us/web/api/nodefilter/acceptnode/index.html @@ -104,8 +104,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeFilter.acceptNode")}}

    See also

    diff --git a/files/en-us/web/api/nodefilter/index.html b/files/en-us/web/api/nodefilter/index.html index 5a45a892a96ea3e..8a141e990ccdc49 100644 --- a/files/en-us/web/api/nodefilter/index.html +++ b/files/en-us/web/api/nodefilter/index.html @@ -120,8 +120,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeFilter")}}

    See also

    diff --git a/files/en-us/web/api/nodeiterator/detach/index.html b/files/en-us/web/api/nodeiterator/detach/index.html index bef46fbfda517d1..6ccc4e0e0ad0bfb 100644 --- a/files/en-us/web/api/nodeiterator/detach/index.html +++ b/files/en-us/web/api/nodeiterator/detach/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeIterator.detach")}}

    See also

    diff --git a/files/en-us/web/api/nodeiterator/expandentityreferences/index.html b/files/en-us/web/api/nodeiterator/expandentityreferences/index.html index 158f5904394677f..0aaf6362f066dfa 100644 --- a/files/en-us/web/api/nodeiterator/expandentityreferences/index.html +++ b/files/en-us/web/api/nodeiterator/expandentityreferences/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeIterator.expandEntityReferences")}}

    See also

    diff --git a/files/en-us/web/api/nodeiterator/filter/index.html b/files/en-us/web/api/nodeiterator/filter/index.html index 9daefb3719875b0..a30adba23b96cea 100644 --- a/files/en-us/web/api/nodeiterator/filter/index.html +++ b/files/en-us/web/api/nodeiterator/filter/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeIterator.filter")}}

    See also

    diff --git a/files/en-us/web/api/nodeiterator/index.html b/files/en-us/web/api/nodeiterator/index.html index a10c26651d794e1..ce34e77c02a0ebc 100644 --- a/files/en-us/web/api/nodeiterator/index.html +++ b/files/en-us/web/api/nodeiterator/index.html @@ -157,8 +157,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeIterator")}}

    See also

    diff --git a/files/en-us/web/api/nodeiterator/nextnode/index.html b/files/en-us/web/api/nodeiterator/nextnode/index.html index 6114b4470ec072b..9a5412920a07bce 100644 --- a/files/en-us/web/api/nodeiterator/nextnode/index.html +++ b/files/en-us/web/api/nodeiterator/nextnode/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeIterator.nextNode")}}

    See also

    diff --git a/files/en-us/web/api/nodeiterator/pointerbeforereferencenode/index.html b/files/en-us/web/api/nodeiterator/pointerbeforereferencenode/index.html index d13a5e4e8eb9352..0b71e2da9eb4012 100644 --- a/files/en-us/web/api/nodeiterator/pointerbeforereferencenode/index.html +++ b/files/en-us/web/api/nodeiterator/pointerbeforereferencenode/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeIterator.pointerBeforeReferenceNode")}}

    See also

    diff --git a/files/en-us/web/api/nodeiterator/previousnode/index.html b/files/en-us/web/api/nodeiterator/previousnode/index.html index 5ce515cf290d3fa..9d99e05bb174082 100644 --- a/files/en-us/web/api/nodeiterator/previousnode/index.html +++ b/files/en-us/web/api/nodeiterator/previousnode/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeIterator.previousNode")}}

    See also

    diff --git a/files/en-us/web/api/nodeiterator/referencenode/index.html b/files/en-us/web/api/nodeiterator/referencenode/index.html index f15851d3b2347c9..2d5626d727b44ed 100644 --- a/files/en-us/web/api/nodeiterator/referencenode/index.html +++ b/files/en-us/web/api/nodeiterator/referencenode/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeIterator.referenceNode")}}

    See also

    diff --git a/files/en-us/web/api/nodeiterator/root/index.html b/files/en-us/web/api/nodeiterator/root/index.html index 33ce7986c25dd66..aa563708b225f5d 100644 --- a/files/en-us/web/api/nodeiterator/root/index.html +++ b/files/en-us/web/api/nodeiterator/root/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeIterator.root")}}

    See also

    diff --git a/files/en-us/web/api/nodeiterator/whattoshow/index.html b/files/en-us/web/api/nodeiterator/whattoshow/index.html index 2695bce40c7f430..36fa36232116848 100644 --- a/files/en-us/web/api/nodeiterator/whattoshow/index.html +++ b/files/en-us/web/api/nodeiterator/whattoshow/index.html @@ -131,8 +131,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeIterator.whatToShow")}}

    See also

    diff --git a/files/en-us/web/api/nodelist/entries/index.html b/files/en-us/web/api/nodelist/entries/index.html index 4396e66bad52802..49e34364cfad262 100644 --- a/files/en-us/web/api/nodelist/entries/index.html +++ b/files/en-us/web/api/nodelist/entries/index.html @@ -46,8 +46,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.NodeList.entries")}}

    See also

    diff --git a/files/en-us/web/api/nodelist/foreach/index.html b/files/en-us/web/api/nodelist/foreach/index.html index 41e1dbcf38ccc07..934183aa3ff42f9 100644 --- a/files/en-us/web/api/nodelist/foreach/index.html +++ b/files/en-us/web/api/nodelist/foreach/index.html @@ -110,8 +110,6 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.NodeList.forEach")}}

    See also

    diff --git a/files/en-us/web/api/nodelist/index.html b/files/en-us/web/api/nodelist/index.html index d688a6c0d7a9d78..d5a2d8b3e465051 100644 --- a/files/en-us/web/api/nodelist/index.html +++ b/files/en-us/web/api/nodelist/index.html @@ -126,6 +126,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeList")}}

    diff --git a/files/en-us/web/api/nodelist/item/index.html b/files/en-us/web/api/nodelist/item/index.html index d6e8a930154881e..597cbd55d2a41af 100644 --- a/files/en-us/web/api/nodelist/item/index.html +++ b/files/en-us/web/api/nodelist/item/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeList.item")}}

    diff --git a/files/en-us/web/api/nodelist/keys/index.html b/files/en-us/web/api/nodelist/keys/index.html index 287d04de43aed24..4dcef6bf5645580 100644 --- a/files/en-us/web/api/nodelist/keys/index.html +++ b/files/en-us/web/api/nodelist/keys/index.html @@ -49,8 +49,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.NodeList.keys")}}

    See also

    diff --git a/files/en-us/web/api/nodelist/length/index.html b/files/en-us/web/api/nodelist/length/index.html index 38859b80cd2bbe9..ec4a74de84b9604 100644 --- a/files/en-us/web/api/nodelist/length/index.html +++ b/files/en-us/web/api/nodelist/length/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NodeList.length")}}

    diff --git a/files/en-us/web/api/nodelist/values/index.html b/files/en-us/web/api/nodelist/values/index.html index 28bba0dfe86adf9..bdc778e5861d426 100644 --- a/files/en-us/web/api/nodelist/values/index.html +++ b/files/en-us/web/api/nodelist/values/index.html @@ -47,11 +47,8 @@

    Example

    <span> -

    Browser compatibility

    - -

    {{Compat("api.NodeList.values")}}

    See also

    diff --git a/files/en-us/web/api/nondocumenttypechildnode/index.html b/files/en-us/web/api/nondocumenttypechildnode/index.html index 7fd05853acf84ce..d95909ba22c27c6 100644 --- a/files/en-us/web/api/nondocumenttypechildnode/index.html +++ b/files/en-us/web/api/nondocumenttypechildnode/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NonDocumentTypeChildNode")}}

    See also

    diff --git a/files/en-us/web/api/nondocumenttypechildnode/nextelementsibling/index.html b/files/en-us/web/api/nondocumenttypechildnode/nextelementsibling/index.html index 0b43ac5aade0f39..2244d063a726755 100644 --- a/files/en-us/web/api/nondocumenttypechildnode/nextelementsibling/index.html +++ b/files/en-us/web/api/nondocumenttypechildnode/nextelementsibling/index.html @@ -104,7 +104,6 @@

    Browser compatibility

    -

    {{Compat("api.NonDocumentTypeChildNode.nextElementSibling")}}

    diff --git a/files/en-us/web/api/nondocumenttypechildnode/previouselementsibling/index.html b/files/en-us/web/api/nondocumenttypechildnode/previouselementsibling/index.html index a2dccc0e3f79488..9f23e669018d6cd 100644 --- a/files/en-us/web/api/nondocumenttypechildnode/previouselementsibling/index.html +++ b/files/en-us/web/api/nondocumenttypechildnode/previouselementsibling/index.html @@ -117,7 +117,6 @@

    Browser compatibility

    -

    {{Compat("api.NonDocumentTypeChildNode.previousElementSibling")}}

    diff --git a/files/en-us/web/api/notation/index.html b/files/en-us/web/api/notation/index.html index a34b2773ac55ae0..0a0988ddb6c1b2e 100644 --- a/files/en-us/web/api/notation/index.html +++ b/files/en-us/web/api/notation/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notation")}}

    diff --git a/files/en-us/web/api/notification/actions/index.html b/files/en-us/web/api/notification/actions/index.html index 7c2b5bfe467c4bd..b45f6eddb24d49a 100644 --- a/files/en-us/web/api/notification/actions/index.html +++ b/files/en-us/web/api/notification/actions/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.actions")}}

    See also

    diff --git a/files/en-us/web/api/notification/badge/index.html b/files/en-us/web/api/notification/badge/index.html index 43b29e872391be0..cd58921ccdabada 100644 --- a/files/en-us/web/api/notification/badge/index.html +++ b/files/en-us/web/api/notification/badge/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.badge")}}

    diff --git a/files/en-us/web/api/notification/body/index.html b/files/en-us/web/api/notification/body/index.html index 04b1bb53c24867c..a15e66e5431714e 100644 --- a/files/en-us/web/api/notification/body/index.html +++ b/files/en-us/web/api/notification/body/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.body")}}

    See also

    diff --git a/files/en-us/web/api/notification/close/index.html b/files/en-us/web/api/notification/close/index.html index 5fd636d28c6d38a..9b1eec6677b85a6 100644 --- a/files/en-us/web/api/notification/close/index.html +++ b/files/en-us/web/api/notification/close/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.close")}}

    See also

    diff --git a/files/en-us/web/api/notification/data/index.html b/files/en-us/web/api/notification/data/index.html index 3ea28e1ac6e829b..102145eb8668c22 100644 --- a/files/en-us/web/api/notification/data/index.html +++ b/files/en-us/web/api/notification/data/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.data")}}

    See also

    diff --git a/files/en-us/web/api/notification/dir/index.html b/files/en-us/web/api/notification/dir/index.html index 940a08ce64adab3..8b9fd890dc28625 100644 --- a/files/en-us/web/api/notification/dir/index.html +++ b/files/en-us/web/api/notification/dir/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.dir")}}

    See also

    diff --git a/files/en-us/web/api/notification/icon/index.html b/files/en-us/web/api/notification/icon/index.html index b24612f601a9f86..86307ca9d22ea23 100644 --- a/files/en-us/web/api/notification/icon/index.html +++ b/files/en-us/web/api/notification/icon/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.icon")}}

    See also

    diff --git a/files/en-us/web/api/notification/image/index.html b/files/en-us/web/api/notification/image/index.html index b6555b929f17de7..10ffb75b1049d91 100644 --- a/files/en-us/web/api/notification/image/index.html +++ b/files/en-us/web/api/notification/image/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.image")}}

    See also

    diff --git a/files/en-us/web/api/notification/index.html b/files/en-us/web/api/notification/index.html index 524f6b77be89362..babfba8933f5df7 100644 --- a/files/en-us/web/api/notification/index.html +++ b/files/en-us/web/api/notification/index.html @@ -166,8 +166,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification")}}

    See also

    diff --git a/files/en-us/web/api/notification/lang/index.html b/files/en-us/web/api/notification/lang/index.html index 8e1979f5181521e..c89ee316a965f8f 100644 --- a/files/en-us/web/api/notification/lang/index.html +++ b/files/en-us/web/api/notification/lang/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.lang")}}

    See also

    diff --git a/files/en-us/web/api/notification/maxactions/index.html b/files/en-us/web/api/notification/maxactions/index.html index 8c7916104162b88..d3f4951aed583c5 100644 --- a/files/en-us/web/api/notification/maxactions/index.html +++ b/files/en-us/web/api/notification/maxactions/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.maxActions")}}

    See also

    diff --git a/files/en-us/web/api/notification/notification/index.html b/files/en-us/web/api/notification/notification/index.html index 4207d0575282a0e..04c0877e3fca78e 100644 --- a/files/en-us/web/api/notification/notification/index.html +++ b/files/en-us/web/api/notification/notification/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.Notification")}}

    Chrome notes

    diff --git a/files/en-us/web/api/notification/onclick/index.html b/files/en-us/web/api/notification/onclick/index.html index 44cc3fad9d6a120..364127b2695d719 100644 --- a/files/en-us/web/api/notification/onclick/index.html +++ b/files/en-us/web/api/notification/onclick/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.onclick")}}

    See also

    diff --git a/files/en-us/web/api/notification/onclose/index.html b/files/en-us/web/api/notification/onclose/index.html index 2cd2dd0f79b4882..d929792cb0d736c 100644 --- a/files/en-us/web/api/notification/onclose/index.html +++ b/files/en-us/web/api/notification/onclose/index.html @@ -21,8 +21,6 @@

    Syntax

    Browser compatibility

    - -

    {{Compat("api.Notification.onclose")}}

    See also

    diff --git a/files/en-us/web/api/notification/onerror/index.html b/files/en-us/web/api/notification/onerror/index.html index e92b76f642cf1d3..a9d6a8f15e9af83 100644 --- a/files/en-us/web/api/notification/onerror/index.html +++ b/files/en-us/web/api/notification/onerror/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.onerror")}}

    See also

    diff --git a/files/en-us/web/api/notification/onshow/index.html b/files/en-us/web/api/notification/onshow/index.html index 99cbff077a49044..9cda868b2d29731 100644 --- a/files/en-us/web/api/notification/onshow/index.html +++ b/files/en-us/web/api/notification/onshow/index.html @@ -21,8 +21,6 @@

    Syntax

    Browser compatibility

    - -

    {{Compat("api.Notification.onshow")}}

    See also

    diff --git a/files/en-us/web/api/notification/permission/index.html b/files/en-us/web/api/notification/permission/index.html index f781f9b8ae693f0..8f2c8cf92a4465d 100644 --- a/files/en-us/web/api/notification/permission/index.html +++ b/files/en-us/web/api/notification/permission/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.permission")}}

    See also

    diff --git a/files/en-us/web/api/notification/renotify/index.html b/files/en-us/web/api/notification/renotify/index.html index 46f534e124ac176..f0437666ecff2ab 100644 --- a/files/en-us/web/api/notification/renotify/index.html +++ b/files/en-us/web/api/notification/renotify/index.html @@ -54,24 +54,12 @@

    Specifications

    - -

    Browser compatibility

    - - - - - -

    {{Compat("api.Notification.renotify")}}

    - -

    See also

    - - diff --git a/files/en-us/web/api/notification/requestpermission/index.html b/files/en-us/web/api/notification/requestpermission/index.html index 2ccaa99ed0ee3d4..100cac0878c8a76 100644 --- a/files/en-us/web/api/notification/requestpermission/index.html +++ b/files/en-us/web/api/notification/requestpermission/index.html @@ -107,8 +107,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.requestPermission")}}

    See also

    diff --git a/files/en-us/web/api/notification/requireinteraction/index.html b/files/en-us/web/api/notification/requireinteraction/index.html index a4223cb203fedd4..4f0b5fbc3d8d2d4 100644 --- a/files/en-us/web/api/notification/requireinteraction/index.html +++ b/files/en-us/web/api/notification/requireinteraction/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.requireInteraction")}}

    See also

    diff --git a/files/en-us/web/api/notification/silent/index.html b/files/en-us/web/api/notification/silent/index.html index 781217fd746aea5..a31503b96c53d8f 100644 --- a/files/en-us/web/api/notification/silent/index.html +++ b/files/en-us/web/api/notification/silent/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.silent")}}

    See also

    diff --git a/files/en-us/web/api/notification/tag/index.html b/files/en-us/web/api/notification/tag/index.html index de0a73153e52c49..08f88fa9bcf9b90 100644 --- a/files/en-us/web/api/notification/tag/index.html +++ b/files/en-us/web/api/notification/tag/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.tag")}}

    See also

    diff --git a/files/en-us/web/api/notification/timestamp/index.html b/files/en-us/web/api/notification/timestamp/index.html index 63c83900d475333..c04caec606e7336 100644 --- a/files/en-us/web/api/notification/timestamp/index.html +++ b/files/en-us/web/api/notification/timestamp/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.timestamp")}}

    See also

    diff --git a/files/en-us/web/api/notification/title/index.html b/files/en-us/web/api/notification/title/index.html index c17c03fb51c3e00..838e7e43d8c0c32 100644 --- a/files/en-us/web/api/notification/title/index.html +++ b/files/en-us/web/api/notification/title/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.title")}}

    See also

    diff --git a/files/en-us/web/api/notification/vibrate/index.html b/files/en-us/web/api/notification/vibrate/index.html index e326ac933f082d6..8e0c3237078e936 100644 --- a/files/en-us/web/api/notification/vibrate/index.html +++ b/files/en-us/web/api/notification/vibrate/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification.vibrate")}}

    See also

    diff --git a/files/en-us/web/api/notificationaction/index.html b/files/en-us/web/api/notificationaction/index.html index 35a210e01b9e779..efac81f0918fe26 100644 --- a/files/en-us/web/api/notificationaction/index.html +++ b/files/en-us/web/api/notificationaction/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification")}}

    See also

    diff --git a/files/en-us/web/api/notificationevent/action/index.html b/files/en-us/web/api/notificationevent/action/index.html index 74140b7520222b4..dec946af900daf0 100644 --- a/files/en-us/web/api/notificationevent/action/index.html +++ b/files/en-us/web/api/notificationevent/action/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NotificationEvent.action")}}

    diff --git a/files/en-us/web/api/notificationevent/index.html b/files/en-us/web/api/notificationevent/index.html index f2a552c9e814afc..d5d456434d1e7cc 100644 --- a/files/en-us/web/api/notificationevent/index.html +++ b/files/en-us/web/api/notificationevent/index.html @@ -95,6 +95,5 @@

    Browser Compatibility

    -

    {{Compat("api.NotificationEvent")}}

    diff --git a/files/en-us/web/api/notificationevent/notification/index.html b/files/en-us/web/api/notificationevent/notification/index.html index c6ea52a7b752850..c6dfa20d667b623 100644 --- a/files/en-us/web/api/notificationevent/notification/index.html +++ b/files/en-us/web/api/notificationevent/notification/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NotificationEvent.notification")}}

    diff --git a/files/en-us/web/api/notificationevent/notificationevent/index.html b/files/en-us/web/api/notificationevent/notificationevent/index.html index db5e5a9819560b1..66f6b26eb80f2ad 100644 --- a/files/en-us/web/api/notificationevent/notificationevent/index.html +++ b/files/en-us/web/api/notificationevent/notificationevent/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.NotificationEvent.NotificationEvent")}}

    diff --git a/files/en-us/web/api/notifications_api/index.html b/files/en-us/web/api/notifications_api/index.html index 3cd831ee0284460..bf2b3cee3142774 100644 --- a/files/en-us/web/api/notifications_api/index.html +++ b/files/en-us/web/api/notifications_api/index.html @@ -80,8 +80,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Notification")}}

    See also

    diff --git a/files/en-us/web/api/oes_fbo_render_mipmap/index.html b/files/en-us/web/api/oes_fbo_render_mipmap/index.html index 1a97987a3bef778..75bce68a29fa726 100644 --- a/files/en-us/web/api/oes_fbo_render_mipmap/index.html +++ b/files/en-us/web/api/oes_fbo_render_mipmap/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.OES_fbo_render_mipmap")}}

    See also

    diff --git a/files/en-us/web/api/offlineaudiocompletionevent/index.html b/files/en-us/web/api/offlineaudiocompletionevent/index.html index 61d283d33fa27a9..dbff27c4fc7e6d7 100644 --- a/files/en-us/web/api/offlineaudiocompletionevent/index.html +++ b/files/en-us/web/api/offlineaudiocompletionevent/index.html @@ -58,7 +58,6 @@

    Browser compatibility

    -

    {{Compat("api.OfflineAudioCompletionEvent")}}

    diff --git a/files/en-us/web/api/offlineaudiocompletionevent/offlineaudiocompletionevent/index.html b/files/en-us/web/api/offlineaudiocompletionevent/offlineaudiocompletionevent/index.html index 88d49bfc7da8d64..dff57baaac072d0 100644 --- a/files/en-us/web/api/offlineaudiocompletionevent/offlineaudiocompletionevent/index.html +++ b/files/en-us/web/api/offlineaudiocompletionevent/offlineaudiocompletionevent/index.html @@ -59,6 +59,5 @@

    Browser Compatibility

    -

    {{Compat("api.OfflineAudioCompletionEvent.OfflineAudioCompletionEvent")}}

    diff --git a/files/en-us/web/api/offlineaudiocompletionevent/renderedbuffer/index.html b/files/en-us/web/api/offlineaudiocompletionevent/renderedbuffer/index.html index 9e7e19d2d695109..39dacab3d9daeab 100644 --- a/files/en-us/web/api/offlineaudiocompletionevent/renderedbuffer/index.html +++ b/files/en-us/web/api/offlineaudiocompletionevent/renderedbuffer/index.html @@ -42,6 +42,5 @@

    Browser Compatibility

    -

    {{Compat("api.OfflineAudioCompletionEvent.renderedBuffer")}}

    diff --git a/files/en-us/web/api/offlineaudiocontext/complete_event/index.html b/files/en-us/web/api/offlineaudiocontext/complete_event/index.html index 963cdb6230e7848..7566f571a41e65b 100644 --- a/files/en-us/web/api/offlineaudiocontext/complete_event/index.html +++ b/files/en-us/web/api/offlineaudiocontext/complete_event/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.OfflineAudioContext.complete_event")}}

    See also

    diff --git a/files/en-us/web/api/offlineaudiocontext/index.html b/files/en-us/web/api/offlineaudiocontext/index.html index 72217e37964db6f..2554775867ba574 100644 --- a/files/en-us/web/api/offlineaudiocontext/index.html +++ b/files/en-us/web/api/offlineaudiocontext/index.html @@ -153,7 +153,6 @@

    Browser compatibility

    -

    {{Compat("api.OfflineAudioContext")}}

    diff --git a/files/en-us/web/api/offlineaudiocontext/length/index.html b/files/en-us/web/api/offlineaudiocontext/length/index.html index 8e7e8408d04dbcf..28cd6b75be61967 100644 --- a/files/en-us/web/api/offlineaudiocontext/length/index.html +++ b/files/en-us/web/api/offlineaudiocontext/length/index.html @@ -40,6 +40,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.OfflineAudioContext.length")}}

    diff --git a/files/en-us/web/api/offlineaudiocontext/offlineaudiocontext/index.html b/files/en-us/web/api/offlineaudiocontext/offlineaudiocontext/index.html index 44c4e67855fe973..8acefd5345333f3 100644 --- a/files/en-us/web/api/offlineaudiocontext/offlineaudiocontext/index.html +++ b/files/en-us/web/api/offlineaudiocontext/offlineaudiocontext/index.html @@ -73,6 +73,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.OfflineAudioContext.OfflineAudioContext")}}

    diff --git a/files/en-us/web/api/offlineaudiocontext/oncomplete/index.html b/files/en-us/web/api/offlineaudiocontext/oncomplete/index.html index c38780dca840251..d94f04ae884d2ae 100644 --- a/files/en-us/web/api/offlineaudiocontext/oncomplete/index.html +++ b/files/en-us/web/api/offlineaudiocontext/oncomplete/index.html @@ -52,7 +52,6 @@

    Browser compatibility

    -

    {{Compat("api.OfflineAudioContext.oncomplete")}}

    diff --git a/files/en-us/web/api/offlineaudiocontext/resume/index.html b/files/en-us/web/api/offlineaudiocontext/resume/index.html index 6a654e9adb8ebd1..13f931ed0df7a24 100644 --- a/files/en-us/web/api/offlineaudiocontext/resume/index.html +++ b/files/en-us/web/api/offlineaudiocontext/resume/index.html @@ -55,6 +55,5 @@

    Browser compatibility

    -

    {{Compat("api.OfflineAudioContext.resume")}}

    diff --git a/files/en-us/web/api/offlineaudiocontext/startrendering/index.html b/files/en-us/web/api/offlineaudiocontext/startrendering/index.html index dc3bbfa9b470698..4a2fec17ab5ddbe 100644 --- a/files/en-us/web/api/offlineaudiocontext/startrendering/index.html +++ b/files/en-us/web/api/offlineaudiocontext/startrendering/index.html @@ -127,7 +127,6 @@

    Browser compatibility

    -

    {{Compat("api.OfflineAudioContext.startRendering")}}

    diff --git a/files/en-us/web/api/offlineaudiocontext/suspend/index.html b/files/en-us/web/api/offlineaudiocontext/suspend/index.html index ee7fda130d3239a..fe8d02be7e84271 100644 --- a/files/en-us/web/api/offlineaudiocontext/suspend/index.html +++ b/files/en-us/web/api/offlineaudiocontext/suspend/index.html @@ -65,6 +65,5 @@

    Browser compatibility

    -

    {{Compat("api.OfflineAudioContext.suspend")}}

    diff --git a/files/en-us/web/api/offscreencanvas/getcontext/index.html b/files/en-us/web/api/offscreencanvas/getcontext/index.html index 0541a6975883955..4dd0bf5d8415f67 100644 --- a/files/en-us/web/api/offscreencanvas/getcontext/index.html +++ b/files/en-us/web/api/offscreencanvas/getcontext/index.html @@ -110,7 +110,6 @@

    Browser compatibility

    -

    {{Compat("api.OffscreenCanvas.getContext")}}

    diff --git a/files/en-us/web/api/offscreencanvas/height/index.html b/files/en-us/web/api/offscreencanvas/height/index.html index 70ee8715bd58f29..908538e01e41deb 100644 --- a/files/en-us/web/api/offscreencanvas/height/index.html +++ b/files/en-us/web/api/offscreencanvas/height/index.html @@ -18,7 +18,6 @@

    Syntax

    var pxl = offscreen.height;
     offscreen.height = pxl;
    -

    Examples

    Creating a new offscreen canvas and returning or setting the height of the offscreen canvas:

    @@ -49,7 +48,6 @@

    Browser compatibility

    -

    {{Compat("api.OffscreenCanvas.height")}}

    diff --git a/files/en-us/web/api/offscreencanvas/index.html b/files/en-us/web/api/offscreencanvas/index.html index f4bcf68e981a6ba..573bdf37a862d14 100644 --- a/files/en-us/web/api/offscreencanvas/index.html +++ b/files/en-us/web/api/offscreencanvas/index.html @@ -138,7 +138,6 @@

    Browser compatibility

    -

    {{Compat("api.OffscreenCanvas")}}

    diff --git a/files/en-us/web/api/offscreencanvas/offscreencanvas/index.html b/files/en-us/web/api/offscreencanvas/offscreencanvas/index.html index bc6a2f95a00fb7f..60600a2459bbdfa 100644 --- a/files/en-us/web/api/offscreencanvas/offscreencanvas/index.html +++ b/files/en-us/web/api/offscreencanvas/offscreencanvas/index.html @@ -28,7 +28,6 @@

    Parameters

    The height of the offscreen canvas.
    -

    Examples

    This example creates a new offscreen canvas using the OffscreenCanvas() constructor. We then initialize a WebGL context on it using the {{domxref("OffscreenCanvas.getContext()", "getContext()")}} method.

    @@ -58,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.OffscreenCanvas.OffscreenCanvas")}}

    diff --git a/files/en-us/web/api/offscreencanvas/toblob/index.html b/files/en-us/web/api/offscreencanvas/toblob/index.html index fc8aaf23260a4fb..b485c1a6688f409 100644 --- a/files/en-us/web/api/offscreencanvas/toblob/index.html +++ b/files/en-us/web/api/offscreencanvas/toblob/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.OffscreenCanvas.convertToBlob")}}

    diff --git a/files/en-us/web/api/offscreencanvas/transfertoimagebitmap/index.html b/files/en-us/web/api/offscreencanvas/transfertoimagebitmap/index.html index 1d54f68161f24ea..4772028c461cb4a 100644 --- a/files/en-us/web/api/offscreencanvas/transfertoimagebitmap/index.html +++ b/files/en-us/web/api/offscreencanvas/transfertoimagebitmap/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.OffscreenCanvas.transferToImageBitmap")}}

    See also

    diff --git a/files/en-us/web/api/offscreencanvas/width/index.html b/files/en-us/web/api/offscreencanvas/width/index.html index 32f3d71232acdc2..823f343c37ce42b 100644 --- a/files/en-us/web/api/offscreencanvas/width/index.html +++ b/files/en-us/web/api/offscreencanvas/width/index.html @@ -18,7 +18,6 @@

    Syntax

    var pxl = offscreen.width;
     offscreen.width = pxl;
    -

    Examples

    Creating a new offscreen canvas and returning or setting the width of the offscreen canvas:

    @@ -49,7 +48,6 @@

    Browser compatibility

    -

    {{Compat("api.OffscreenCanvas.width")}}

    diff --git a/files/en-us/web/api/orientationsensor/index.html b/files/en-us/web/api/orientationsensor/index.html index 35ad368a6e4edc4..e67897b61d1ce81 100644 --- a/files/en-us/web/api/orientationsensor/index.html +++ b/files/en-us/web/api/orientationsensor/index.html @@ -99,6 +99,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.OrientationSensor")}}

    diff --git a/files/en-us/web/api/orientationsensor/populatematrix/index.html b/files/en-us/web/api/orientationsensor/populatematrix/index.html index f7bc84d14df078c..d3fc93f0928e5ad 100644 --- a/files/en-us/web/api/orientationsensor/populatematrix/index.html +++ b/files/en-us/web/api/orientationsensor/populatematrix/index.html @@ -70,6 +70,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.OrientationSensor.populateMatrix")}}

    diff --git a/files/en-us/web/api/orientationsensor/quaternion/index.html b/files/en-us/web/api/orientationsensor/quaternion/index.html index 1520ad34603a391..6f2d6b1988240a9 100644 --- a/files/en-us/web/api/orientationsensor/quaternion/index.html +++ b/files/en-us/web/api/orientationsensor/quaternion/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.OrientationSensor.quaternion")}}

    diff --git a/files/en-us/web/api/oscillatornode/detune/index.html b/files/en-us/web/api/oscillatornode/detune/index.html index ef0a7ad332c2125..78e7b8e81d880d9 100644 --- a/files/en-us/web/api/oscillatornode/detune/index.html +++ b/files/en-us/web/api/oscillatornode/detune/index.html @@ -64,7 +64,6 @@

    Browser compatibility

    -

    {{Compat("api.OscillatorNode.detune")}}

    diff --git a/files/en-us/web/api/oscillatornode/frequency/index.html b/files/en-us/web/api/oscillatornode/frequency/index.html index 81fa474dc010fd0..3d5df3288387556 100644 --- a/files/en-us/web/api/oscillatornode/frequency/index.html +++ b/files/en-us/web/api/oscillatornode/frequency/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.OscillatorNode.frequency")}}

    diff --git a/files/en-us/web/api/oscillatornode/index.html b/files/en-us/web/api/oscillatornode/index.html index c43a241fec44f21..3e908b6029b8a34 100644 --- a/files/en-us/web/api/oscillatornode/index.html +++ b/files/en-us/web/api/oscillatornode/index.html @@ -123,7 +123,6 @@

    Browser compatibility

    -

    {{Compat("api.OscillatorNode")}}

    diff --git a/files/en-us/web/api/oscillatornode/onended/index.html b/files/en-us/web/api/oscillatornode/onended/index.html index 8d628ac041c4f57..6c9edc4daaf3521 100644 --- a/files/en-us/web/api/oscillatornode/onended/index.html +++ b/files/en-us/web/api/oscillatornode/onended/index.html @@ -64,7 +64,6 @@

    Browser compatibility

    -

    {{Compat("api.OscillatorNode.onended")}}

    diff --git a/files/en-us/web/api/oscillatornode/oscillatornode/index.html b/files/en-us/web/api/oscillatornode/oscillatornode/index.html index 762aded879456a6..45c9e7ce9b37050 100644 --- a/files/en-us/web/api/oscillatornode/oscillatornode/index.html +++ b/files/en-us/web/api/oscillatornode/oscillatornode/index.html @@ -67,6 +67,5 @@

    Browser compatibility

    -

    {{Compat("api.OscillatorNode.OscillatorNode")}}

    diff --git a/files/en-us/web/api/oscillatornode/setperiodicwave/index.html b/files/en-us/web/api/oscillatornode/setperiodicwave/index.html index 2afa5767a9cae15..5ffc5bb6a5d08dc 100644 --- a/files/en-us/web/api/oscillatornode/setperiodicwave/index.html +++ b/files/en-us/web/api/oscillatornode/setperiodicwave/index.html @@ -82,7 +82,6 @@

    Browser compatibility

    -

    {{Compat("api.OscillatorNode.setPeriodicWave")}}

    diff --git a/files/en-us/web/api/oscillatornode/start/index.html b/files/en-us/web/api/oscillatornode/start/index.html index ea6d62149dba4ed..b8f9e9fec6d2f47 100644 --- a/files/en-us/web/api/oscillatornode/start/index.html +++ b/files/en-us/web/api/oscillatornode/start/index.html @@ -61,7 +61,6 @@

    Browser compatibility

    -

    {{Compat("api.OscillatorNode.start")}}

    diff --git a/files/en-us/web/api/oscillatornode/stop/index.html b/files/en-us/web/api/oscillatornode/stop/index.html index bb3af0222d37819..8a471d33f03942f 100644 --- a/files/en-us/web/api/oscillatornode/stop/index.html +++ b/files/en-us/web/api/oscillatornode/stop/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.OscillatorNode.stop")}}

    diff --git a/files/en-us/web/api/oscillatornode/type/index.html b/files/en-us/web/api/oscillatornode/type/index.html index 80402c8dd1a5ac6..3386ff19aeef753 100644 --- a/files/en-us/web/api/oscillatornode/type/index.html +++ b/files/en-us/web/api/oscillatornode/type/index.html @@ -78,7 +78,6 @@

    Browser compatibility

    -

    {{Compat("api.OscillatorNode.type")}}

    diff --git a/files/en-us/web/api/overconstrainederror/constraint/index.html b/files/en-us/web/api/overconstrainederror/constraint/index.html index 40f8ae4dd502c6e..40b9dae14b9383e 100644 --- a/files/en-us/web/api/overconstrainederror/constraint/index.html +++ b/files/en-us/web/api/overconstrainederror/constraint/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.OverconstrainedError.constraint")}}

    diff --git a/files/en-us/web/api/overconstrainederror/index.html b/files/en-us/web/api/overconstrainederror/index.html index e27090411b29b40..d85e38b18b23c7d 100644 --- a/files/en-us/web/api/overconstrainederror/index.html +++ b/files/en-us/web/api/overconstrainederror/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.OverconstrainedError")}}

    diff --git a/files/en-us/web/api/overconstrainederror/overconstrainederror/index.html b/files/en-us/web/api/overconstrainederror/overconstrainederror/index.html index 4ab60aec0f06a1c..7484d1c59ecd016 100644 --- a/files/en-us/web/api/overconstrainederror/overconstrainederror/index.html +++ b/files/en-us/web/api/overconstrainederror/overconstrainederror/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.OverconstrainedError.OverconstrainedError")}}

    diff --git a/files/en-us/web/api/page_visibility_api/index.html b/files/en-us/web/api/page_visibility_api/index.html index 89ac16dcfd770c6..bff1a0d39a1e700 100644 --- a/files/en-us/web/api/page_visibility_api/index.html +++ b/files/en-us/web/api/page_visibility_api/index.html @@ -188,7 +188,6 @@

    Document.visibilityState

    -

    {{Compat("api.Document.visibilityState")}}

    diff --git a/files/en-us/web/api/pagetransitionevent/index.html b/files/en-us/web/api/pagetransitionevent/index.html index 292a56f8db5cff4..81f0233253531f5 100644 --- a/files/en-us/web/api/pagetransitionevent/index.html +++ b/files/en-us/web/api/pagetransitionevent/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PageTransitionEvent")}}

    See also

    diff --git a/files/en-us/web/api/pagetransitionevent/persisted/index.html b/files/en-us/web/api/pagetransitionevent/persisted/index.html index e796afea67bc6a7..6e33d38ebd24881 100644 --- a/files/en-us/web/api/pagetransitionevent/persisted/index.html +++ b/files/en-us/web/api/pagetransitionevent/persisted/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PageTransitionEvent.persisted")}}

    diff --git a/files/en-us/web/api/paintworklet/devicepixelratio/index.html b/files/en-us/web/api/paintworklet/devicepixelratio/index.html index a96342f5e7bbead..66d3587ac57f8e9 100644 --- a/files/en-us/web/api/paintworklet/devicepixelratio/index.html +++ b/files/en-us/web/api/paintworklet/devicepixelratio/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaintWorkletGlobalScope.devicePixelRatio")}}

    See Also

    diff --git a/files/en-us/web/api/paintworklet/devicepizelratio/index.html b/files/en-us/web/api/paintworklet/devicepizelratio/index.html index 318cf5cb04d52e2..c56db7b0cc15bca 100644 --- a/files/en-us/web/api/paintworklet/devicepizelratio/index.html +++ b/files/en-us/web/api/paintworklet/devicepizelratio/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaintWorklet.PaintWorklet.devicePixelRatio")}}

     

    diff --git a/files/en-us/web/api/paintworklet/index.html b/files/en-us/web/api/paintworklet/index.html index d1404f9306397cd..706a43e07b674ad 100644 --- a/files/en-us/web/api/paintworklet/index.html +++ b/files/en-us/web/api/paintworklet/index.html @@ -113,8 +113,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaintWorkletGlobalScope")}}

    See Also

    diff --git a/files/en-us/web/api/paintworklet/paintworklet.devicepixelratio/index.html b/files/en-us/web/api/paintworklet/paintworklet.devicepixelratio/index.html index b057dfedc1b3ef8..ee21803c751725e 100644 --- a/files/en-us/web/api/paintworklet/paintworklet.devicepixelratio/index.html +++ b/files/en-us/web/api/paintworklet/paintworklet.devicepixelratio/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaintWorklet.PaintWorklet.devicePixelRatio")}}

    See Also

    diff --git a/files/en-us/web/api/paintworklet/registerpaint/index.html b/files/en-us/web/api/paintworklet/registerpaint/index.html index ca033d64b8c86ca..0d9a3d4f2d14ba5 100644 --- a/files/en-us/web/api/paintworklet/registerpaint/index.html +++ b/files/en-us/web/api/paintworklet/registerpaint/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaintWorkletGlobalScope.registerPaint")}}

    See Also

    diff --git a/files/en-us/web/api/pannernode/coneinnerangle/index.html b/files/en-us/web/api/pannernode/coneinnerangle/index.html index 3ef20396a817e08..8c7218f0a4e4537 100644 --- a/files/en-us/web/api/pannernode/coneinnerangle/index.html +++ b/files/en-us/web/api/pannernode/coneinnerangle/index.html @@ -52,7 +52,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.coneInnerAngle")}}

    diff --git a/files/en-us/web/api/pannernode/coneouterangle/index.html b/files/en-us/web/api/pannernode/coneouterangle/index.html index 84f40ff0ea68251..52fc1465980d935 100644 --- a/files/en-us/web/api/pannernode/coneouterangle/index.html +++ b/files/en-us/web/api/pannernode/coneouterangle/index.html @@ -53,7 +53,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.coneOuterAngle")}}

    diff --git a/files/en-us/web/api/pannernode/coneoutergain/index.html b/files/en-us/web/api/pannernode/coneoutergain/index.html index 3f518326377b4fe..000225a62c834de 100644 --- a/files/en-us/web/api/pannernode/coneoutergain/index.html +++ b/files/en-us/web/api/pannernode/coneoutergain/index.html @@ -60,7 +60,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.coneOuterGain")}}

    diff --git a/files/en-us/web/api/pannernode/distancemodel/index.html b/files/en-us/web/api/pannernode/distancemodel/index.html index 1137465478b4a80..d898fb73acf8f69 100644 --- a/files/en-us/web/api/pannernode/distancemodel/index.html +++ b/files/en-us/web/api/pannernode/distancemodel/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.distanceModel")}}

    diff --git a/files/en-us/web/api/pannernode/index.html b/files/en-us/web/api/pannernode/index.html index a97ec36e0fae353..9c3338f14387c1a 100644 --- a/files/en-us/web/api/pannernode/index.html +++ b/files/en-us/web/api/pannernode/index.html @@ -133,7 +133,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode")}}

    diff --git a/files/en-us/web/api/pannernode/maxdistance/index.html b/files/en-us/web/api/pannernode/maxdistance/index.html index 17cc026c6902bc0..166d7c957278c9a 100644 --- a/files/en-us/web/api/pannernode/maxdistance/index.html +++ b/files/en-us/web/api/pannernode/maxdistance/index.html @@ -59,7 +59,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.maxDistance")}}

    diff --git a/files/en-us/web/api/pannernode/orientationx/index.html b/files/en-us/web/api/pannernode/orientationx/index.html index 278843d49898677..b382e8d57715272 100644 --- a/files/en-us/web/api/pannernode/orientationx/index.html +++ b/files/en-us/web/api/pannernode/orientationx/index.html @@ -130,7 +130,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.orientationX")}}

    diff --git a/files/en-us/web/api/pannernode/orientationy/index.html b/files/en-us/web/api/pannernode/orientationy/index.html index 3fe1ea2d8a45c95..57fbc2fff62563d 100644 --- a/files/en-us/web/api/pannernode/orientationy/index.html +++ b/files/en-us/web/api/pannernode/orientationy/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.orientationY")}}

    diff --git a/files/en-us/web/api/pannernode/orientationz/index.html b/files/en-us/web/api/pannernode/orientationz/index.html index 43a0ea7bbff61f7..fb237a8c676e871 100644 --- a/files/en-us/web/api/pannernode/orientationz/index.html +++ b/files/en-us/web/api/pannernode/orientationz/index.html @@ -55,7 +55,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.orientationZ")}}

    diff --git a/files/en-us/web/api/pannernode/pannernode/index.html b/files/en-us/web/api/pannernode/pannernode/index.html index cdea44a4397cb1a..0da0f110e2555cd 100644 --- a/files/en-us/web/api/pannernode/pannernode/index.html +++ b/files/en-us/web/api/pannernode/pannernode/index.html @@ -88,6 +88,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PannerNode.PannerNode")}}

    diff --git a/files/en-us/web/api/pannernode/panningmodel/index.html b/files/en-us/web/api/pannernode/panningmodel/index.html index 8629b76ddafaae9..df06c65ceb0d914 100644 --- a/files/en-us/web/api/pannernode/panningmodel/index.html +++ b/files/en-us/web/api/pannernode/panningmodel/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.panningModel")}}

    diff --git a/files/en-us/web/api/pannernode/positionx/index.html b/files/en-us/web/api/pannernode/positionx/index.html index 88335d56961c959..93d707e8ab48806 100644 --- a/files/en-us/web/api/pannernode/positionx/index.html +++ b/files/en-us/web/api/pannernode/positionx/index.html @@ -75,7 +75,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.positionX")}}

    diff --git a/files/en-us/web/api/pannernode/positiony/index.html b/files/en-us/web/api/pannernode/positiony/index.html index 9aedc3441577a31..d8c57aff6607b2f 100644 --- a/files/en-us/web/api/pannernode/positiony/index.html +++ b/files/en-us/web/api/pannernode/positiony/index.html @@ -74,7 +74,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.positionY")}}

    diff --git a/files/en-us/web/api/pannernode/positionz/index.html b/files/en-us/web/api/pannernode/positionz/index.html index efad7d2a14b0540..8d099dc1a876601 100644 --- a/files/en-us/web/api/pannernode/positionz/index.html +++ b/files/en-us/web/api/pannernode/positionz/index.html @@ -74,7 +74,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.positionZ")}}

    diff --git a/files/en-us/web/api/pannernode/refdistance/index.html b/files/en-us/web/api/pannernode/refdistance/index.html index 11e1831299bb973..f16c809958172ca 100644 --- a/files/en-us/web/api/pannernode/refdistance/index.html +++ b/files/en-us/web/api/pannernode/refdistance/index.html @@ -97,7 +97,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.refDistance")}}

    diff --git a/files/en-us/web/api/pannernode/rollofffactor/index.html b/files/en-us/web/api/pannernode/rollofffactor/index.html index c66dbae79e91650..1dfcb3446388e61 100644 --- a/files/en-us/web/api/pannernode/rollofffactor/index.html +++ b/files/en-us/web/api/pannernode/rollofffactor/index.html @@ -109,7 +109,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.rolloffFactor")}}

    diff --git a/files/en-us/web/api/pannernode/setorientation/index.html b/files/en-us/web/api/pannernode/setorientation/index.html index 0606d43e437b35b..3edd8b131c09918 100644 --- a/files/en-us/web/api/pannernode/setorientation/index.html +++ b/files/en-us/web/api/pannernode/setorientation/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.setOrientation")}}

    diff --git a/files/en-us/web/api/pannernode/setposition/index.html b/files/en-us/web/api/pannernode/setposition/index.html index d670945ec5772c5..4d64c092b66e9f9 100644 --- a/files/en-us/web/api/pannernode/setposition/index.html +++ b/files/en-us/web/api/pannernode/setposition/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.setPosition")}}

    diff --git a/files/en-us/web/api/pannernode/setvelocity/index.html b/files/en-us/web/api/pannernode/setvelocity/index.html index 88230609d827efa..38251968075cb36 100644 --- a/files/en-us/web/api/pannernode/setvelocity/index.html +++ b/files/en-us/web/api/pannernode/setvelocity/index.html @@ -53,7 +53,6 @@

    Browser compatibility

    -

    {{Compat("api.PannerNode.setVelocity")}}

    diff --git a/files/en-us/web/api/parentnode/append/index.html b/files/en-us/web/api/parentnode/append/index.html index 9938b271c476b2d..8374fd67f6b4f20 100644 --- a/files/en-us/web/api/parentnode/append/index.html +++ b/files/en-us/web/api/parentnode/append/index.html @@ -127,8 +127,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ParentNode.append")}}

    See also

    diff --git a/files/en-us/web/api/parentnode/childelementcount/index.html b/files/en-us/web/api/parentnode/childelementcount/index.html index 1e467906a33f649..48e5864bb96cc76 100644 --- a/files/en-us/web/api/parentnode/childelementcount/index.html +++ b/files/en-us/web/api/parentnode/childelementcount/index.html @@ -82,8 +82,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ParentNode.childElementCount")}}

    See also

    diff --git a/files/en-us/web/api/parentnode/children/index.html b/files/en-us/web/api/parentnode/children/index.html index a82866463e3750f..63e4869fbf28493 100644 --- a/files/en-us/web/api/parentnode/children/index.html +++ b/files/en-us/web/api/parentnode/children/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ParentNode.children")}}

    See also

    diff --git a/files/en-us/web/api/parentnode/firstelementchild/index.html b/files/en-us/web/api/parentnode/firstelementchild/index.html index 6ba901f6587d43e..f1cce4c43e996cd 100644 --- a/files/en-us/web/api/parentnode/firstelementchild/index.html +++ b/files/en-us/web/api/parentnode/firstelementchild/index.html @@ -83,8 +83,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ParentNode.firstElementChild")}}

    See also

    diff --git a/files/en-us/web/api/parentnode/index.html b/files/en-us/web/api/parentnode/index.html index 4dc14a269e5e271..59ebed51df23c5c 100644 --- a/files/en-us/web/api/parentnode/index.html +++ b/files/en-us/web/api/parentnode/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ParentNode")}}

    See also

    diff --git a/files/en-us/web/api/parentnode/lastelementchild/index.html b/files/en-us/web/api/parentnode/lastelementchild/index.html index d3e4934802a27d0..6563ef9a09c130d 100644 --- a/files/en-us/web/api/parentnode/lastelementchild/index.html +++ b/files/en-us/web/api/parentnode/lastelementchild/index.html @@ -80,8 +80,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ParentNode.lastElementChild")}}

    See also

    diff --git a/files/en-us/web/api/parentnode/prepend/index.html b/files/en-us/web/api/parentnode/prepend/index.html index b4d140166937f2e..86ab35f638a31b7 100644 --- a/files/en-us/web/api/parentnode/prepend/index.html +++ b/files/en-us/web/api/parentnode/prepend/index.html @@ -126,8 +126,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ParentNode.prepend")}}

    See also

    diff --git a/files/en-us/web/api/parentnode/queryselector/index.html b/files/en-us/web/api/parentnode/queryselector/index.html index f3c3fda1e6b059e..b78357089bdf83b 100644 --- a/files/en-us/web/api/parentnode/queryselector/index.html +++ b/files/en-us/web/api/parentnode/queryselector/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ParentNode.querySelector")}}

    See also

    diff --git a/files/en-us/web/api/parentnode/queryselectorall/index.html b/files/en-us/web/api/parentnode/queryselectorall/index.html index 40239e76d3d8aad..a62d109a044188a 100644 --- a/files/en-us/web/api/parentnode/queryselectorall/index.html +++ b/files/en-us/web/api/parentnode/queryselectorall/index.html @@ -147,8 +147,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ParentNode.querySelectorAll")}}

    See also

    diff --git a/files/en-us/web/api/parentnode/replacechildren/index.html b/files/en-us/web/api/parentnode/replacechildren/index.html index 645c216b2e9200e..ec366099b06613f 100644 --- a/files/en-us/web/api/parentnode/replacechildren/index.html +++ b/files/en-us/web/api/parentnode/replacechildren/index.html @@ -154,8 +154,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ParentNode.replaceChildren")}}

    See also

    diff --git a/files/en-us/web/api/passwordcredential/additionaldata/index.html b/files/en-us/web/api/passwordcredential/additionaldata/index.html index af736333b6f12b9..59cabd64f1f7206 100644 --- a/files/en-us/web/api/passwordcredential/additionaldata/index.html +++ b/files/en-us/web/api/passwordcredential/additionaldata/index.html @@ -64,6 +64,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PasswordCredential.additionalData")}}

    diff --git a/files/en-us/web/api/passwordcredential/iconurl/index.html b/files/en-us/web/api/passwordcredential/iconurl/index.html index 3f8bea33dc30d83..bc90fae0a3be6f6 100644 --- a/files/en-us/web/api/passwordcredential/iconurl/index.html +++ b/files/en-us/web/api/passwordcredential/iconurl/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PasswordCredential.iconURL")}}

    diff --git a/files/en-us/web/api/passwordcredential/idname/index.html b/files/en-us/web/api/passwordcredential/idname/index.html index e11a14cd3a65a41..fb180fa56014e65 100644 --- a/files/en-us/web/api/passwordcredential/idname/index.html +++ b/files/en-us/web/api/passwordcredential/idname/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PasswordCredential.idName")}}

    diff --git a/files/en-us/web/api/passwordcredential/index.html b/files/en-us/web/api/passwordcredential/index.html index d8119ad3420a997..04f839695df0f71 100644 --- a/files/en-us/web/api/passwordcredential/index.html +++ b/files/en-us/web/api/passwordcredential/index.html @@ -87,6 +87,5 @@

    Browser Compatibility

    -

    {{Compat("api.PasswordCredential")}}

    diff --git a/files/en-us/web/api/passwordcredential/name/index.html b/files/en-us/web/api/passwordcredential/name/index.html index 146772c886bccd4..22c9a1efbcb8c39 100644 --- a/files/en-us/web/api/passwordcredential/name/index.html +++ b/files/en-us/web/api/passwordcredential/name/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PasswordCredential.name")}}

    diff --git a/files/en-us/web/api/passwordcredential/password/index.html b/files/en-us/web/api/passwordcredential/password/index.html index 0d78992be71b940..a823b77cc4cdc6f 100644 --- a/files/en-us/web/api/passwordcredential/password/index.html +++ b/files/en-us/web/api/passwordcredential/password/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PasswordCredential.password")}}

    diff --git a/files/en-us/web/api/passwordcredential/passwordcredential/index.html b/files/en-us/web/api/passwordcredential/passwordcredential/index.html index d845ce9bb9bba5d..630510eacdbbb4e 100644 --- a/files/en-us/web/api/passwordcredential/passwordcredential/index.html +++ b/files/en-us/web/api/passwordcredential/passwordcredential/index.html @@ -79,6 +79,5 @@

    Browser compatibility

    -

    {{Compat("api.PasswordCredential.PasswordCredential")}}

    diff --git a/files/en-us/web/api/passwordcredential/passwordname/index.html b/files/en-us/web/api/passwordcredential/passwordname/index.html index daca7159e6f0021..f296953181f6c83 100644 --- a/files/en-us/web/api/passwordcredential/passwordname/index.html +++ b/files/en-us/web/api/passwordcredential/passwordname/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PasswordCredential.passwordName")}}

    diff --git a/files/en-us/web/api/path2d/addpath/index.html b/files/en-us/web/api/path2d/addpath/index.html index 8dcef5096019773..cad3d027270322e 100644 --- a/files/en-us/web/api/path2d/addpath/index.html +++ b/files/en-us/web/api/path2d/addpath/index.html @@ -88,8 +88,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Path2D.addPath")}}

    See also

    diff --git a/files/en-us/web/api/path2d/index.html b/files/en-us/web/api/path2d/index.html index 26756463f335474..abb6c9cd5107f6b 100644 --- a/files/en-us/web/api/path2d/index.html +++ b/files/en-us/web/api/path2d/index.html @@ -67,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.Path2D")}}

    diff --git a/files/en-us/web/api/path2d/path2d/index.html b/files/en-us/web/api/path2d/path2d/index.html index 72415d0b4d25704..25eef307a3757be 100644 --- a/files/en-us/web/api/path2d/path2d/index.html +++ b/files/en-us/web/api/path2d/path2d/index.html @@ -31,7 +31,6 @@

    Parameters

    When invoked with a string consisting of SVG path data, a new path is created from that description.
    -

    Examples

    Creating and copying paths

    @@ -95,7 +94,6 @@

    Browser compatibility

    -

    {{Compat("api.Path2D.Path2D")}}

    diff --git a/files/en-us/web/api/payererrors/email/index.html b/files/en-us/web/api/payererrors/email/index.html index 953a8b658c0544f..52ed08f7d2e8a75 100644 --- a/files/en-us/web/api/payererrors/email/index.html +++ b/files/en-us/web/api/payererrors/email/index.html @@ -73,6 +73,5 @@

    Browser compatibility

    -

    {{Compat("api.PayerErrors.email")}}

    diff --git a/files/en-us/web/api/payererrors/index.html b/files/en-us/web/api/payererrors/index.html index 11a732218b4aa09..8f8910e8a85712e 100644 --- a/files/en-us/web/api/payererrors/index.html +++ b/files/en-us/web/api/payererrors/index.html @@ -55,6 +55,5 @@

    Browser compatibility

    -

    {{Compat("api.PayerErrors")}}

    diff --git a/files/en-us/web/api/payererrors/name/index.html b/files/en-us/web/api/payererrors/name/index.html index 1e2d338fec076cc..dc75af067ac353c 100644 --- a/files/en-us/web/api/payererrors/name/index.html +++ b/files/en-us/web/api/payererrors/name/index.html @@ -77,6 +77,5 @@

    Browser compatibility

    -

    {{Compat("api.PayerErrors.name")}}

    diff --git a/files/en-us/web/api/payererrors/phone/index.html b/files/en-us/web/api/payererrors/phone/index.html index c4bb538342d10d3..33939d0f7cddbb6 100644 --- a/files/en-us/web/api/payererrors/phone/index.html +++ b/files/en-us/web/api/payererrors/phone/index.html @@ -78,6 +78,5 @@

    Browser compatibility

    -

    {{Compat("api.PayerErrors.phone")}}

    diff --git a/files/en-us/web/api/payment_request_api/index.html b/files/en-us/web/api/payment_request_api/index.html index d459aa9f868f2a3..dd6cb09d3f0d49c 100644 --- a/files/en-us/web/api/payment_request_api/index.html +++ b/files/en-us/web/api/payment_request_api/index.html @@ -60,7 +60,6 @@

    Interfaces

    Represents the browser requiring the merchant (website) to validate themselves as allowed to use a particular payment handler (e.g., registered as allowed to use Apple Pay).
    -

    Dictionaries

    @@ -119,7 +118,6 @@

    PaymentRequest interface

    -

    {{Compat("api.PaymentRequest", 0)}}

    diff --git a/files/en-us/web/api/paymentaddress/addressline/index.html b/files/en-us/web/api/paymentaddress/addressline/index.html index 619c856abb1b919..b3e19d3a15fbb1d 100644 --- a/files/en-us/web/api/paymentaddress/addressline/index.html +++ b/files/en-us/web/api/paymentaddress/addressline/index.html @@ -79,6 +79,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress.addressLine")}}

    diff --git a/files/en-us/web/api/paymentaddress/city/index.html b/files/en-us/web/api/paymentaddress/city/index.html index 0341cd412bbd4a5..873ce92f3aecc23 100644 --- a/files/en-us/web/api/paymentaddress/city/index.html +++ b/files/en-us/web/api/paymentaddress/city/index.html @@ -49,6 +49,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress.city")}}

    diff --git a/files/en-us/web/api/paymentaddress/country/index.html b/files/en-us/web/api/paymentaddress/country/index.html index f3f4792a76701ab..e8f00a1f14336d5 100644 --- a/files/en-us/web/api/paymentaddress/country/index.html +++ b/files/en-us/web/api/paymentaddress/country/index.html @@ -52,7 +52,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress.country")}}

    See also

    diff --git a/files/en-us/web/api/paymentaddress/dependentlocality/index.html b/files/en-us/web/api/paymentaddress/dependentlocality/index.html index cc6bc3710dace02..8db609e1a1ad4a4 100644 --- a/files/en-us/web/api/paymentaddress/dependentlocality/index.html +++ b/files/en-us/web/api/paymentaddress/dependentlocality/index.html @@ -45,6 +45,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress.dependentLocality")}}

    diff --git a/files/en-us/web/api/paymentaddress/index.html b/files/en-us/web/api/paymentaddress/index.html index 98297239bc57d9c..59d6b538e1930e7 100644 --- a/files/en-us/web/api/paymentaddress/index.html +++ b/files/en-us/web/api/paymentaddress/index.html @@ -145,6 +145,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress")}}

    diff --git a/files/en-us/web/api/paymentaddress/languagecode/index.html b/files/en-us/web/api/paymentaddress/languagecode/index.html index c6a2cb16ced0a86..a067cf964ced221 100644 --- a/files/en-us/web/api/paymentaddress/languagecode/index.html +++ b/files/en-us/web/api/paymentaddress/languagecode/index.html @@ -33,6 +33,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress.languageCode")}}

    diff --git a/files/en-us/web/api/paymentaddress/organization/index.html b/files/en-us/web/api/paymentaddress/organization/index.html index 02174aac4b73a11..36ab98b172d5339 100644 --- a/files/en-us/web/api/paymentaddress/organization/index.html +++ b/files/en-us/web/api/paymentaddress/organization/index.html @@ -49,6 +49,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress.organization")}}

    diff --git a/files/en-us/web/api/paymentaddress/phone/index.html b/files/en-us/web/api/paymentaddress/phone/index.html index de0777f87d0365a..93c2cfe0bd572cc 100644 --- a/files/en-us/web/api/paymentaddress/phone/index.html +++ b/files/en-us/web/api/paymentaddress/phone/index.html @@ -49,6 +49,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress.phone")}}

    diff --git a/files/en-us/web/api/paymentaddress/postalcode/index.html b/files/en-us/web/api/paymentaddress/postalcode/index.html index d73bd18c282a3cf..374e06829246e6e 100644 --- a/files/en-us/web/api/paymentaddress/postalcode/index.html +++ b/files/en-us/web/api/paymentaddress/postalcode/index.html @@ -55,7 +55,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress.postalCode")}}

    See also

    diff --git a/files/en-us/web/api/paymentaddress/recipient/index.html b/files/en-us/web/api/paymentaddress/recipient/index.html index da5f1bcd4da9a52..9794ec33e3ee23b 100644 --- a/files/en-us/web/api/paymentaddress/recipient/index.html +++ b/files/en-us/web/api/paymentaddress/recipient/index.html @@ -43,6 +43,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress.recipient")}}

    diff --git a/files/en-us/web/api/paymentaddress/region/index.html b/files/en-us/web/api/paymentaddress/region/index.html index 1e5aa8375833aa6..c5c629116baaac4 100644 --- a/files/en-us/web/api/paymentaddress/region/index.html +++ b/files/en-us/web/api/paymentaddress/region/index.html @@ -55,6 +55,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress.region")}}

    diff --git a/files/en-us/web/api/paymentaddress/regioncode/index.html b/files/en-us/web/api/paymentaddress/regioncode/index.html index 72f55f70041f5b7..ae3db66b6e059cc 100644 --- a/files/en-us/web/api/paymentaddress/regioncode/index.html +++ b/files/en-us/web/api/paymentaddress/regioncode/index.html @@ -38,7 +38,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress.regionCode")}}

    See also

    @@ -48,5 +47,4 @@

    See also

  • {{interwiki("wikipedia", "ISO 3166-2")}} on Wikipedia
  • -
    diff --git a/files/en-us/web/api/paymentaddress/sortingcode/index.html b/files/en-us/web/api/paymentaddress/sortingcode/index.html index e819a5ba5dc4a11..bd7c3ca203ea195 100644 --- a/files/en-us/web/api/paymentaddress/sortingcode/index.html +++ b/files/en-us/web/api/paymentaddress/sortingcode/index.html @@ -47,6 +47,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentAddress.sortingCode")}}

    diff --git a/files/en-us/web/api/paymentaddress/tojson/index.html b/files/en-us/web/api/paymentaddress/tojson/index.html index a40f7b3b10208c0..a11d953d7928f61 100644 --- a/files/en-us/web/api/paymentaddress/tojson/index.html +++ b/files/en-us/web/api/paymentaddress/tojson/index.html @@ -48,6 +48,5 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentAddress.toJSON")}}

    diff --git a/files/en-us/web/api/paymentcurrencyamount/currency/index.html b/files/en-us/web/api/paymentcurrencyamount/currency/index.html index b3c2af69e9a2386..d60f502f4851fad 100644 --- a/files/en-us/web/api/paymentcurrencyamount/currency/index.html +++ b/files/en-us/web/api/paymentcurrencyamount/currency/index.html @@ -56,7 +56,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentCurrencyAmount.currency")}}

    diff --git a/files/en-us/web/api/paymentcurrencyamount/currencysystem/index.html b/files/en-us/web/api/paymentcurrencyamount/currencysystem/index.html index 8ed425fc8eac60a..bd549a77d8263d9 100644 --- a/files/en-us/web/api/paymentcurrencyamount/currencysystem/index.html +++ b/files/en-us/web/api/paymentcurrencyamount/currencysystem/index.html @@ -60,7 +60,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentCurrencyAmount.currencySystem")}}

    diff --git a/files/en-us/web/api/paymentcurrencyamount/index.html b/files/en-us/web/api/paymentcurrencyamount/index.html index bbfc980f2f944f3..09b01628d135e65 100644 --- a/files/en-us/web/api/paymentcurrencyamount/index.html +++ b/files/en-us/web/api/paymentcurrencyamount/index.html @@ -61,6 +61,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentCurrencyAmount")}}

    diff --git a/files/en-us/web/api/paymentcurrencyamount/value/index.html b/files/en-us/web/api/paymentcurrencyamount/value/index.html index 1b9953e24a2eb27..901ee3158609b26 100644 --- a/files/en-us/web/api/paymentcurrencyamount/value/index.html +++ b/files/en-us/web/api/paymentcurrencyamount/value/index.html @@ -96,7 +96,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentCurrencyAmount.value")}}

    diff --git a/files/en-us/web/api/paymentdetailsbase/index.html b/files/en-us/web/api/paymentdetailsbase/index.html index 3a52099713d519e..9c8d4f244df3a47 100644 --- a/files/en-us/web/api/paymentdetailsbase/index.html +++ b/files/en-us/web/api/paymentdetailsbase/index.html @@ -60,6 +60,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentDetailsBase")}}

    diff --git a/files/en-us/web/api/paymentdetailsupdate/error/index.html b/files/en-us/web/api/paymentdetailsupdate/error/index.html index 5cbcd662bd8fb7d..7b2e1613a51e101 100644 --- a/files/en-us/web/api/paymentdetailsupdate/error/index.html +++ b/files/en-us/web/api/paymentdetailsupdate/error/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentDetailsUpdate.error")}}

    diff --git a/files/en-us/web/api/paymentdetailsupdate/index.html b/files/en-us/web/api/paymentdetailsupdate/index.html index 5df2b8470d64147..3145c72327a02c1 100644 --- a/files/en-us/web/api/paymentdetailsupdate/index.html +++ b/files/en-us/web/api/paymentdetailsupdate/index.html @@ -58,7 +58,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentDetailsUpdate")}}

    diff --git a/files/en-us/web/api/paymentdetailsupdate/shippingaddresserrors/index.html b/files/en-us/web/api/paymentdetailsupdate/shippingaddresserrors/index.html index 5192f882f1731c7..24c4aa8650042e4 100644 --- a/files/en-us/web/api/paymentdetailsupdate/shippingaddresserrors/index.html +++ b/files/en-us/web/api/paymentdetailsupdate/shippingaddresserrors/index.html @@ -48,6 +48,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentDetailsUpdate.shippingAddressErrors")}}

    diff --git a/files/en-us/web/api/paymentitem/index.html b/files/en-us/web/api/paymentitem/index.html index b5a7a58c2ecdb5e..f74eca461752c9e 100644 --- a/files/en-us/web/api/paymentitem/index.html +++ b/files/en-us/web/api/paymentitem/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentItem")}}

    diff --git a/files/en-us/web/api/paymentmethodchangeevent/index.html b/files/en-us/web/api/paymentmethodchangeevent/index.html index a3d40cc806e4769..656fcf68482e73c 100644 --- a/files/en-us/web/api/paymentmethodchangeevent/index.html +++ b/files/en-us/web/api/paymentmethodchangeevent/index.html @@ -59,6 +59,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentMethodChangeEvent")}}

    diff --git a/files/en-us/web/api/paymentmethodchangeevent/methoddetails/index.html b/files/en-us/web/api/paymentmethodchangeevent/methoddetails/index.html index 3b2d5fa50ee2cdc..ae4309e0fc45213 100644 --- a/files/en-us/web/api/paymentmethodchangeevent/methoddetails/index.html +++ b/files/en-us/web/api/paymentmethodchangeevent/methoddetails/index.html @@ -74,6 +74,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentMethodChangeEvent.methodDetails")}}

    diff --git a/files/en-us/web/api/paymentmethodchangeevent/methodname/index.html b/files/en-us/web/api/paymentmethodchangeevent/methodname/index.html index 8a179732334ed2a..023a58b2e958780 100644 --- a/files/en-us/web/api/paymentmethodchangeevent/methodname/index.html +++ b/files/en-us/web/api/paymentmethodchangeevent/methodname/index.html @@ -72,6 +72,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentMethodChangeEvent.methodName")}}

    diff --git a/files/en-us/web/api/paymentmethodchangeevent/paymentmethodchangeevent/index.html b/files/en-us/web/api/paymentmethodchangeevent/paymentmethodchangeevent/index.html index a93fb7994bdc720..9f0c14ef9eaa221 100644 --- a/files/en-us/web/api/paymentmethodchangeevent/paymentmethodchangeevent/index.html +++ b/files/en-us/web/api/paymentmethodchangeevent/paymentmethodchangeevent/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentMethodChangeEvent.PaymentMethodChangeEvent")}}

    diff --git a/files/en-us/web/api/paymentrequest/abort/index.html b/files/en-us/web/api/paymentrequest/abort/index.html index 4f527a1c32254cb..0905e7ccec645eb 100644 --- a/files/en-us/web/api/paymentrequest/abort/index.html +++ b/files/en-us/web/api/paymentrequest/abort/index.html @@ -64,7 +64,6 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentRequest.abort")}}

    diff --git a/files/en-us/web/api/paymentrequest/canmakepayment/index.html b/files/en-us/web/api/paymentrequest/canmakepayment/index.html index 1cdc7eef3c3d5d2..27ce26978612bbe 100644 --- a/files/en-us/web/api/paymentrequest/canmakepayment/index.html +++ b/files/en-us/web/api/paymentrequest/canmakepayment/index.html @@ -102,7 +102,6 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentRequest.canMakePayment")}}

    diff --git a/files/en-us/web/api/paymentrequest/id/index.html b/files/en-us/web/api/paymentrequest/id/index.html index ded2da9427f4042..a75dd82c8a1fd17 100644 --- a/files/en-us/web/api/paymentrequest/id/index.html +++ b/files/en-us/web/api/paymentrequest/id/index.html @@ -71,6 +71,5 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentRequest.id")}}

    diff --git a/files/en-us/web/api/paymentrequest/index.html b/files/en-us/web/api/paymentrequest/index.html index eff994fbcac8a79..9022e5711b2d449 100644 --- a/files/en-us/web/api/paymentrequest/index.html +++ b/files/en-us/web/api/paymentrequest/index.html @@ -38,7 +38,6 @@

    Properties

    Returns the type of shipping used to fulfill the transaction. This will be one of shipping, delivery, pickup, or null if a value was not provided in the constructor.
    -

    Methods

    @@ -91,6 +90,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentRequest")}}

    diff --git a/files/en-us/web/api/paymentrequest/merchantvalidation_event/index.html b/files/en-us/web/api/paymentrequest/merchantvalidation_event/index.html index b200f475b6b6a6f..2c2039dd755851a 100644 --- a/files/en-us/web/api/paymentrequest/merchantvalidation_event/index.html +++ b/files/en-us/web/api/paymentrequest/merchantvalidation_event/index.html @@ -85,7 +85,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentRequest.merchantvalidation_event")}}

    See also

    diff --git a/files/en-us/web/api/paymentrequest/onmerchantvalidation/index.html b/files/en-us/web/api/paymentrequest/onmerchantvalidation/index.html index b330e03562a7936..296e3a2d0522b52 100644 --- a/files/en-us/web/api/paymentrequest/onmerchantvalidation/index.html +++ b/files/en-us/web/api/paymentrequest/onmerchantvalidation/index.html @@ -48,6 +48,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentRequest.onmerchantvalidation")}}

    diff --git a/files/en-us/web/api/paymentrequest/onpaymentmethodchange/index.html b/files/en-us/web/api/paymentrequest/onpaymentmethodchange/index.html index 5899be8974f5429..b9a3956c09eed2e 100644 --- a/files/en-us/web/api/paymentrequest/onpaymentmethodchange/index.html +++ b/files/en-us/web/api/paymentrequest/onpaymentmethodchange/index.html @@ -73,6 +73,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentRequest.onpaymentmethodchange")}}

    diff --git a/files/en-us/web/api/paymentrequest/onshippingaddresschange/index.html b/files/en-us/web/api/paymentrequest/onshippingaddresschange/index.html index be35f2904c7fe7c..3bb187c8562ea15 100644 --- a/files/en-us/web/api/paymentrequest/onshippingaddresschange/index.html +++ b/files/en-us/web/api/paymentrequest/onshippingaddresschange/index.html @@ -63,6 +63,5 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentRequest.onshippingaddresschange")}}

    diff --git a/files/en-us/web/api/paymentrequest/onshippingoptionchange/index.html b/files/en-us/web/api/paymentrequest/onshippingoptionchange/index.html index 08beb1fc8cfb8c3..6eeb676a5831299 100644 --- a/files/en-us/web/api/paymentrequest/onshippingoptionchange/index.html +++ b/files/en-us/web/api/paymentrequest/onshippingoptionchange/index.html @@ -90,6 +90,5 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentRequest.onshippingoptionchange")}}

    diff --git a/files/en-us/web/api/paymentrequest/paymentmethodchange_event/index.html b/files/en-us/web/api/paymentrequest/paymentmethodchange_event/index.html index 6fd5fe8e60337e5..bba927edfc5671f 100644 --- a/files/en-us/web/api/paymentrequest/paymentmethodchange_event/index.html +++ b/files/en-us/web/api/paymentrequest/paymentmethodchange_event/index.html @@ -98,8 +98,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaymentRequest.paymentmethodchange_event")}}

    See also

    diff --git a/files/en-us/web/api/paymentrequest/paymentrequest/index.html b/files/en-us/web/api/paymentrequest/paymentrequest/index.html index 63beac8a2652602..b3072aa14bb165d 100644 --- a/files/en-us/web/api/paymentrequest/paymentrequest/index.html +++ b/files/en-us/web/api/paymentrequest/paymentrequest/index.html @@ -144,6 +144,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentRequest.PaymentRequest")}}

    diff --git a/files/en-us/web/api/paymentrequest/shippingaddress/index.html b/files/en-us/web/api/paymentrequest/shippingaddress/index.html index 9a614593f2ae895..8c95e6dab7d8a7b 100644 --- a/files/en-us/web/api/paymentrequest/shippingaddress/index.html +++ b/files/en-us/web/api/paymentrequest/shippingaddress/index.html @@ -90,6 +90,5 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentRequest.shippingAddress")}}

    diff --git a/files/en-us/web/api/paymentrequest/shippingaddresschange_event/index.html b/files/en-us/web/api/paymentrequest/shippingaddresschange_event/index.html index 52cf7febbc438be..5ead116e876a9f0 100644 --- a/files/en-us/web/api/paymentrequest/shippingaddresschange_event/index.html +++ b/files/en-us/web/api/paymentrequest/shippingaddresschange_event/index.html @@ -93,7 +93,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentRequest.shippingaddresschange_event")}}

    See also

    diff --git a/files/en-us/web/api/paymentrequest/shippingoption/index.html b/files/en-us/web/api/paymentrequest/shippingoption/index.html index 2b1e632a8680463..9c2d19800c79f0f 100644 --- a/files/en-us/web/api/paymentrequest/shippingoption/index.html +++ b/files/en-us/web/api/paymentrequest/shippingoption/index.html @@ -78,6 +78,5 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentRequest.shippingOption")}}

    diff --git a/files/en-us/web/api/paymentrequest/shippingoptionchange_event/index.html b/files/en-us/web/api/paymentrequest/shippingoptionchange_event/index.html index 1061e772e6bc01c..1849a91e29b12de 100644 --- a/files/en-us/web/api/paymentrequest/shippingoptionchange_event/index.html +++ b/files/en-us/web/api/paymentrequest/shippingoptionchange_event/index.html @@ -89,7 +89,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentRequest.shippingoptionchange_event")}}

    See also

    diff --git a/files/en-us/web/api/paymentrequest/shippingtype/index.html b/files/en-us/web/api/paymentrequest/shippingtype/index.html index fd829a8309eddd5..b05a005b06fa901 100644 --- a/files/en-us/web/api/paymentrequest/shippingtype/index.html +++ b/files/en-us/web/api/paymentrequest/shippingtype/index.html @@ -44,6 +44,5 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentRequest.shippingType")}}

    diff --git a/files/en-us/web/api/paymentrequest/show/index.html b/files/en-us/web/api/paymentrequest/show/index.html index e33e2f763195e89..2ee68c81f5d37e7 100644 --- a/files/en-us/web/api/paymentrequest/show/index.html +++ b/files/en-us/web/api/paymentrequest/show/index.html @@ -219,7 +219,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentRequest.show")}}

    diff --git a/files/en-us/web/api/paymentrequestevent/instrumentkey/index.html b/files/en-us/web/api/paymentrequestevent/instrumentkey/index.html index 56a8356e6f3222d..50220725cba0fa3 100644 --- a/files/en-us/web/api/paymentrequestevent/instrumentkey/index.html +++ b/files/en-us/web/api/paymentrequestevent/instrumentkey/index.html @@ -33,6 +33,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaymentRequestEvent.instrumentKey")}}

    diff --git a/files/en-us/web/api/paymentrequestevent/methoddata/index.html b/files/en-us/web/api/paymentrequestevent/methoddata/index.html index 5702ece7d3534c5..aee72a557176755 100644 --- a/files/en-us/web/api/paymentrequestevent/methoddata/index.html +++ b/files/en-us/web/api/paymentrequestevent/methoddata/index.html @@ -33,6 +33,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaymentRequestEvent.methodData")}}

    diff --git a/files/en-us/web/api/paymentrequestevent/modifiers/index.html b/files/en-us/web/api/paymentrequestevent/modifiers/index.html index 065017cb36d7177..72f4a6f6c15ee0e 100644 --- a/files/en-us/web/api/paymentrequestevent/modifiers/index.html +++ b/files/en-us/web/api/paymentrequestevent/modifiers/index.html @@ -33,6 +33,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaymentRequestEvent.modifiers")}}

    diff --git a/files/en-us/web/api/paymentrequestevent/openwindow/index.html b/files/en-us/web/api/paymentrequestevent/openwindow/index.html index 5a589c2441d82ea..44a3304ff8384b0 100644 --- a/files/en-us/web/api/paymentrequestevent/openwindow/index.html +++ b/files/en-us/web/api/paymentrequestevent/openwindow/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaymentRequestEvent.openWindow")}}

    diff --git a/files/en-us/web/api/paymentrequestevent/paymentrequestevent/index.html b/files/en-us/web/api/paymentrequestevent/paymentrequestevent/index.html index 9787914f5646c95..5b3b2036717034b 100644 --- a/files/en-us/web/api/paymentrequestevent/paymentrequestevent/index.html +++ b/files/en-us/web/api/paymentrequestevent/paymentrequestevent/index.html @@ -38,6 +38,4 @@

    Parameters

    Browser compatibility

    - -

    {{Compat("api.PaymentRequestEvent.PaymentRequestEvent")}}

    diff --git a/files/en-us/web/api/paymentrequestevent/paymentrequestid/index.html b/files/en-us/web/api/paymentrequestevent/paymentrequestid/index.html index 1792555873e7317..1b8c71471e33ea7 100644 --- a/files/en-us/web/api/paymentrequestevent/paymentrequestid/index.html +++ b/files/en-us/web/api/paymentrequestevent/paymentrequestid/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaymentRequestEvent.paymentRequestId")}}

    diff --git a/files/en-us/web/api/paymentrequestevent/paymentrequestorigin/index.html b/files/en-us/web/api/paymentrequestevent/paymentrequestorigin/index.html index d8bde28ce6f942e..0f05cae45b27d08 100644 --- a/files/en-us/web/api/paymentrequestevent/paymentrequestorigin/index.html +++ b/files/en-us/web/api/paymentrequestevent/paymentrequestorigin/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaymentRequestEvent.paymentRequestOrigin")}}

    diff --git a/files/en-us/web/api/paymentrequestevent/respondwith/index.html b/files/en-us/web/api/paymentrequestevent/respondwith/index.html index 2e24dc34982a988..39cf254d995eaf8 100644 --- a/files/en-us/web/api/paymentrequestevent/respondwith/index.html +++ b/files/en-us/web/api/paymentrequestevent/respondwith/index.html @@ -50,6 +50,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaymentRequestEvent.respondWith")}}

    diff --git a/files/en-us/web/api/paymentrequestevent/total/index.html b/files/en-us/web/api/paymentrequestevent/total/index.html index b0326f9ac07e0e0..b32bc516aefd7b9 100644 --- a/files/en-us/web/api/paymentrequestevent/total/index.html +++ b/files/en-us/web/api/paymentrequestevent/total/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaymentRequestEvent.total")}}

    diff --git a/files/en-us/web/api/paymentrequestupdateevent/index.html b/files/en-us/web/api/paymentrequestupdateevent/index.html index 58d880565b3bcb4..fd5dad8ae487c01 100644 --- a/files/en-us/web/api/paymentrequestupdateevent/index.html +++ b/files/en-us/web/api/paymentrequestupdateevent/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentRequestUpdateEvent")}}

    See also

    diff --git a/files/en-us/web/api/paymentrequestupdateevent/paymentrequestupdateevent/index.html b/files/en-us/web/api/paymentrequestupdateevent/paymentrequestupdateevent/index.html index e8157ad6efe84e7..949a9724535d986 100644 --- a/files/en-us/web/api/paymentrequestupdateevent/paymentrequestupdateevent/index.html +++ b/files/en-us/web/api/paymentrequestupdateevent/paymentrequestupdateevent/index.html @@ -48,7 +48,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentRequestUpdateEvent.PaymentRequestUpdateEvent")}}

    diff --git a/files/en-us/web/api/paymentrequestupdateevent/updatewith/index.html b/files/en-us/web/api/paymentrequestupdateevent/updatewith/index.html index 06021da4764e1a8..82fce8260701ba6 100644 --- a/files/en-us/web/api/paymentrequestupdateevent/updatewith/index.html +++ b/files/en-us/web/api/paymentrequestupdateevent/updatewith/index.html @@ -60,6 +60,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentRequestUpdateEvent.updateWith")}}

    diff --git a/files/en-us/web/api/paymentresponse/complete/index.html b/files/en-us/web/api/paymentresponse/complete/index.html index f39f6cb382b9b8f..7194e151828762b 100644 --- a/files/en-us/web/api/paymentresponse/complete/index.html +++ b/files/en-us/web/api/paymentresponse/complete/index.html @@ -105,6 +105,5 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentResponse.complete")}}

    diff --git a/files/en-us/web/api/paymentresponse/details/index.html b/files/en-us/web/api/paymentresponse/details/index.html index 431537f4dd68665..7a3b824d4d1ac28 100644 --- a/files/en-us/web/api/paymentresponse/details/index.html +++ b/files/en-us/web/api/paymentresponse/details/index.html @@ -59,6 +59,5 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentResponse.details")}}

    diff --git a/files/en-us/web/api/paymentresponse/index.html b/files/en-us/web/api/paymentresponse/index.html index d770a5f035d14d7..d91da5c5dd53cc3 100644 --- a/files/en-us/web/api/paymentresponse/index.html +++ b/files/en-us/web/api/paymentresponse/index.html @@ -44,8 +44,6 @@

    Methods

    Notifies the user agent that the user interaction is over. This causes any remaining user interface to be closed. This method should only be called after the Promise returned by the {{domxref('PaymentRequest.show()')}} method.
    - -

    Events

    Listen to this event using addEventListener() or by assigning an event listener to the oneventname property of this interface.

    @@ -77,6 +75,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentResponse")}}

    diff --git a/files/en-us/web/api/paymentresponse/methodname/index.html b/files/en-us/web/api/paymentresponse/methodname/index.html index ebc6ab2a0b1fbf4..28063d0017970a0 100644 --- a/files/en-us/web/api/paymentresponse/methodname/index.html +++ b/files/en-us/web/api/paymentresponse/methodname/index.html @@ -62,6 +62,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentResponse.methodName")}}

    diff --git a/files/en-us/web/api/paymentresponse/onpayerdetailchange/index.html b/files/en-us/web/api/paymentresponse/onpayerdetailchange/index.html index dc2f3cd8a2b2f67..75cda7bb72067c6 100644 --- a/files/en-us/web/api/paymentresponse/onpayerdetailchange/index.html +++ b/files/en-us/web/api/paymentresponse/onpayerdetailchange/index.html @@ -124,6 +124,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentResponse.onpayerdetailchange")}}

    diff --git a/files/en-us/web/api/paymentresponse/payerdetailchange_event/index.html b/files/en-us/web/api/paymentresponse/payerdetailchange_event/index.html index 8b57df1ed16704b..1635844bd53ff5c 100644 --- a/files/en-us/web/api/paymentresponse/payerdetailchange_event/index.html +++ b/files/en-us/web/api/paymentresponse/payerdetailchange_event/index.html @@ -144,8 +144,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PaymentResponse.payerdetailchange_event")}}

    See also

    diff --git a/files/en-us/web/api/paymentresponse/payeremail/index.html b/files/en-us/web/api/paymentresponse/payeremail/index.html index df725f64d9e8f11..80dc1e0554872e5 100644 --- a/files/en-us/web/api/paymentresponse/payeremail/index.html +++ b/files/en-us/web/api/paymentresponse/payeremail/index.html @@ -41,7 +41,6 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentResponse.payerEmail")}}

    diff --git a/files/en-us/web/api/paymentresponse/payername/index.html b/files/en-us/web/api/paymentresponse/payername/index.html index c6f9967ceeaab0c..255d3477a74c06f 100644 --- a/files/en-us/web/api/paymentresponse/payername/index.html +++ b/files/en-us/web/api/paymentresponse/payername/index.html @@ -44,6 +44,5 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentResponse.payerName")}}

    diff --git a/files/en-us/web/api/paymentresponse/payerphone/index.html b/files/en-us/web/api/paymentresponse/payerphone/index.html index 3be0745b1cf7787..7c5b736ac567cc8 100644 --- a/files/en-us/web/api/paymentresponse/payerphone/index.html +++ b/files/en-us/web/api/paymentresponse/payerphone/index.html @@ -41,6 +41,5 @@

    Browser compatibility

    -

    {{Compat("api.PaymentResponse.payerPhone")}}

    diff --git a/files/en-us/web/api/paymentresponse/requestid/index.html b/files/en-us/web/api/paymentresponse/requestid/index.html index 602572ac9fe5dd3..cc6d2c7d3e12368 100644 --- a/files/en-us/web/api/paymentresponse/requestid/index.html +++ b/files/en-us/web/api/paymentresponse/requestid/index.html @@ -44,6 +44,5 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentResponse.requestId")}}

    diff --git a/files/en-us/web/api/paymentresponse/retry/index.html b/files/en-us/web/api/paymentresponse/retry/index.html index 867a4048938f411..0cc2053a8898dc2 100644 --- a/files/en-us/web/api/paymentresponse/retry/index.html +++ b/files/en-us/web/api/paymentresponse/retry/index.html @@ -142,7 +142,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentResponse.retry")}}

    diff --git a/files/en-us/web/api/paymentresponse/shippingaddress/index.html b/files/en-us/web/api/paymentresponse/shippingaddress/index.html index ad69b68a0b3f10c..0b73fa6bb8086b9 100644 --- a/files/en-us/web/api/paymentresponse/shippingaddress/index.html +++ b/files/en-us/web/api/paymentresponse/shippingaddress/index.html @@ -92,6 +92,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.PaymentResponse.shippingAddress")}}

    diff --git a/files/en-us/web/api/paymentresponse/shippingoption/index.html b/files/en-us/web/api/paymentresponse/shippingoption/index.html index 5a4bd1128c1c059..d459dc4c8dda817 100644 --- a/files/en-us/web/api/paymentresponse/shippingoption/index.html +++ b/files/en-us/web/api/paymentresponse/shippingoption/index.html @@ -82,6 +82,5 @@

    Browser Compatibility

    -

    {{Compat("api.PaymentResponse.shippingOption")}}

    diff --git a/files/en-us/web/api/paymentvalidationerrors/index.html b/files/en-us/web/api/paymentvalidationerrors/index.html index 2c423f1cb51209f..b16b68ade48ccdd 100644 --- a/files/en-us/web/api/paymentvalidationerrors/index.html +++ b/files/en-us/web/api/paymentvalidationerrors/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.PaymentValidationErrors")}}

    diff --git a/files/en-us/web/api/performance/clearmarks/index.html b/files/en-us/web/api/performance/clearmarks/index.html index eb57d8e4a12cb08..9984943551eb127 100644 --- a/files/en-us/web/api/performance/clearmarks/index.html +++ b/files/en-us/web/api/performance/clearmarks/index.html @@ -89,6 +89,5 @@

    Browser compatibility

    -

    {{Compat("api.Performance.clearMarks")}}

    diff --git a/files/en-us/web/api/performance/clearmeasures/index.html b/files/en-us/web/api/performance/clearmeasures/index.html index b63d88e2f3e6110..ab7e232dd0424d7 100644 --- a/files/en-us/web/api/performance/clearmeasures/index.html +++ b/files/en-us/web/api/performance/clearmeasures/index.html @@ -90,6 +90,5 @@

    Browser compatibility

    -

    {{Compat("api.Performance.clearMeasures")}}

    diff --git a/files/en-us/web/api/performance/clearresourcetimings/index.html b/files/en-us/web/api/performance/clearresourcetimings/index.html index 1f5ea506236c81f..64473168436561b 100644 --- a/files/en-us/web/api/performance/clearresourcetimings/index.html +++ b/files/en-us/web/api/performance/clearresourcetimings/index.html @@ -84,6 +84,5 @@

    Browser compatibility

    -

    {{Compat("api.Performance.clearResourceTimings")}}

    diff --git a/files/en-us/web/api/performance/getentries/index.html b/files/en-us/web/api/performance/getentries/index.html index ebec616eced08c2..0b8b60c4920d9d3 100644 --- a/files/en-us/web/api/performance/getentries/index.html +++ b/files/en-us/web/api/performance/getentries/index.html @@ -98,6 +98,5 @@

    Browser compatibility

    -

    {{Compat("api.Performance.getEntries")}}

    diff --git a/files/en-us/web/api/performance/getentriesbyname/index.html b/files/en-us/web/api/performance/getentriesbyname/index.html index 4caed9935197878..f1efa4cdcb786b8 100644 --- a/files/en-us/web/api/performance/getentriesbyname/index.html +++ b/files/en-us/web/api/performance/getentriesbyname/index.html @@ -112,6 +112,5 @@

    Browser compatibility

    -

    {{Compat("api.Performance.getEntriesByName")}}

    diff --git a/files/en-us/web/api/performance/getentriesbytype/index.html b/files/en-us/web/api/performance/getentriesbytype/index.html index 688c50b6a454dc7..6cb43c6cd00607b 100644 --- a/files/en-us/web/api/performance/getentriesbytype/index.html +++ b/files/en-us/web/api/performance/getentriesbytype/index.html @@ -112,6 +112,5 @@

    Browser compatibility

    -

    {{Compat("api.Performance.getEntriesByType")}}

    diff --git a/files/en-us/web/api/performance/index.html b/files/en-us/web/api/performance/index.html index 13776fd8d9ba42e..b389e16df47df85 100644 --- a/files/en-us/web/api/performance/index.html +++ b/files/en-us/web/api/performance/index.html @@ -132,6 +132,5 @@

    Browser compatibility

    -

    {{Compat("api.Performance")}}

    diff --git a/files/en-us/web/api/performance/mark/index.html b/files/en-us/web/api/performance/mark/index.html index 4beb8c2b6ede9a8..acd668d51b3c5f7 100644 --- a/files/en-us/web/api/performance/mark/index.html +++ b/files/en-us/web/api/performance/mark/index.html @@ -88,6 +88,5 @@

    Browser compatibility

    -

    {{Compat("api.Performance.mark")}}

    diff --git a/files/en-us/web/api/performance/measure/index.html b/files/en-us/web/api/performance/measure/index.html index 2bf6de9a93896d2..8d4fe9278dc3200 100644 --- a/files/en-us/web/api/performance/measure/index.html +++ b/files/en-us/web/api/performance/measure/index.html @@ -106,6 +106,5 @@

    Browser compatibility

    -

    {{Compat("api.Performance.measure")}}

    diff --git a/files/en-us/web/api/performance/memory/index.html b/files/en-us/web/api/performance/memory/index.html index b5e35471308dbf4..68d1e9b2f72f31b 100644 --- a/files/en-us/web/api/performance/memory/index.html +++ b/files/en-us/web/api/performance/memory/index.html @@ -10,8 +10,6 @@

    Syntax

    Attributes

    - -
    jsHeapSizeLimit
    The maximum size of the heap, in bytes, that is available to the context.
    @@ -24,8 +22,6 @@

    Attributes

    The currently active segment of JS heap, in bytes.
    - -

    Specifications

    None.

    @@ -34,7 +30,6 @@

    Browser compatibility

    -

    {{Compat("api.Performance.memory")}}

    diff --git a/files/en-us/web/api/performance/navigation/index.html b/files/en-us/web/api/performance/navigation/index.html index bf6eea16de1509d..b914d9e6e026421 100644 --- a/files/en-us/web/api/performance/navigation/index.html +++ b/files/en-us/web/api/performance/navigation/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.Performance.navigation")}}

    diff --git a/files/en-us/web/api/performance/now/index.html b/files/en-us/web/api/performance/now/index.html index 4feb0007a4983a0..24aa0c45d01979e 100644 --- a/files/en-us/web/api/performance/now/index.html +++ b/files/en-us/web/api/performance/now/index.html @@ -55,7 +55,6 @@

    Reduced time precision

    // 8782206 // ... - // reduced time precision with `privacy.resistFingerprinting` enabled performance.now(); // 8865400 @@ -98,8 +97,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Performance.now")}}

    See also

    diff --git a/files/en-us/web/api/performance/onresourcetimingbufferfull/index.html b/files/en-us/web/api/performance/onresourcetimingbufferfull/index.html index dff9f77db55d3c5..3b328207368982c 100644 --- a/files/en-us/web/api/performance/onresourcetimingbufferfull/index.html +++ b/files/en-us/web/api/performance/onresourcetimingbufferfull/index.html @@ -61,7 +61,6 @@

    Browser compatibility

    -

    {{Compat("api.Performance.onresourcetimingbufferfull")}}

    diff --git a/files/en-us/web/api/performance/setresourcetimingbuffersize/index.html b/files/en-us/web/api/performance/setresourcetimingbuffersize/index.html index d9cdbf733a3e599..8678ea535d5f78f 100644 --- a/files/en-us/web/api/performance/setresourcetimingbuffersize/index.html +++ b/files/en-us/web/api/performance/setresourcetimingbuffersize/index.html @@ -72,6 +72,5 @@

    Browser compatibility

    -

    {{Compat("api.Performance.setResourceTimingBufferSize")}}

    diff --git a/files/en-us/web/api/performance/timeorigin/index.html b/files/en-us/web/api/performance/timeorigin/index.html index 78e081e31d22311..4eee9b9a0a657b7 100644 --- a/files/en-us/web/api/performance/timeorigin/index.html +++ b/files/en-us/web/api/performance/timeorigin/index.html @@ -43,6 +43,5 @@

    Browser Compatibility

    -

    {{Compat("api.Performance.timeOrigin")}}

    diff --git a/files/en-us/web/api/performance/timing/index.html b/files/en-us/web/api/performance/timing/index.html index bfd3e0b1a806b1e..371b9320889f2d2 100644 --- a/files/en-us/web/api/performance/timing/index.html +++ b/files/en-us/web/api/performance/timing/index.html @@ -46,7 +46,6 @@

    Browser compatibility

    -

    {{Compat("api.Performance.timing")}}

    diff --git a/files/en-us/web/api/performance/tojson/index.html b/files/en-us/web/api/performance/tojson/index.html index 599aac736235b66..f9695c909293f19 100644 --- a/files/en-us/web/api/performance/tojson/index.html +++ b/files/en-us/web/api/performance/tojson/index.html @@ -60,6 +60,5 @@

    Browser compatibility

    -

    {{Compat("api.Performance.toJSON")}}

    diff --git a/files/en-us/web/api/performanceentry/duration/index.html b/files/en-us/web/api/performanceentry/duration/index.html index fe7333cc038bb98..7ea02ca105b6010 100644 --- a/files/en-us/web/api/performanceentry/duration/index.html +++ b/files/en-us/web/api/performanceentry/duration/index.html @@ -110,6 +110,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceEntry.duration")}}

    diff --git a/files/en-us/web/api/performanceentry/entrytype/index.html b/files/en-us/web/api/performanceentry/entrytype/index.html index 04fcf9d82349444..b08420a7f4928ac 100644 --- a/files/en-us/web/api/performanceentry/entrytype/index.html +++ b/files/en-us/web/api/performanceentry/entrytype/index.html @@ -127,6 +127,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceEntry.entryType")}}

    diff --git a/files/en-us/web/api/performanceentry/index.html b/files/en-us/web/api/performanceentry/index.html index df4da311ca6ddd9..c9b8cdcb51f57d2 100644 --- a/files/en-us/web/api/performanceentry/index.html +++ b/files/en-us/web/api/performanceentry/index.html @@ -143,6 +143,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceEntry")}}

    diff --git a/files/en-us/web/api/performanceentry/name/index.html b/files/en-us/web/api/performanceentry/name/index.html index 4235e582f1cec9a..37ee5bda2ec0547 100644 --- a/files/en-us/web/api/performanceentry/name/index.html +++ b/files/en-us/web/api/performanceentry/name/index.html @@ -140,6 +140,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceEntry.name")}}

    diff --git a/files/en-us/web/api/performanceentry/starttime/index.html b/files/en-us/web/api/performanceentry/starttime/index.html index c7df5516ffa557a..32a2a64f6ebb34a 100644 --- a/files/en-us/web/api/performanceentry/starttime/index.html +++ b/files/en-us/web/api/performanceentry/starttime/index.html @@ -110,6 +110,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceEntry.startTime")}}

    diff --git a/files/en-us/web/api/performanceentry/tojson/index.html b/files/en-us/web/api/performanceentry/tojson/index.html index bcd6526f9340aa9..4ffc750207b3163 100644 --- a/files/en-us/web/api/performanceentry/tojson/index.html +++ b/files/en-us/web/api/performanceentry/tojson/index.html @@ -102,6 +102,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceEntry.toJSON")}}

    diff --git a/files/en-us/web/api/performanceeventtiming/index.html b/files/en-us/web/api/performanceeventtiming/index.html index a344afa5c246240..2fdf8d452757cab 100644 --- a/files/en-us/web/api/performanceeventtiming/index.html +++ b/files/en-us/web/api/performanceeventtiming/index.html @@ -162,6 +162,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PerformanceEventTiming")}}

    diff --git a/files/en-us/web/api/performanceframetiming/index.html b/files/en-us/web/api/performanceframetiming/index.html index fd4ed750b16be7a..b4184001c364346 100644 --- a/files/en-us/web/api/performanceframetiming/index.html +++ b/files/en-us/web/api/performanceframetiming/index.html @@ -66,7 +66,6 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceFrameTiming")}}

    diff --git a/files/en-us/web/api/performancelongtasktiming/attribution/index.html b/files/en-us/web/api/performancelongtasktiming/attribution/index.html index 4c4246c8c2e8613..b1e0a7405d936f1 100644 --- a/files/en-us/web/api/performancelongtasktiming/attribution/index.html +++ b/files/en-us/web/api/performancelongtasktiming/attribution/index.html @@ -33,6 +33,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.PerformanceLongTaskTiming.attribution")}}

    diff --git a/files/en-us/web/api/performancelongtasktiming/index.html b/files/en-us/web/api/performancelongtasktiming/index.html index a365b96dbe9a48d..3fb05ec9a637f23 100644 --- a/files/en-us/web/api/performancelongtasktiming/index.html +++ b/files/en-us/web/api/performancelongtasktiming/index.html @@ -40,6 +40,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.PerformanceLongTaskTiming")}}

    diff --git a/files/en-us/web/api/performancemark/index.html b/files/en-us/web/api/performancemark/index.html index 7356db4a859303e..263944eeba14f0f 100644 --- a/files/en-us/web/api/performancemark/index.html +++ b/files/en-us/web/api/performancemark/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PerformanceMark")}}

    See also

    diff --git a/files/en-us/web/api/performancemeasure/index.html b/files/en-us/web/api/performancemeasure/index.html index f42cb40b723a9b6..3ee3821ed4975e1 100644 --- a/files/en-us/web/api/performancemeasure/index.html +++ b/files/en-us/web/api/performancemeasure/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PerformanceMeasure")}}

    See also

    diff --git a/files/en-us/web/api/performancenavigation/index.html b/files/en-us/web/api/performancenavigation/index.html index 0f979eb6a113279..dee92321048cf43 100644 --- a/files/en-us/web/api/performancenavigation/index.html +++ b/files/en-us/web/api/performancenavigation/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PerformanceNavigation")}}

    See also

    diff --git a/files/en-us/web/api/performancenavigation/redirectcount/index.html b/files/en-us/web/api/performancenavigation/redirectcount/index.html index 70e98a6d317a739..7646fe97b16253d 100644 --- a/files/en-us/web/api/performancenavigation/redirectcount/index.html +++ b/files/en-us/web/api/performancenavigation/redirectcount/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PerformanceNavigation.redirectCount")}}

    See also

    diff --git a/files/en-us/web/api/performancenavigation/type/index.html b/files/en-us/web/api/performancenavigation/type/index.html index 88b64a8ad4c7268..2bc0bc185210904 100644 --- a/files/en-us/web/api/performancenavigation/type/index.html +++ b/files/en-us/web/api/performancenavigation/type/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PerformanceNavigation.type")}}

    See also

    diff --git a/files/en-us/web/api/performancenavigationtiming/domcomplete/index.html b/files/en-us/web/api/performancenavigationtiming/domcomplete/index.html index d312c8cf488b5d1..d1f8a92d68b3130 100644 --- a/files/en-us/web/api/performancenavigationtiming/domcomplete/index.html +++ b/files/en-us/web/api/performancenavigationtiming/domcomplete/index.html @@ -68,6 +68,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceNavigationTiming.domComplete")}}

    diff --git a/files/en-us/web/api/performancenavigationtiming/domcontentloadedeventend/index.html b/files/en-us/web/api/performancenavigationtiming/domcontentloadedeventend/index.html index 274599c237fa400..d83e0a86fb932a3 100644 --- a/files/en-us/web/api/performancenavigationtiming/domcontentloadedeventend/index.html +++ b/files/en-us/web/api/performancenavigationtiming/domcontentloadedeventend/index.html @@ -68,6 +68,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceNavigationTiming.domContentLoadedEventEnd")}}

    diff --git a/files/en-us/web/api/performancenavigationtiming/domcontentloadedeventstart/index.html b/files/en-us/web/api/performancenavigationtiming/domcontentloadedeventstart/index.html index 2645c608bce5026..c62076e3101209c 100644 --- a/files/en-us/web/api/performancenavigationtiming/domcontentloadedeventstart/index.html +++ b/files/en-us/web/api/performancenavigationtiming/domcontentloadedeventstart/index.html @@ -68,6 +68,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceNavigationTiming.domContentLoadedEventStart")}}

    diff --git a/files/en-us/web/api/performancenavigationtiming/dominteractive/index.html b/files/en-us/web/api/performancenavigationtiming/dominteractive/index.html index b0f89056c91a2e0..40cdf45cf59f7cd 100644 --- a/files/en-us/web/api/performancenavigationtiming/dominteractive/index.html +++ b/files/en-us/web/api/performancenavigationtiming/dominteractive/index.html @@ -68,6 +68,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceNavigationTiming.domInteractive")}}

    diff --git a/files/en-us/web/api/performancenavigationtiming/index.html b/files/en-us/web/api/performancenavigationtiming/index.html index b01bd8b8a7f2d70..704c7867573b6bb 100644 --- a/files/en-us/web/api/performancenavigationtiming/index.html +++ b/files/en-us/web/api/performancenavigationtiming/index.html @@ -95,8 +95,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PerformanceNavigationTiming")}}

    See also

    diff --git a/files/en-us/web/api/performancenavigationtiming/loadeventend/index.html b/files/en-us/web/api/performancenavigationtiming/loadeventend/index.html index f0ffa241ee48286..96a87f8fcdb5436 100644 --- a/files/en-us/web/api/performancenavigationtiming/loadeventend/index.html +++ b/files/en-us/web/api/performancenavigationtiming/loadeventend/index.html @@ -68,6 +68,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceNavigationTiming.loadEventEnd")}}

    diff --git a/files/en-us/web/api/performancenavigationtiming/loadeventstart/index.html b/files/en-us/web/api/performancenavigationtiming/loadeventstart/index.html index eb111051dcdd9d5..5d0d1a5a806a226 100644 --- a/files/en-us/web/api/performancenavigationtiming/loadeventstart/index.html +++ b/files/en-us/web/api/performancenavigationtiming/loadeventstart/index.html @@ -68,6 +68,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceNavigationTiming.loadEventStart")}}

    diff --git a/files/en-us/web/api/performancenavigationtiming/redirectcount/index.html b/files/en-us/web/api/performancenavigationtiming/redirectcount/index.html index 60bdecc38df50d4..98ace92e5348d44 100644 --- a/files/en-us/web/api/performancenavigationtiming/redirectcount/index.html +++ b/files/en-us/web/api/performancenavigationtiming/redirectcount/index.html @@ -70,6 +70,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceNavigationTiming.redirectCount")}}

    diff --git a/files/en-us/web/api/performancenavigationtiming/tojson/index.html b/files/en-us/web/api/performancenavigationtiming/tojson/index.html index 25ff9ec7247a101..153f0de8f203c4a 100644 --- a/files/en-us/web/api/performancenavigationtiming/tojson/index.html +++ b/files/en-us/web/api/performancenavigationtiming/tojson/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PerformanceNavigationTiming.toJSON")}}

    diff --git a/files/en-us/web/api/performancenavigationtiming/type/index.html b/files/en-us/web/api/performancenavigationtiming/type/index.html index 36bd0b6b4be8f5e..8f353e7bf9cf72b 100644 --- a/files/en-us/web/api/performancenavigationtiming/type/index.html +++ b/files/en-us/web/api/performancenavigationtiming/type/index.html @@ -81,6 +81,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceNavigationTiming.type")}}

    diff --git a/files/en-us/web/api/performancenavigationtiming/unloadeventend/index.html b/files/en-us/web/api/performancenavigationtiming/unloadeventend/index.html index 8ae371bcc1ecd84..31d2964362cc1f9 100644 --- a/files/en-us/web/api/performancenavigationtiming/unloadeventend/index.html +++ b/files/en-us/web/api/performancenavigationtiming/unloadeventend/index.html @@ -68,6 +68,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceNavigationTiming.unloadEventEnd")}}

    diff --git a/files/en-us/web/api/performancenavigationtiming/unloadeventstart/index.html b/files/en-us/web/api/performancenavigationtiming/unloadeventstart/index.html index 138fb2ba37abb5d..3d942a17c7d4d70 100644 --- a/files/en-us/web/api/performancenavigationtiming/unloadeventstart/index.html +++ b/files/en-us/web/api/performancenavigationtiming/unloadeventstart/index.html @@ -68,6 +68,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceNavigationTiming.unloadEventStart")}}

    diff --git a/files/en-us/web/api/performanceobserver/disconnect/index.html b/files/en-us/web/api/performanceobserver/disconnect/index.html index 9eec9ef55f94a12..2ad0ea5e9957868 100644 --- a/files/en-us/web/api/performanceobserver/disconnect/index.html +++ b/files/en-us/web/api/performanceobserver/disconnect/index.html @@ -61,6 +61,5 @@

    Browser compatibility

    -

    {{Compat("api.PerformanceObserver.disconnect")}}

    diff --git a/files/en-us/web/api/performanceobserver/index.html b/files/en-us/web/api/performanceobserver/index.html index b8e87d4df698909..bd9f150ec9d975a 100644 --- a/files/en-us/web/api/performanceobserver/index.html +++ b/files/en-us/web/api/performanceobserver/index.html @@ -34,7 +34,6 @@

    Methods

    Returns the current list of {{domxref("PerformanceEntry","performance entries")}} stored in the performance observer, emptying it out.
    -

    Example

    function perf_observer(list, observer) {
    @@ -64,11 +63,9 @@ 

    Browser compatibility

    -

    {{Compat("api.PerformanceObserver")}}

    -

    See also

      diff --git a/files/en-us/web/api/performanceobserver/observe/index.html b/files/en-us/web/api/performanceobserver/observe/index.html index 12cee3719c80e21..bf5398aded6cbb0 100644 --- a/files/en-us/web/api/performanceobserver/observe/index.html +++ b/files/en-us/web/api/performanceobserver/observe/index.html @@ -75,6 +75,5 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceObserver.observe")}}

      diff --git a/files/en-us/web/api/performanceobserver/performanceobserver/index.html b/files/en-us/web/api/performanceobserver/performanceobserver/index.html index e1e61019f2450e5..f535bdc91e25b51 100644 --- a/files/en-us/web/api/performanceobserver/performanceobserver/index.html +++ b/files/en-us/web/api/performanceobserver/performanceobserver/index.html @@ -66,6 +66,5 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceObserver.PerformanceObserver")}}

      diff --git a/files/en-us/web/api/performanceobserver/takerecords/index.html b/files/en-us/web/api/performanceobserver/takerecords/index.html index ca922f16ddadc1c..0cd544f3297d7b2 100644 --- a/files/en-us/web/api/performanceobserver/takerecords/index.html +++ b/files/en-us/web/api/performanceobserver/takerecords/index.html @@ -63,6 +63,5 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceObserver.takeRecords")}}

      diff --git a/files/en-us/web/api/performanceobserverentrylist/getentries/index.html b/files/en-us/web/api/performanceobserverentrylist/getentries/index.html index e6e651a3602c948..5c389dfb2eb131e 100644 --- a/files/en-us/web/api/performanceobserverentrylist/getentries/index.html +++ b/files/en-us/web/api/performanceobserverentrylist/getentries/index.html @@ -112,6 +112,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceObserverEntryList.getEntries")}}

      diff --git a/files/en-us/web/api/performanceobserverentrylist/getentriesbyname/index.html b/files/en-us/web/api/performanceobserverentrylist/getentriesbyname/index.html index 81bf13738b861ef..94a2b9263694f94 100644 --- a/files/en-us/web/api/performanceobserverentrylist/getentriesbyname/index.html +++ b/files/en-us/web/api/performanceobserverentrylist/getentriesbyname/index.html @@ -96,6 +96,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceObserverEntryList.getEntriesByName")}}

      diff --git a/files/en-us/web/api/performanceobserverentrylist/getentriesbytype/index.html b/files/en-us/web/api/performanceobserverentrylist/getentriesbytype/index.html index 1f80cf2782c891f..3adcc6f2f0ed5e2 100644 --- a/files/en-us/web/api/performanceobserverentrylist/getentriesbytype/index.html +++ b/files/en-us/web/api/performanceobserverentrylist/getentriesbytype/index.html @@ -94,6 +94,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceObserverEntryList.getEntriesByType")}}

      diff --git a/files/en-us/web/api/performanceobserverentrylist/index.html b/files/en-us/web/api/performanceobserverentrylist/index.html index 33ad7d9348af2af..424b94cb48c1a19 100644 --- a/files/en-us/web/api/performanceobserverentrylist/index.html +++ b/files/en-us/web/api/performanceobserverentrylist/index.html @@ -55,6 +55,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceObserverEntryList")}}

      diff --git a/files/en-us/web/api/performancepainttiming/index.html b/files/en-us/web/api/performancepainttiming/index.html index 6d109449bc8b34e..093df764a02d90c 100644 --- a/files/en-us/web/api/performancepainttiming/index.html +++ b/files/en-us/web/api/performancepainttiming/index.html @@ -75,6 +75,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformancePaintTiming")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/connectend/index.html b/files/en-us/web/api/performanceresourcetiming/connectend/index.html index 5fcf472065c75dc..156658913646076 100644 --- a/files/en-us/web/api/performanceresourcetiming/connectend/index.html +++ b/files/en-us/web/api/performanceresourcetiming/connectend/index.html @@ -75,6 +75,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceResourceTiming.connectEnd")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/connectstart/index.html b/files/en-us/web/api/performanceresourcetiming/connectstart/index.html index 22a06581112e847..5b7947c42d4f5d5 100644 --- a/files/en-us/web/api/performanceresourcetiming/connectstart/index.html +++ b/files/en-us/web/api/performanceresourcetiming/connectstart/index.html @@ -75,6 +75,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceResourceTiming.connectStart")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/decodedbodysize/index.html b/files/en-us/web/api/performanceresourcetiming/decodedbodysize/index.html index eafd1620ddfcd09..4fd27124aaefc06 100644 --- a/files/en-us/web/api/performanceresourcetiming/decodedbodysize/index.html +++ b/files/en-us/web/api/performanceresourcetiming/decodedbodysize/index.html @@ -74,6 +74,5 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceResourceTiming.decodedBodySize")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/domainlookupend/index.html b/files/en-us/web/api/performanceresourcetiming/domainlookupend/index.html index 9ff9cd0a389917a..89045edd23847f6 100644 --- a/files/en-us/web/api/performanceresourcetiming/domainlookupend/index.html +++ b/files/en-us/web/api/performanceresourcetiming/domainlookupend/index.html @@ -77,6 +77,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceResourceTiming.domainLookupEnd")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/domainlookupstart/index.html b/files/en-us/web/api/performanceresourcetiming/domainlookupstart/index.html index 2430859a1420442..8cbd08e5292a042 100644 --- a/files/en-us/web/api/performanceresourcetiming/domainlookupstart/index.html +++ b/files/en-us/web/api/performanceresourcetiming/domainlookupstart/index.html @@ -75,6 +75,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceResourceTiming.domainLookupStart")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/encodedbodysize/index.html b/files/en-us/web/api/performanceresourcetiming/encodedbodysize/index.html index 82db1cda06b2552..abd50ce5885b5bc 100644 --- a/files/en-us/web/api/performanceresourcetiming/encodedbodysize/index.html +++ b/files/en-us/web/api/performanceresourcetiming/encodedbodysize/index.html @@ -76,6 +76,5 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceResourceTiming.encodedBodySize")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/fetchstart/index.html b/files/en-us/web/api/performanceresourcetiming/fetchstart/index.html index 4bae2bbe756565e..1acff99ef4a0cdf 100644 --- a/files/en-us/web/api/performanceresourcetiming/fetchstart/index.html +++ b/files/en-us/web/api/performanceresourcetiming/fetchstart/index.html @@ -77,6 +77,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceResourceTiming.fetchStart")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/index.html b/files/en-us/web/api/performanceresourcetiming/index.html index f725995d782692a..4e8e6be1214159a 100644 --- a/files/en-us/web/api/performanceresourcetiming/index.html +++ b/files/en-us/web/api/performanceresourcetiming/index.html @@ -103,8 +103,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceResourceTiming")}}

      See also

      diff --git a/files/en-us/web/api/performanceresourcetiming/initiatortype/index.html b/files/en-us/web/api/performanceresourcetiming/initiatortype/index.html index 972a34e8fde5fde..c6615b1e2ceef5e 100644 --- a/files/en-us/web/api/performanceresourcetiming/initiatortype/index.html +++ b/files/en-us/web/api/performanceresourcetiming/initiatortype/index.html @@ -69,6 +69,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceResourceTiming.initiatorType")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/nexthopprotocol/index.html b/files/en-us/web/api/performanceresourcetiming/nexthopprotocol/index.html index c41e6aa4e221d56..b2e0a4b31a8e723 100644 --- a/files/en-us/web/api/performanceresourcetiming/nexthopprotocol/index.html +++ b/files/en-us/web/api/performanceresourcetiming/nexthopprotocol/index.html @@ -64,6 +64,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceResourceTiming.nextHopProtocol")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/redirectend/index.html b/files/en-us/web/api/performanceresourcetiming/redirectend/index.html index 1154e032cca9e46..70ddea808a586e4 100644 --- a/files/en-us/web/api/performanceresourcetiming/redirectend/index.html +++ b/files/en-us/web/api/performanceresourcetiming/redirectend/index.html @@ -77,6 +77,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceResourceTiming.redirectEnd")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/redirectstart/index.html b/files/en-us/web/api/performanceresourcetiming/redirectstart/index.html index c7a7f1edb22309a..fafa7010eba8f41 100644 --- a/files/en-us/web/api/performanceresourcetiming/redirectstart/index.html +++ b/files/en-us/web/api/performanceresourcetiming/redirectstart/index.html @@ -77,6 +77,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceResourceTiming.redirectStart")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/requeststart/index.html b/files/en-us/web/api/performanceresourcetiming/requeststart/index.html index 139dada8bc22054..851cf5d23c553c3 100644 --- a/files/en-us/web/api/performanceresourcetiming/requeststart/index.html +++ b/files/en-us/web/api/performanceresourcetiming/requeststart/index.html @@ -79,6 +79,5 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceResourceTiming.requestStart")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/responseend/index.html b/files/en-us/web/api/performanceresourcetiming/responseend/index.html index 9444b2613242bb1..e6a40151248c02d 100644 --- a/files/en-us/web/api/performanceresourcetiming/responseend/index.html +++ b/files/en-us/web/api/performanceresourcetiming/responseend/index.html @@ -77,6 +77,5 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceResourceTiming.responseEnd")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/responsestart/index.html b/files/en-us/web/api/performanceresourcetiming/responsestart/index.html index b4740f39c59264b..1af4e77874103d4 100644 --- a/files/en-us/web/api/performanceresourcetiming/responsestart/index.html +++ b/files/en-us/web/api/performanceresourcetiming/responsestart/index.html @@ -77,6 +77,5 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceResourceTiming.responseStart")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/secureconnectionstart/index.html b/files/en-us/web/api/performanceresourcetiming/secureconnectionstart/index.html index 942128f68be90ee..943076d05582fe2 100644 --- a/files/en-us/web/api/performanceresourcetiming/secureconnectionstart/index.html +++ b/files/en-us/web/api/performanceresourcetiming/secureconnectionstart/index.html @@ -77,6 +77,5 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceResourceTiming.secureConnectionStart")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/servertiming/index.html b/files/en-us/web/api/performanceresourcetiming/servertiming/index.html index 1412dae4ba792a2..16bdaf0e5fc2fce 100644 --- a/files/en-us/web/api/performanceresourcetiming/servertiming/index.html +++ b/files/en-us/web/api/performanceresourcetiming/servertiming/index.html @@ -39,7 +39,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceResourceTiming.serverTiming")}}

      See also

      diff --git a/files/en-us/web/api/performanceresourcetiming/tojson/index.html b/files/en-us/web/api/performanceresourcetiming/tojson/index.html index a00f5c1a5b0e3e9..cf5961891d350f8 100644 --- a/files/en-us/web/api/performanceresourcetiming/tojson/index.html +++ b/files/en-us/web/api/performanceresourcetiming/tojson/index.html @@ -58,6 +58,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceResourceTiming.toJSON")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/transfersize/index.html b/files/en-us/web/api/performanceresourcetiming/transfersize/index.html index 42dcf1bc06c4231..fe5a04a7e721ac1 100644 --- a/files/en-us/web/api/performanceresourcetiming/transfersize/index.html +++ b/files/en-us/web/api/performanceresourcetiming/transfersize/index.html @@ -76,6 +76,5 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceResourceTiming.transferSize")}}

      diff --git a/files/en-us/web/api/performanceresourcetiming/workerstart/index.html b/files/en-us/web/api/performanceresourcetiming/workerstart/index.html index b8b6ca676e20a21..45a9a3e68f4e3cb 100644 --- a/files/en-us/web/api/performanceresourcetiming/workerstart/index.html +++ b/files/en-us/web/api/performanceresourcetiming/workerstart/index.html @@ -78,6 +78,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceResourceTiming.workerStart")}}

      diff --git a/files/en-us/web/api/performanceservertiming/description/index.html b/files/en-us/web/api/performanceservertiming/description/index.html index 036511ff9fdc303..5a33d717b94f21f 100644 --- a/files/en-us/web/api/performanceservertiming/description/index.html +++ b/files/en-us/web/api/performanceservertiming/description/index.html @@ -37,7 +37,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceServerTiming.description")}}

      See also

      diff --git a/files/en-us/web/api/performanceservertiming/duration/index.html b/files/en-us/web/api/performanceservertiming/duration/index.html index 216c489e7b0aac7..907c804f523c194 100644 --- a/files/en-us/web/api/performanceservertiming/duration/index.html +++ b/files/en-us/web/api/performanceservertiming/duration/index.html @@ -35,8 +35,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceServerTiming.duration")}}

      See also

      diff --git a/files/en-us/web/api/performanceservertiming/index.html b/files/en-us/web/api/performanceservertiming/index.html index 85e5a58a3244ed4..be3b72d7417f2ca 100644 --- a/files/en-us/web/api/performanceservertiming/index.html +++ b/files/en-us/web/api/performanceservertiming/index.html @@ -82,8 +82,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceServerTiming")}}

      See also

      diff --git a/files/en-us/web/api/performanceservertiming/name/index.html b/files/en-us/web/api/performanceservertiming/name/index.html index 6aabcb45f7086c1..ea0c6e1e001abc7 100644 --- a/files/en-us/web/api/performanceservertiming/name/index.html +++ b/files/en-us/web/api/performanceservertiming/name/index.html @@ -37,7 +37,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceServerTiming.name")}}

      See also

      diff --git a/files/en-us/web/api/performanceservertiming/tojson/index.html b/files/en-us/web/api/performanceservertiming/tojson/index.html index 7ff23b230c44ada..be68a0a9ef4e2e6 100644 --- a/files/en-us/web/api/performanceservertiming/tojson/index.html +++ b/files/en-us/web/api/performanceservertiming/tojson/index.html @@ -48,6 +48,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PerformanceServerTiming.toJSON")}}

      diff --git a/files/en-us/web/api/performancetiming/connectend/index.html b/files/en-us/web/api/performancetiming/connectend/index.html index 5b78cd1fa613544..b21bbcb162497fe 100644 --- a/files/en-us/web/api/performancetiming/connectend/index.html +++ b/files/en-us/web/api/performancetiming/connectend/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.connectEnd")}}

      diff --git a/files/en-us/web/api/performancetiming/connectstart/index.html b/files/en-us/web/api/performancetiming/connectstart/index.html index 22ccb67f23654a2..8e20bdb5a17b365 100644 --- a/files/en-us/web/api/performancetiming/connectstart/index.html +++ b/files/en-us/web/api/performancetiming/connectstart/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.connectStart")}}

      diff --git a/files/en-us/web/api/performancetiming/domainlookupend/index.html b/files/en-us/web/api/performancetiming/domainlookupend/index.html index 4e41033c7808500..eb39f9c9527de24 100644 --- a/files/en-us/web/api/performancetiming/domainlookupend/index.html +++ b/files/en-us/web/api/performancetiming/domainlookupend/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.domainLookupEnd")}}

      diff --git a/files/en-us/web/api/performancetiming/domainlookupstart/index.html b/files/en-us/web/api/performancetiming/domainlookupstart/index.html index da64d7fd05796c0..e9774924ad68431 100644 --- a/files/en-us/web/api/performancetiming/domainlookupstart/index.html +++ b/files/en-us/web/api/performancetiming/domainlookupstart/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.domainLookupStart")}}

      diff --git a/files/en-us/web/api/performancetiming/domcomplete/index.html b/files/en-us/web/api/performancetiming/domcomplete/index.html index fca6afcacf0416a..0af091a66a436b8 100644 --- a/files/en-us/web/api/performancetiming/domcomplete/index.html +++ b/files/en-us/web/api/performancetiming/domcomplete/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.domComplete")}}

      diff --git a/files/en-us/web/api/performancetiming/domcontentloadedeventend/index.html b/files/en-us/web/api/performancetiming/domcontentloadedeventend/index.html index 2ecd4d1cf777aba..0c1a9f14d43f158 100644 --- a/files/en-us/web/api/performancetiming/domcontentloadedeventend/index.html +++ b/files/en-us/web/api/performancetiming/domcontentloadedeventend/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.domContentLoadedEventEnd")}}

      diff --git a/files/en-us/web/api/performancetiming/domcontentloadedeventstart/index.html b/files/en-us/web/api/performancetiming/domcontentloadedeventstart/index.html index 273cd2bc721c08e..fb9acd52c203c7f 100644 --- a/files/en-us/web/api/performancetiming/domcontentloadedeventstart/index.html +++ b/files/en-us/web/api/performancetiming/domcontentloadedeventstart/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.domContentLoadedEventStart")}}

      diff --git a/files/en-us/web/api/performancetiming/dominteractive/index.html b/files/en-us/web/api/performancetiming/dominteractive/index.html index e16e68eb4f129fe..98a8ba5f536af97 100644 --- a/files/en-us/web/api/performancetiming/dominteractive/index.html +++ b/files/en-us/web/api/performancetiming/dominteractive/index.html @@ -47,7 +47,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.domInteractive")}}

      diff --git a/files/en-us/web/api/performancetiming/domloading/index.html b/files/en-us/web/api/performancetiming/domloading/index.html index 55513b973e7195a..3fa207f781dfded 100644 --- a/files/en-us/web/api/performancetiming/domloading/index.html +++ b/files/en-us/web/api/performancetiming/domloading/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.domLoading")}}

      diff --git a/files/en-us/web/api/performancetiming/fetchstart/index.html b/files/en-us/web/api/performancetiming/fetchstart/index.html index bcf8a84815d4a4c..a72a09f331fc3e3 100644 --- a/files/en-us/web/api/performancetiming/fetchstart/index.html +++ b/files/en-us/web/api/performancetiming/fetchstart/index.html @@ -46,7 +46,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.fetchStart")}}

      diff --git a/files/en-us/web/api/performancetiming/index.html b/files/en-us/web/api/performancetiming/index.html index 7c95d31364217e5..83f713906d7c072 100644 --- a/files/en-us/web/api/performancetiming/index.html +++ b/files/en-us/web/api/performancetiming/index.html @@ -107,7 +107,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming")}}

      diff --git a/files/en-us/web/api/performancetiming/loadeventend/index.html b/files/en-us/web/api/performancetiming/loadeventend/index.html index bea9e20894fdff6..f869c6e702746dd 100644 --- a/files/en-us/web/api/performancetiming/loadeventend/index.html +++ b/files/en-us/web/api/performancetiming/loadeventend/index.html @@ -46,7 +46,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.loadEventEnd")}}

      diff --git a/files/en-us/web/api/performancetiming/loadeventstart/index.html b/files/en-us/web/api/performancetiming/loadeventstart/index.html index 18382c48c66bcce..b16544105e948bb 100644 --- a/files/en-us/web/api/performancetiming/loadeventstart/index.html +++ b/files/en-us/web/api/performancetiming/loadeventstart/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.loadEventStart")}}

      diff --git a/files/en-us/web/api/performancetiming/navigationstart/index.html b/files/en-us/web/api/performancetiming/navigationstart/index.html index 12339cafefd1339..5e86b297eb659c9 100644 --- a/files/en-us/web/api/performancetiming/navigationstart/index.html +++ b/files/en-us/web/api/performancetiming/navigationstart/index.html @@ -46,7 +46,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.navigationStart")}}

      diff --git a/files/en-us/web/api/performancetiming/redirectend/index.html b/files/en-us/web/api/performancetiming/redirectend/index.html index d7fdaba92af152a..caf070cabfd88f3 100644 --- a/files/en-us/web/api/performancetiming/redirectend/index.html +++ b/files/en-us/web/api/performancetiming/redirectend/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.redirectEnd")}}

      diff --git a/files/en-us/web/api/performancetiming/redirectstart/index.html b/files/en-us/web/api/performancetiming/redirectstart/index.html index a85906ca68ad3af..d9579e932e0c31b 100644 --- a/files/en-us/web/api/performancetiming/redirectstart/index.html +++ b/files/en-us/web/api/performancetiming/redirectstart/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.redirectStart")}}

      diff --git a/files/en-us/web/api/performancetiming/requeststart/index.html b/files/en-us/web/api/performancetiming/requeststart/index.html index 4740d5c019af03d..214a165faec3dca 100644 --- a/files/en-us/web/api/performancetiming/requeststart/index.html +++ b/files/en-us/web/api/performancetiming/requeststart/index.html @@ -44,7 +44,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.requestStart")}}

      diff --git a/files/en-us/web/api/performancetiming/responseend/index.html b/files/en-us/web/api/performancetiming/responseend/index.html index 1a15e1c1bbcbc2a..1ee003bdca86829 100644 --- a/files/en-us/web/api/performancetiming/responseend/index.html +++ b/files/en-us/web/api/performancetiming/responseend/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.responseEnd")}}

      diff --git a/files/en-us/web/api/performancetiming/responsestart/index.html b/files/en-us/web/api/performancetiming/responsestart/index.html index eb81377d7746c26..424a3bd21bc9568 100644 --- a/files/en-us/web/api/performancetiming/responsestart/index.html +++ b/files/en-us/web/api/performancetiming/responsestart/index.html @@ -45,7 +45,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.responseStart")}}

      diff --git a/files/en-us/web/api/performancetiming/secureconnectionstart/index.html b/files/en-us/web/api/performancetiming/secureconnectionstart/index.html index d2e1c08a7274af4..05100cd59b04bad 100644 --- a/files/en-us/web/api/performancetiming/secureconnectionstart/index.html +++ b/files/en-us/web/api/performancetiming/secureconnectionstart/index.html @@ -44,7 +44,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.secureConnectionStart")}}

      diff --git a/files/en-us/web/api/performancetiming/unloadeventend/index.html b/files/en-us/web/api/performancetiming/unloadeventend/index.html index e868658c65beee7..e39e57c86615890 100644 --- a/files/en-us/web/api/performancetiming/unloadeventend/index.html +++ b/files/en-us/web/api/performancetiming/unloadeventend/index.html @@ -44,7 +44,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.unloadEventEnd")}}

      diff --git a/files/en-us/web/api/performancetiming/unloadeventstart/index.html b/files/en-us/web/api/performancetiming/unloadeventstart/index.html index 09f0b96e2dc1156..5aaa1618994b1f6 100644 --- a/files/en-us/web/api/performancetiming/unloadeventstart/index.html +++ b/files/en-us/web/api/performancetiming/unloadeventstart/index.html @@ -44,7 +44,6 @@

      Browser compatibility

      -

      {{Compat("api.PerformanceTiming.unloadEventStart")}}

      diff --git a/files/en-us/web/api/periodicsyncevent/index.html b/files/en-us/web/api/periodicsyncevent/index.html index 68ebdcb44f99447..9964f19f94d9ea4 100644 --- a/files/en-us/web/api/periodicsyncevent/index.html +++ b/files/en-us/web/api/periodicsyncevent/index.html @@ -69,8 +69,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PeriodicSyncEvent")}}

      See also

      diff --git a/files/en-us/web/api/periodicsyncevent/periodicsyncevent/index.html b/files/en-us/web/api/periodicsyncevent/periodicsyncevent/index.html index 26c63e55dddacfd..6a5c8bc5157b95a 100644 --- a/files/en-us/web/api/periodicsyncevent/periodicsyncevent/index.html +++ b/files/en-us/web/api/periodicsyncevent/periodicsyncevent/index.html @@ -67,8 +67,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PeriodicSyncEvent.PeriodicSyncEvent")}}

      See also

      diff --git a/files/en-us/web/api/periodicsyncevent/tag/index.html b/files/en-us/web/api/periodicsyncevent/tag/index.html index d0907e3fdc2a3ef..57ae54b91dfdcff 100644 --- a/files/en-us/web/api/periodicsyncevent/tag/index.html +++ b/files/en-us/web/api/periodicsyncevent/tag/index.html @@ -50,8 +50,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PeriodicSyncEvent.tag")}}

      See also

      diff --git a/files/en-us/web/api/periodicsyncmanager/gettags/index.html b/files/en-us/web/api/periodicsyncmanager/gettags/index.html index 19de9a174e42857..1693913e82deb29 100644 --- a/files/en-us/web/api/periodicsyncmanager/gettags/index.html +++ b/files/en-us/web/api/periodicsyncmanager/gettags/index.html @@ -64,8 +64,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PeriodicSyncManager.getTags")}}

      See also

      diff --git a/files/en-us/web/api/periodicsyncmanager/index.html b/files/en-us/web/api/periodicsyncmanager/index.html index 8eac0dacbc4e9a0..3dd47d0ca51cdee 100644 --- a/files/en-us/web/api/periodicsyncmanager/index.html +++ b/files/en-us/web/api/periodicsyncmanager/index.html @@ -90,8 +90,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PeriodicSyncManager")}}

      See also

      diff --git a/files/en-us/web/api/periodicsyncmanager/register/index.html b/files/en-us/web/api/periodicsyncmanager/register/index.html index 512c7113f8bfdf2..7e086b3297b36a2 100644 --- a/files/en-us/web/api/periodicsyncmanager/register/index.html +++ b/files/en-us/web/api/periodicsyncmanager/register/index.html @@ -81,8 +81,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PeriodicSyncManager.register")}}

      See also

      diff --git a/files/en-us/web/api/periodicsyncmanager/unregister/index.html b/files/en-us/web/api/periodicsyncmanager/unregister/index.html index 17af464a6fb8b2b..763f5230ec5fea7 100644 --- a/files/en-us/web/api/periodicsyncmanager/unregister/index.html +++ b/files/en-us/web/api/periodicsyncmanager/unregister/index.html @@ -61,8 +61,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PeriodicSyncManager.unregister")}}

      See also

      diff --git a/files/en-us/web/api/periodicwave/index.html b/files/en-us/web/api/periodicwave/index.html index dd1fde1fa40f1fd..ea8b4d843c158ef 100644 --- a/files/en-us/web/api/periodicwave/index.html +++ b/files/en-us/web/api/periodicwave/index.html @@ -60,7 +60,6 @@

      Browser compatibility

      -

      {{Compat("api.PeriodicWave")}}

      diff --git a/files/en-us/web/api/periodicwave/periodicwave/index.html b/files/en-us/web/api/periodicwave/periodicwave/index.html index 528b55822799c48..1f625a2f36862c6 100644 --- a/files/en-us/web/api/periodicwave/periodicwave/index.html +++ b/files/en-us/web/api/periodicwave/periodicwave/index.html @@ -75,6 +75,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PeriodicWave.PeriodicWave")}}

      diff --git a/files/en-us/web/api/permissions/index.html b/files/en-us/web/api/permissions/index.html index 7ce0542bee2c6cf..cb277246bafa168 100644 --- a/files/en-us/web/api/permissions/index.html +++ b/files/en-us/web/api/permissions/index.html @@ -58,6 +58,5 @@

      Browser Support

      -

      {{Compat("api.Permissions")}}

      diff --git a/files/en-us/web/api/permissions/query/index.html b/files/en-us/web/api/permissions/query/index.html index 9202fa999de615c..7377ec721b7014e 100644 --- a/files/en-us/web/api/permissions/query/index.html +++ b/files/en-us/web/api/permissions/query/index.html @@ -90,6 +90,5 @@

      Browser compatibility

      -

      {{Compat("api.Permissions.query")}}

      diff --git a/files/en-us/web/api/permissions/revoke/index.html b/files/en-us/web/api/permissions/revoke/index.html index 0b809557a480d23..62d3e4c6d0d919c 100644 --- a/files/en-us/web/api/permissions/revoke/index.html +++ b/files/en-us/web/api/permissions/revoke/index.html @@ -67,6 +67,5 @@

      Browser compatibility

      -

      {{Compat("api.Permissions.revoke")}}

      diff --git a/files/en-us/web/api/permissions_api/index.html b/files/en-us/web/api/permissions_api/index.html index 7bb958fabd0a97a..95df1ddb6c31b2d 100644 --- a/files/en-us/web/api/permissions_api/index.html +++ b/files/en-us/web/api/permissions_api/index.html @@ -80,7 +80,6 @@

      Permissions interface

      -

      {{Compat("api.Permissions")}}

      diff --git a/files/en-us/web/api/permissionstatus/index.html b/files/en-us/web/api/permissionstatus/index.html index e2eb2e8abf8d267..48a487b7ac75855 100644 --- a/files/en-us/web/api/permissionstatus/index.html +++ b/files/en-us/web/api/permissionstatus/index.html @@ -58,6 +58,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PermissionStatus")}}

      diff --git a/files/en-us/web/api/permissionstatus/onchange/index.html b/files/en-us/web/api/permissionstatus/onchange/index.html index 6838d1e54ca5ada..f68a601c1e3782b 100644 --- a/files/en-us/web/api/permissionstatus/onchange/index.html +++ b/files/en-us/web/api/permissionstatus/onchange/index.html @@ -48,6 +48,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PermissionStatus.onchange")}}

      diff --git a/files/en-us/web/api/permissionstatus/state/index.html b/files/en-us/web/api/permissionstatus/state/index.html index 6499a1188246606..14a8da9f5f55917 100644 --- a/files/en-us/web/api/permissionstatus/state/index.html +++ b/files/en-us/web/api/permissionstatus/state/index.html @@ -48,6 +48,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PermissionStatus.state")}}

      diff --git a/files/en-us/web/api/photocapabilities/filllightmode/index.html b/files/en-us/web/api/photocapabilities/filllightmode/index.html index 3e28b003e8f16b3..fc65f16cf47a0ac 100644 --- a/files/en-us/web/api/photocapabilities/filllightmode/index.html +++ b/files/en-us/web/api/photocapabilities/filllightmode/index.html @@ -55,6 +55,5 @@

      Browser Compatibility

      -

      {{Compat("api.PhotoCapabilities.fillLightMode")}}

      diff --git a/files/en-us/web/api/photocapabilities/imageheight/index.html b/files/en-us/web/api/photocapabilities/imageheight/index.html index c3421c2b05750ea..d243af60951a1e0 100644 --- a/files/en-us/web/api/photocapabilities/imageheight/index.html +++ b/files/en-us/web/api/photocapabilities/imageheight/index.html @@ -45,6 +45,5 @@

      Browser Compatibility

      -

      {{Compat("api.PhotoCapabilities.imageHeight")}}

      diff --git a/files/en-us/web/api/photocapabilities/imagewidth/index.html b/files/en-us/web/api/photocapabilities/imagewidth/index.html index b0ea27f5009d73f..b96d7f4dad213ec 100644 --- a/files/en-us/web/api/photocapabilities/imagewidth/index.html +++ b/files/en-us/web/api/photocapabilities/imagewidth/index.html @@ -45,6 +45,5 @@

      Browser Compatibility

      -

      {{Compat("api.PhotoCapabilities.imageWidth")}}

      diff --git a/files/en-us/web/api/photocapabilities/index.html b/files/en-us/web/api/photocapabilities/index.html index 3aa2ed67c292d3b..b97ba94f17a682e 100644 --- a/files/en-us/web/api/photocapabilities/index.html +++ b/files/en-us/web/api/photocapabilities/index.html @@ -81,6 +81,5 @@

      Browser Compatibility

      -

      {{Compat("api.PhotoCapabilities")}}

      diff --git a/files/en-us/web/api/photocapabilities/redeyereduction/index.html b/files/en-us/web/api/photocapabilities/redeyereduction/index.html index 2122141935e0068..c3fd8bf6560feb7 100644 --- a/files/en-us/web/api/photocapabilities/redeyereduction/index.html +++ b/files/en-us/web/api/photocapabilities/redeyereduction/index.html @@ -55,6 +55,5 @@

      Browser Compatibility

      -

      {{Compat("api.PhotoCapabilities.redEyeReduction")}}

      diff --git a/files/en-us/web/api/picture-in-picture_api/index.html b/files/en-us/web/api/picture-in-picture_api/index.html index 80856a3d9e38102..6e417eccb56b31d 100644 --- a/files/en-us/web/api/picture-in-picture_api/index.html +++ b/files/en-us/web/api/picture-in-picture_api/index.html @@ -36,7 +36,6 @@

      Methods on the HTMLVideoEleme
      Requests that the user agent enters the video into picture-in-picture mode
      -

      Methods on the Document interface

      @@ -141,8 +140,6 @@

      Browser compatibility

      HTMLVideoElement.requestPictureInPicture

      - -

      {{Compat("api.HTMLVideoElement.requestPictureInPicture")}}

      HTMLVideoElement.autoPictureInPicture

      diff --git a/files/en-us/web/api/pictureinpictureevent/index.html b/files/en-us/web/api/pictureinpictureevent/index.html index a4f5f285f8693a3..48442656f36171c 100644 --- a/files/en-us/web/api/pictureinpictureevent/index.html +++ b/files/en-us/web/api/pictureinpictureevent/index.html @@ -50,8 +50,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PictureInPictureEvent")}}

      See also

      diff --git a/files/en-us/web/api/pictureinpictureevent/pictureinpictureevent/index.html b/files/en-us/web/api/pictureinpictureevent/pictureinpictureevent/index.html index 31408e20c208885..f90165bd69f377e 100644 --- a/files/en-us/web/api/pictureinpictureevent/pictureinpictureevent/index.html +++ b/files/en-us/web/api/pictureinpictureevent/pictureinpictureevent/index.html @@ -45,8 +45,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PictureInPictureEvent.PictureInPictureEvent")}}

      See also

      diff --git a/files/en-us/web/api/pictureinpicturewindow/height/index.html b/files/en-us/web/api/pictureinpicturewindow/height/index.html index 887d1fa0d6f9c84..fba8db4f67dfaea 100644 --- a/files/en-us/web/api/pictureinpicturewindow/height/index.html +++ b/files/en-us/web/api/pictureinpicturewindow/height/index.html @@ -43,8 +43,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PictureInPictureWindow.height")}}

      See also

      diff --git a/files/en-us/web/api/pictureinpicturewindow/index.html b/files/en-us/web/api/pictureinpicturewindow/index.html index 4facc363a05779d..c681f9f434edfc1 100644 --- a/files/en-us/web/api/pictureinpicturewindow/index.html +++ b/files/en-us/web/api/pictureinpicturewindow/index.html @@ -83,8 +83,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PictureInPictureWindow")}}

      See also

      diff --git a/files/en-us/web/api/pictureinpicturewindow/onresize/index.html b/files/en-us/web/api/pictureinpicturewindow/onresize/index.html index 4fdac511e07da54..991288836e7fc8d 100644 --- a/files/en-us/web/api/pictureinpicturewindow/onresize/index.html +++ b/files/en-us/web/api/pictureinpicturewindow/onresize/index.html @@ -69,8 +69,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PictureInPictureWindow.onresize")}}

      See also

      diff --git a/files/en-us/web/api/pictureinpicturewindow/resize_event/index.html b/files/en-us/web/api/pictureinpicturewindow/resize_event/index.html index 959c549dc34a3aa..bbc31d33cc1bf1d 100644 --- a/files/en-us/web/api/pictureinpicturewindow/resize_event/index.html +++ b/files/en-us/web/api/pictureinpicturewindow/resize_event/index.html @@ -35,8 +35,6 @@ - -

      Examples

      Window size logger

      diff --git a/files/en-us/web/api/pictureinpicturewindow/width/index.html b/files/en-us/web/api/pictureinpicturewindow/width/index.html index 9db1b91c75887df..c29c34fae84d2f3 100644 --- a/files/en-us/web/api/pictureinpicturewindow/width/index.html +++ b/files/en-us/web/api/pictureinpicturewindow/width/index.html @@ -43,8 +43,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PictureInPictureWindow.width")}}

      See also

      diff --git a/files/en-us/web/api/plugin/index.html b/files/en-us/web/api/plugin/index.html index 47b0d19fb40b261..272c0134b42085e 100644 --- a/files/en-us/web/api/plugin/index.html +++ b/files/en-us/web/api/plugin/index.html @@ -60,6 +60,5 @@

      Browser compatibility

      -

      {{Compat("api.Plugin")}}

      diff --git a/files/en-us/web/api/pluginarray/index.html b/files/en-us/web/api/pluginarray/index.html index f03426f64f4a495..d7168c5b8b9f57c 100644 --- a/files/en-us/web/api/pluginarray/index.html +++ b/files/en-us/web/api/pluginarray/index.html @@ -99,8 +99,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PluginArray")}}

      In addition to listing each plugin as a pseudo-array by zero-indexed numeric properties, Firefox provides properties that are the plugin name directly on the PluginArray object.

      diff --git a/files/en-us/web/api/point/index.html b/files/en-us/web/api/point/index.html index 0d0349b163b82a3..4b4358ceedd6d08 100644 --- a/files/en-us/web/api/point/index.html +++ b/files/en-us/web/api/point/index.html @@ -33,8 +33,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Point")}}

      See also

      diff --git a/files/en-us/web/api/pointer_events/index.html b/files/en-us/web/api/pointer_events/index.html index 9fc5092ed5ebbbe..0bc5af9cd2b5268 100644 --- a/files/en-us/web/api/pointer_events/index.html +++ b/files/en-us/web/api/pointer_events/index.html @@ -18,7 +18,6 @@

      Note: Pointer events are not available in Web Workers.

      -

      Pointer events are DOM events that are fired for a pointing device. They are designed to create a single DOM event model to handle pointing input devices such as a mouse, pen/stylus or touch (such as one or more fingers).

      The pointer is a hardware-agnostic device that can target a specific set of screen coordinates. Having a single event model for pointers can simplify creating Web sites and applications and provide a good user experience regardless of the user's hardware. However, for scenarios when device-specific handling is desired, pointer events defines a {{domxref("PointerEvent.pointerType","pointerType property")}} to inspect the device type which produced the event.

      diff --git a/files/en-us/web/api/pointer_events/using_pointer_events/index.html b/files/en-us/web/api/pointer_events/using_pointer_events/index.html index 49ea1f604465dea..93570f59f42cb41 100644 --- a/files/en-us/web/api/pointer_events/using_pointer_events/index.html +++ b/files/en-us/web/api/pointer_events/using_pointer_events/index.html @@ -247,7 +247,6 @@

      PointerEvent interface

      -

      {{Compat("api.PointerEvent", 0)}}

      diff --git a/files/en-us/web/api/pointer_lock_api/index.html b/files/en-us/web/api/pointer_lock_api/index.html index a1a76d9801b9386..08f1f5e5f7a510e 100644 --- a/files/en-us/web/api/pointer_lock_api/index.html +++ b/files/en-us/web/api/pointer_lock_api/index.html @@ -238,7 +238,6 @@

      Element.requestPointerLock

      -

      {{Compat("api.Element.requestPointerLock")}}

      diff --git a/files/en-us/web/api/pointerevent/index.html b/files/en-us/web/api/pointerevent/index.html index cb04651a66a7656..10948d53471659e 100644 --- a/files/en-us/web/api/pointerevent/index.html +++ b/files/en-us/web/api/pointerevent/index.html @@ -148,8 +148,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PointerEvent")}}

      See also

      diff --git a/files/en-us/web/api/popstateevent/index.html b/files/en-us/web/api/popstateevent/index.html index 23123f87d1ea90a..24cecb34f2f53ee 100644 --- a/files/en-us/web/api/popstateevent/index.html +++ b/files/en-us/web/api/popstateevent/index.html @@ -68,8 +68,6 @@

      Browser compatibility

       

      - -

      {{Compat("api.PopStateEvent")}}

      See also

      diff --git a/files/en-us/web/api/positionoptions/enablehighaccuracy/index.html b/files/en-us/web/api/positionoptions/enablehighaccuracy/index.html index d4dedf9e23752b8..2dd03b96379daa6 100644 --- a/files/en-us/web/api/positionoptions/enablehighaccuracy/index.html +++ b/files/en-us/web/api/positionoptions/enablehighaccuracy/index.html @@ -40,8 +40,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PositionOptions.enableHighAccuracy")}}

      See also

      diff --git a/files/en-us/web/api/positionoptions/index.html b/files/en-us/web/api/positionoptions/index.html index 5a7e5afc2309f9f..d704febb0d262d5 100644 --- a/files/en-us/web/api/positionoptions/index.html +++ b/files/en-us/web/api/positionoptions/index.html @@ -45,8 +45,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PositionOptions")}}

      See also

      diff --git a/files/en-us/web/api/positionoptions/maximumage/index.html b/files/en-us/web/api/positionoptions/maximumage/index.html index 182797d48552053..17a95b5cf560acb 100644 --- a/files/en-us/web/api/positionoptions/maximumage/index.html +++ b/files/en-us/web/api/positionoptions/maximumage/index.html @@ -39,8 +39,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PositionOptions.maximumAge")}}

      See also

      diff --git a/files/en-us/web/api/positionoptions/timeout/index.html b/files/en-us/web/api/positionoptions/timeout/index.html index b4476342caf5ebe..f4c175de2b6734d 100644 --- a/files/en-us/web/api/positionoptions/timeout/index.html +++ b/files/en-us/web/api/positionoptions/timeout/index.html @@ -40,8 +40,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PositionOptions.timeout")}}

      See also

      diff --git a/files/en-us/web/api/positionsensorvrdevice/getimmediatestate/index.html b/files/en-us/web/api/positionsensorvrdevice/getimmediatestate/index.html index 4eee687a77db079..6f17475b8b1f735 100644 --- a/files/en-us/web/api/positionsensorvrdevice/getimmediatestate/index.html +++ b/files/en-us/web/api/positionsensorvrdevice/getimmediatestate/index.html @@ -68,8 +68,6 @@

      Examples

      Browser compatibility

      - -

      {{Compat("api.PositionSensorVRDevice.getImmediateState")}}

      See also

      diff --git a/files/en-us/web/api/positionsensorvrdevice/getstate/index.html b/files/en-us/web/api/positionsensorvrdevice/getstate/index.html index 4eb552fcc1bd30a..1bf22dfe83ac004 100644 --- a/files/en-us/web/api/positionsensorvrdevice/getstate/index.html +++ b/files/en-us/web/api/positionsensorvrdevice/getstate/index.html @@ -66,8 +66,6 @@

      Examples

      Browser compatibility

      - -

      {{Compat("api.PositionSensorVRDevice.getState")}}

      See also

      diff --git a/files/en-us/web/api/positionsensorvrdevice/index.html b/files/en-us/web/api/positionsensorvrdevice/index.html index 89ccd765c8b369c..7117d6ad9de7663 100644 --- a/files/en-us/web/api/positionsensorvrdevice/index.html +++ b/files/en-us/web/api/positionsensorvrdevice/index.html @@ -78,8 +78,6 @@

      Examples

      Browser compatibility

      - -

      {{Compat("api.PositionSensorVRDevice")}}

      See also

      diff --git a/files/en-us/web/api/positionsensorvrdevice/resetsensor/index.html b/files/en-us/web/api/positionsensorvrdevice/resetsensor/index.html index 2b957ba5fc17ba4..35a4c5b761ad64a 100644 --- a/files/en-us/web/api/positionsensorvrdevice/resetsensor/index.html +++ b/files/en-us/web/api/positionsensorvrdevice/resetsensor/index.html @@ -43,8 +43,6 @@

      Examples

      Browser compatibility

      - -

      {{Compat("api.PositionSensorVRDevice.resetSensor")}}

      See also

      diff --git a/files/en-us/web/api/presentation/defaultrequest/index.html b/files/en-us/web/api/presentation/defaultrequest/index.html index 459c6c0cf7dcc22..d75a3e6f65a004b 100644 --- a/files/en-us/web/api/presentation/defaultrequest/index.html +++ b/files/en-us/web/api/presentation/defaultrequest/index.html @@ -43,6 +43,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Presentation.defaultRequest")}}

      diff --git a/files/en-us/web/api/presentation/index.html b/files/en-us/web/api/presentation/index.html index 77545c02f202767..8214b9e155c76f4 100644 --- a/files/en-us/web/api/presentation/index.html +++ b/files/en-us/web/api/presentation/index.html @@ -47,6 +47,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Presentation")}}

      diff --git a/files/en-us/web/api/presentation/receiver/index.html b/files/en-us/web/api/presentation/receiver/index.html index f8e9af5c307c999..b44876f763246dd 100644 --- a/files/en-us/web/api/presentation/receiver/index.html +++ b/files/en-us/web/api/presentation/receiver/index.html @@ -77,8 +77,6 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Presentation.receiver")}}

      See also

      diff --git a/files/en-us/web/api/presentation_api/index.html b/files/en-us/web/api/presentation_api/index.html index 5627807e695594f..8ead8f07fafe2a6 100644 --- a/files/en-us/web/api/presentation_api/index.html +++ b/files/en-us/web/api/presentation_api/index.html @@ -297,7 +297,6 @@

      Presentation

      -

      {{Compat("api.Presentation")}}

      diff --git a/files/en-us/web/api/presentationavailability/index.html b/files/en-us/web/api/presentationavailability/index.html index fdc0a038e526b2e..6ec7ebb6e31158d 100644 --- a/files/en-us/web/api/presentationavailability/index.html +++ b/files/en-us/web/api/presentationavailability/index.html @@ -54,6 +54,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.PresentationAvailability")}}

      diff --git a/files/en-us/web/api/presentationavailability/onchange/index.html b/files/en-us/web/api/presentationavailability/onchange/index.html index 7ac284413501317..3666121a5b3cbd5 100644 --- a/files/en-us/web/api/presentationavailability/onchange/index.html +++ b/files/en-us/web/api/presentationavailability/onchange/index.html @@ -6,6 +6,4 @@

      Browser compatibility

      - -

      {{Compat("api.PresentationAvailability.onchange")}}

      diff --git a/files/en-us/web/api/presentationavailability/value/index.html b/files/en-us/web/api/presentationavailability/value/index.html index 8c2fd649db12d15..2712107b4bdda29 100644 --- a/files/en-us/web/api/presentationavailability/value/index.html +++ b/files/en-us/web/api/presentationavailability/value/index.html @@ -8,6 +8,4 @@

      Browser compatibility

      - -

      {{Compat("api.PresentationAvailability.value")}}

      diff --git a/files/en-us/web/api/presentationconnection/binarytype/index.html b/files/en-us/web/api/presentationconnection/binarytype/index.html index 8c48b2b8969982b..fc14eac656c384f 100644 --- a/files/en-us/web/api/presentationconnection/binarytype/index.html +++ b/files/en-us/web/api/presentationconnection/binarytype/index.html @@ -24,6 +24,4 @@

      Browser compatibility

      - -

      {{Compat("api.PresentationConnection.binaryType")}}

      diff --git a/files/en-us/web/api/presentationconnection/close/index.html b/files/en-us/web/api/presentationconnection/close/index.html index 6b060e95a27f559..118bb3dbcc2312d 100644 --- a/files/en-us/web/api/presentationconnection/close/index.html +++ b/files/en-us/web/api/presentationconnection/close/index.html @@ -17,6 +17,4 @@

      Browser compatibility

      - -

      {{Compat("api.PresentationConnection.close")}}

      diff --git a/files/en-us/web/api/presentationconnection/id/index.html b/files/en-us/web/api/presentationconnection/id/index.html index 5f42f9fd1c71893..d35e72f77647beb 100644 --- a/files/en-us/web/api/presentationconnection/id/index.html +++ b/files/en-us/web/api/presentationconnection/id/index.html @@ -20,6 +20,4 @@

      Browser compatibility

      - -

      {{Compat("api.PresentationConnection.id")}}

      diff --git a/files/en-us/web/api/presentationconnection/index.html b/files/en-us/web/api/presentationconnection/index.html index 2f1cb3ef7b57ea3..7942df073e3a859 100644 --- a/files/en-us/web/api/presentationconnection/index.html +++ b/files/en-us/web/api/presentationconnection/index.html @@ -69,6 +69,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.PresentationConnection")}}

      diff --git a/files/en-us/web/api/presentationconnection/send/index.html b/files/en-us/web/api/presentationconnection/send/index.html index f85dd05222380ee..9a6133f8e9941f5 100644 --- a/files/en-us/web/api/presentationconnection/send/index.html +++ b/files/en-us/web/api/presentationconnection/send/index.html @@ -56,6 +56,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PresentationConnection.send")}}

      diff --git a/files/en-us/web/api/presentationconnection/state/index.html b/files/en-us/web/api/presentationconnection/state/index.html index 6a6f43e224cd92d..af8d53db4739a89 100644 --- a/files/en-us/web/api/presentationconnection/state/index.html +++ b/files/en-us/web/api/presentationconnection/state/index.html @@ -26,6 +26,4 @@

      Browser compatibility

      - -

      {{Compat("api.PresentationConnection.state")}}

      diff --git a/files/en-us/web/api/presentationconnection/terminate/index.html b/files/en-us/web/api/presentationconnection/terminate/index.html index db709251f16df06..f39e477825fe338 100644 --- a/files/en-us/web/api/presentationconnection/terminate/index.html +++ b/files/en-us/web/api/presentationconnection/terminate/index.html @@ -19,6 +19,4 @@

      Browser compatibility

      - -

      {{Compat("api.PresentationConnection.terminate")}}

      diff --git a/files/en-us/web/api/presentationconnection/url/index.html b/files/en-us/web/api/presentationconnection/url/index.html index b88ce0a6b203897..0525e43a139e41d 100644 --- a/files/en-us/web/api/presentationconnection/url/index.html +++ b/files/en-us/web/api/presentationconnection/url/index.html @@ -42,6 +42,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PresentationConnection.url")}}

      diff --git a/files/en-us/web/api/presentationconnectionavailableevent/connection/index.html b/files/en-us/web/api/presentationconnectionavailableevent/connection/index.html index ec45f0c9bd9acb6..a40bd7e0b47aac8 100644 --- a/files/en-us/web/api/presentationconnectionavailableevent/connection/index.html +++ b/files/en-us/web/api/presentationconnectionavailableevent/connection/index.html @@ -8,6 +8,4 @@

      Browser compatibility

      - -

      {{Compat("api.PresentationConnectionAvailableEvent.connection")}}

      diff --git a/files/en-us/web/api/presentationconnectionavailableevent/index.html b/files/en-us/web/api/presentationconnectionavailableevent/index.html index 83d39055359ab72..222105d9389cfc3 100644 --- a/files/en-us/web/api/presentationconnectionavailableevent/index.html +++ b/files/en-us/web/api/presentationconnectionavailableevent/index.html @@ -49,6 +49,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.PresentationConnectionAvailableEvent")}}

      diff --git a/files/en-us/web/api/presentationconnectionavailableevent/presentationconnectionavailableevent/index.html b/files/en-us/web/api/presentationconnectionavailableevent/presentationconnectionavailableevent/index.html index f16b63c34618b7a..140b25ca413723c 100644 --- a/files/en-us/web/api/presentationconnectionavailableevent/presentationconnectionavailableevent/index.html +++ b/files/en-us/web/api/presentationconnectionavailableevent/presentationconnectionavailableevent/index.html @@ -31,6 +31,4 @@

      Return value

      Browser Compatibility

      - -

      {{Compat("api.PresentationConnectionAvailableEvent.PresentationConnectionAvailableEvent")}}

      diff --git a/files/en-us/web/api/presentationconnectioncloseevent/index.html b/files/en-us/web/api/presentationconnectioncloseevent/index.html index 30dfcb4487187aa..bb9144f11ce2306 100644 --- a/files/en-us/web/api/presentationconnectioncloseevent/index.html +++ b/files/en-us/web/api/presentationconnectioncloseevent/index.html @@ -49,6 +49,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.PresentationConnectionCloseEvent")}}

      diff --git a/files/en-us/web/api/presentationconnectionlist/index.html b/files/en-us/web/api/presentationconnectionlist/index.html index dcd865c6289b61a..887faa39626f7f7 100644 --- a/files/en-us/web/api/presentationconnectionlist/index.html +++ b/files/en-us/web/api/presentationconnectionlist/index.html @@ -47,6 +47,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PresentationConnectionList")}}

      diff --git a/files/en-us/web/api/presentationreceiver/index.html b/files/en-us/web/api/presentationreceiver/index.html index ec49e6671c0cefd..9d5f83b60eb64de 100644 --- a/files/en-us/web/api/presentationreceiver/index.html +++ b/files/en-us/web/api/presentationreceiver/index.html @@ -40,6 +40,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.PresentationReceiver")}}

      diff --git a/files/en-us/web/api/presentationrequest/getavailability/index.html b/files/en-us/web/api/presentationrequest/getavailability/index.html index 09bc2d990387030..bbbc75394c71324 100644 --- a/files/en-us/web/api/presentationrequest/getavailability/index.html +++ b/files/en-us/web/api/presentationrequest/getavailability/index.html @@ -58,6 +58,4 @@

      Browser compatibility

      - -

      {{Compat("api.PresentationRequest.getAvailability")}}

      diff --git a/files/en-us/web/api/presentationrequest/index.html b/files/en-us/web/api/presentationrequest/index.html index 2b6cce0b660c1ce..f55b2a733f8204a 100644 --- a/files/en-us/web/api/presentationrequest/index.html +++ b/files/en-us/web/api/presentationrequest/index.html @@ -63,6 +63,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.PresentationRequest")}}

      diff --git a/files/en-us/web/api/presentationrequest/onconnectionavailable/index.html b/files/en-us/web/api/presentationrequest/onconnectionavailable/index.html index e97f1eac68157a6..b50dcbbfa34e24b 100644 --- a/files/en-us/web/api/presentationrequest/onconnectionavailable/index.html +++ b/files/en-us/web/api/presentationrequest/onconnectionavailable/index.html @@ -38,6 +38,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PresentationRequest.onconnectionavailable")}}

      diff --git a/files/en-us/web/api/presentationrequest/presentationrequest/index.html b/files/en-us/web/api/presentationrequest/presentationrequest/index.html index 52bba1ddf0c68ab..442154be35f6fd0 100644 --- a/files/en-us/web/api/presentationrequest/presentationrequest/index.html +++ b/files/en-us/web/api/presentationrequest/presentationrequest/index.html @@ -43,6 +43,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.PresentationRequest.PresentationRequest")}}

      diff --git a/files/en-us/web/api/presentationrequest/reconnect/index.html b/files/en-us/web/api/presentationrequest/reconnect/index.html index c97409172261217..74a93b687cdf662 100644 --- a/files/en-us/web/api/presentationrequest/reconnect/index.html +++ b/files/en-us/web/api/presentationrequest/reconnect/index.html @@ -52,6 +52,4 @@

      Browser compatibility

      - -

      {{Compat("api.PresentationRequest.reconnect")}}

      diff --git a/files/en-us/web/api/presentationrequest/start/index.html b/files/en-us/web/api/presentationrequest/start/index.html index d0bbf0009b5236c..ef9b55a504c73e4 100644 --- a/files/en-us/web/api/presentationrequest/start/index.html +++ b/files/en-us/web/api/presentationrequest/start/index.html @@ -46,6 +46,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.PresentationRequest.start")}}

      diff --git a/files/en-us/web/api/processinginstruction/index.html b/files/en-us/web/api/processinginstruction/index.html index 3825b241f035f94..4a740116082213a 100644 --- a/files/en-us/web/api/processinginstruction/index.html +++ b/files/en-us/web/api/processinginstruction/index.html @@ -50,8 +50,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ProcessingInstruction")}}

      See also

      diff --git a/files/en-us/web/api/progressevent/index.html b/files/en-us/web/api/progressevent/index.html index 3e434b397a2293f..def31a26cd077ac 100644 --- a/files/en-us/web/api/progressevent/index.html +++ b/files/en-us/web/api/progressevent/index.html @@ -36,7 +36,6 @@

      Properties

      Methods

      -

      Also inherits methods from its parent {{domxref("Event")}}.

      @@ -81,8 +80,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ProgressEvent")}}

      See also

      diff --git a/files/en-us/web/api/progressevent/initprogressevent/index.html b/files/en-us/web/api/progressevent/initprogressevent/index.html index 3e161fb70385572..713d1fbefeb6879 100644 --- a/files/en-us/web/api/progressevent/initprogressevent/index.html +++ b/files/en-us/web/api/progressevent/initprogressevent/index.html @@ -81,8 +81,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ProgressEvent.initProgressEvent")}}

      See also

      diff --git a/files/en-us/web/api/progressevent/lengthcomputable/index.html b/files/en-us/web/api/progressevent/lengthcomputable/index.html index 79e5ff51c363cc7..e7fe4ad4f1f8e9b 100644 --- a/files/en-us/web/api/progressevent/lengthcomputable/index.html +++ b/files/en-us/web/api/progressevent/lengthcomputable/index.html @@ -34,8 +34,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ProgressEvent.lengthComputable")}}

      See also

      diff --git a/files/en-us/web/api/progressevent/loaded/index.html b/files/en-us/web/api/progressevent/loaded/index.html index 73436d0b3e8afd7..e58f16c10251a00 100644 --- a/files/en-us/web/api/progressevent/loaded/index.html +++ b/files/en-us/web/api/progressevent/loaded/index.html @@ -34,8 +34,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ProgressEvent.loaded")}}

      See also

      diff --git a/files/en-us/web/api/progressevent/progressevent/index.html b/files/en-us/web/api/progressevent/progressevent/index.html index 6293e2af0afd724..9522185cf4f48ff 100644 --- a/files/en-us/web/api/progressevent/progressevent/index.html +++ b/files/en-us/web/api/progressevent/progressevent/index.html @@ -50,8 +50,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ProgressEvent.ProgressEvent")}}

      See also

      diff --git a/files/en-us/web/api/progressevent/total/index.html b/files/en-us/web/api/progressevent/total/index.html index 0a1278a2f102a61..a889b166c4e3a55 100644 --- a/files/en-us/web/api/progressevent/total/index.html +++ b/files/en-us/web/api/progressevent/total/index.html @@ -37,8 +37,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ProgressEvent.total")}}

      See also

      diff --git a/files/en-us/web/api/promiserejectionevent/index.html b/files/en-us/web/api/promiserejectionevent/index.html index f3ef582ac819f93..ed454d16140b635 100644 --- a/files/en-us/web/api/promiserejectionevent/index.html +++ b/files/en-us/web/api/promiserejectionevent/index.html @@ -79,8 +79,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PromiseRejectionEvent")}}

      See also

      diff --git a/files/en-us/web/api/promiserejectionevent/promise/index.html b/files/en-us/web/api/promiserejectionevent/promise/index.html index f4ac428a690422c..17d0019021ef8d2 100644 --- a/files/en-us/web/api/promiserejectionevent/promise/index.html +++ b/files/en-us/web/api/promiserejectionevent/promise/index.html @@ -62,8 +62,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PromiseRejectionEvent.promise")}}

      See also

      diff --git a/files/en-us/web/api/promiserejectionevent/promiserejectionevent/index.html b/files/en-us/web/api/promiserejectionevent/promiserejectionevent/index.html index b677fd1e137c95d..46f34b924b3a173 100644 --- a/files/en-us/web/api/promiserejectionevent/promiserejectionevent/index.html +++ b/files/en-us/web/api/promiserejectionevent/promiserejectionevent/index.html @@ -74,8 +74,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PromiseRejectionEvent.PromiseRejectionEvent")}}

      See also

      diff --git a/files/en-us/web/api/promiserejectionevent/reason/index.html b/files/en-us/web/api/promiserejectionevent/reason/index.html index fe0b80b8cbdfe8c..6f9f8b531f2b767 100644 --- a/files/en-us/web/api/promiserejectionevent/reason/index.html +++ b/files/en-us/web/api/promiserejectionevent/reason/index.html @@ -51,8 +51,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PromiseRejectionEvent.reason")}}

      See also

      diff --git a/files/en-us/web/api/proximity_events/index.html b/files/en-us/web/api/proximity_events/index.html index 238704d521c3780..2ddfa8c609e6854 100644 --- a/files/en-us/web/api/proximity_events/index.html +++ b/files/en-us/web/api/proximity_events/index.html @@ -63,8 +63,6 @@

      Browser compatibility

      DeviceProximityEvent

      - -

      {{Compat("api.DeviceProximityEvent")}}

      UserProximityEvent

      diff --git a/files/en-us/web/api/publickeycredential/getclientextensionresults/index.html b/files/en-us/web/api/publickeycredential/getclientextensionresults/index.html index d333a8ad297bdd0..fa3728a80160002 100644 --- a/files/en-us/web/api/publickeycredential/getclientextensionresults/index.html +++ b/files/en-us/web/api/publickeycredential/getclientextensionresults/index.html @@ -94,8 +94,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredential.getClientExtensionResults")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredential/id/index.html b/files/en-us/web/api/publickeycredential/id/index.html index 689aeeec0cc2866..2aa51fd8e9c4840 100644 --- a/files/en-us/web/api/publickeycredential/id/index.html +++ b/files/en-us/web/api/publickeycredential/id/index.html @@ -88,8 +88,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredential.id")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredential/index.html b/files/en-us/web/api/publickeycredential/index.html index 15dfd487fc93f4d..890648cd3446dd0 100644 --- a/files/en-us/web/api/publickeycredential/index.html +++ b/files/en-us/web/api/publickeycredential/index.html @@ -112,8 +112,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredential")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredential/isuserverifyingplatformauthenticatoravailable/index.html b/files/en-us/web/api/publickeycredential/isuserverifyingplatformauthenticatoravailable/index.html index d350258e7a8f9e4..3c3308a34b8cacb 100644 --- a/files/en-us/web/api/publickeycredential/isuserverifyingplatformauthenticatoravailable/index.html +++ b/files/en-us/web/api/publickeycredential/isuserverifyingplatformauthenticatoravailable/index.html @@ -79,8 +79,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredential/rawid/index.html b/files/en-us/web/api/publickeycredential/rawid/index.html index ff3ccf506409f2f..58e7e2ee05043b4 100644 --- a/files/en-us/web/api/publickeycredential/rawid/index.html +++ b/files/en-us/web/api/publickeycredential/rawid/index.html @@ -78,6 +78,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredential.rawId")}}

      diff --git a/files/en-us/web/api/publickeycredential/response/index.html b/files/en-us/web/api/publickeycredential/response/index.html index 043c208cf85b47e..0b07e4e9b2153df 100644 --- a/files/en-us/web/api/publickeycredential/response/index.html +++ b/files/en-us/web/api/publickeycredential/response/index.html @@ -97,6 +97,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredential.response")}}

      diff --git a/files/en-us/web/api/publickeycredentialcreationoptions/attestation/index.html b/files/en-us/web/api/publickeycredentialcreationoptions/attestation/index.html index de44e1d9726729e..c497b39ad1c78fd 100644 --- a/files/en-us/web/api/publickeycredentialcreationoptions/attestation/index.html +++ b/files/en-us/web/api/publickeycredentialcreationoptions/attestation/index.html @@ -83,8 +83,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialCreationOptions.attestation")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialcreationoptions/authenticatorselection/index.html b/files/en-us/web/api/publickeycredentialcreationoptions/authenticatorselection/index.html index f9fec4238cdb6a2..9f13bc4bd4d093f 100644 --- a/files/en-us/web/api/publickeycredentialcreationoptions/authenticatorselection/index.html +++ b/files/en-us/web/api/publickeycredentialcreationoptions/authenticatorselection/index.html @@ -95,8 +95,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialCreationOptions.authenticatorSelection")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialcreationoptions/challenge/index.html b/files/en-us/web/api/publickeycredentialcreationoptions/challenge/index.html index f1a1d1e3459eb26..86c661dfd7d4784 100644 --- a/files/en-us/web/api/publickeycredentialcreationoptions/challenge/index.html +++ b/files/en-us/web/api/publickeycredentialcreationoptions/challenge/index.html @@ -80,8 +80,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialCreationOptions.challenge")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialcreationoptions/excludecredentials/index.html b/files/en-us/web/api/publickeycredentialcreationoptions/excludecredentials/index.html index 09a397e70a72f9c..eb89ee089fa17f6 100644 --- a/files/en-us/web/api/publickeycredentialcreationoptions/excludecredentials/index.html +++ b/files/en-us/web/api/publickeycredentialcreationoptions/excludecredentials/index.html @@ -99,6 +99,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialCreationOptions.excludeCredentials")}}

      diff --git a/files/en-us/web/api/publickeycredentialcreationoptions/extensions/index.html b/files/en-us/web/api/publickeycredentialcreationoptions/extensions/index.html index 5c3442a22710eb4..2b80aaf051a2761 100644 --- a/files/en-us/web/api/publickeycredentialcreationoptions/extensions/index.html +++ b/files/en-us/web/api/publickeycredentialcreationoptions/extensions/index.html @@ -142,8 +142,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialCreationOptions.extensions")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialcreationoptions/index.html b/files/en-us/web/api/publickeycredentialcreationoptions/index.html index 7a06f6162d0c36f..b1439b8f9f7c99e 100644 --- a/files/en-us/web/api/publickeycredentialcreationoptions/index.html +++ b/files/en-us/web/api/publickeycredentialcreationoptions/index.html @@ -135,8 +135,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialCreationOptions")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialcreationoptions/pubkeycredparams/index.html b/files/en-us/web/api/publickeycredentialcreationoptions/pubkeycredparams/index.html index 4cc50ff529d83bb..daed6a87a73beef 100644 --- a/files/en-us/web/api/publickeycredentialcreationoptions/pubkeycredparams/index.html +++ b/files/en-us/web/api/publickeycredentialcreationoptions/pubkeycredparams/index.html @@ -89,8 +89,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialCreationOptions.pubKeyCredParams")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialcreationoptions/rp/index.html b/files/en-us/web/api/publickeycredentialcreationoptions/rp/index.html index 39e960df2ac9110..c1d5e2c90931fea 100644 --- a/files/en-us/web/api/publickeycredentialcreationoptions/rp/index.html +++ b/files/en-us/web/api/publickeycredentialcreationoptions/rp/index.html @@ -80,6 +80,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialCreationOptions.rp")}}

      diff --git a/files/en-us/web/api/publickeycredentialcreationoptions/timeout/index.html b/files/en-us/web/api/publickeycredentialcreationoptions/timeout/index.html index 90fb9704096fd77..e665875f6ea29a5 100644 --- a/files/en-us/web/api/publickeycredentialcreationoptions/timeout/index.html +++ b/files/en-us/web/api/publickeycredentialcreationoptions/timeout/index.html @@ -79,8 +79,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialCreationOptions.timeout")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialcreationoptions/user/index.html b/files/en-us/web/api/publickeycredentialcreationoptions/user/index.html index 8da1392a1a613c6..f6930bfceafaac3 100644 --- a/files/en-us/web/api/publickeycredentialcreationoptions/user/index.html +++ b/files/en-us/web/api/publickeycredentialcreationoptions/user/index.html @@ -84,8 +84,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialCreationOptions.user")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialrequestoptions/allowcredentials/index.html b/files/en-us/web/api/publickeycredentialrequestoptions/allowcredentials/index.html index d1ae9709d885fc6..31ae6bad04dde14 100644 --- a/files/en-us/web/api/publickeycredentialrequestoptions/allowcredentials/index.html +++ b/files/en-us/web/api/publickeycredentialrequestoptions/allowcredentials/index.html @@ -91,8 +91,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialRequestOptions.allowCredentials")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialrequestoptions/challenge/index.html b/files/en-us/web/api/publickeycredentialrequestoptions/challenge/index.html index 91237801000b282..c2bd866fede61ba 100644 --- a/files/en-us/web/api/publickeycredentialrequestoptions/challenge/index.html +++ b/files/en-us/web/api/publickeycredentialrequestoptions/challenge/index.html @@ -66,8 +66,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialRequestOptions.challenge")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialrequestoptions/extensions/index.html b/files/en-us/web/api/publickeycredentialrequestoptions/extensions/index.html index 43d84e69f17ee6d..c0826a045b04732 100644 --- a/files/en-us/web/api/publickeycredentialrequestoptions/extensions/index.html +++ b/files/en-us/web/api/publickeycredentialrequestoptions/extensions/index.html @@ -134,8 +134,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialRequestOptions.extensions")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialrequestoptions/index.html b/files/en-us/web/api/publickeycredentialrequestoptions/index.html index c7b2821e5b3b2e5..0c749003d9ad4ab 100644 --- a/files/en-us/web/api/publickeycredentialrequestoptions/index.html +++ b/files/en-us/web/api/publickeycredentialrequestoptions/index.html @@ -92,8 +92,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialRequestOptions")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialrequestoptions/rpid/index.html b/files/en-us/web/api/publickeycredentialrequestoptions/rpid/index.html index 598170bbd05fe36..b67fec196a2571c 100644 --- a/files/en-us/web/api/publickeycredentialrequestoptions/rpid/index.html +++ b/files/en-us/web/api/publickeycredentialrequestoptions/rpid/index.html @@ -65,8 +65,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialRequestOptions.rpId")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialrequestoptions/timeout/index.html b/files/en-us/web/api/publickeycredentialrequestoptions/timeout/index.html index 463c6cc86ead2fd..d51e15ab8b2d3cc 100644 --- a/files/en-us/web/api/publickeycredentialrequestoptions/timeout/index.html +++ b/files/en-us/web/api/publickeycredentialrequestoptions/timeout/index.html @@ -65,8 +65,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialRequestOptions.timeout")}}

      See also

      diff --git a/files/en-us/web/api/publickeycredentialrequestoptions/userverification/index.html b/files/en-us/web/api/publickeycredentialrequestoptions/userverification/index.html index 2904a4db543f8d9..bed3291821afab2 100644 --- a/files/en-us/web/api/publickeycredentialrequestoptions/userverification/index.html +++ b/files/en-us/web/api/publickeycredentialrequestoptions/userverification/index.html @@ -70,8 +70,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PublicKeyCredentialRequestOptions.userVerification")}}

      See also

      diff --git a/files/en-us/web/api/push_api/index.html b/files/en-us/web/api/push_api/index.html index 8a519abf70f545d..acdc0ece6378dbe 100644 --- a/files/en-us/web/api/push_api/index.html +++ b/files/en-us/web/api/push_api/index.html @@ -96,8 +96,6 @@

      Browser compatibility

      PushEvent

      - -

      {{Compat("api.PushEvent")}}

      PushMessageData

      diff --git a/files/en-us/web/api/pushevent/data/index.html b/files/en-us/web/api/pushevent/data/index.html index 07549d2dfc57650..cfd3a66f5519a0d 100644 --- a/files/en-us/web/api/pushevent/data/index.html +++ b/files/en-us/web/api/pushevent/data/index.html @@ -74,6 +74,5 @@

      Browser Compatibility

      -

      {{Compat("api.PushEvent.data")}}

      diff --git a/files/en-us/web/api/pushevent/index.html b/files/en-us/web/api/pushevent/index.html index caebd4edafa83c8..5c8b2971a8cf7ce 100644 --- a/files/en-us/web/api/pushevent/index.html +++ b/files/en-us/web/api/pushevent/index.html @@ -88,7 +88,6 @@

      Browser Compatibility

      -

      {{Compat("api.PushEvent")}}

      diff --git a/files/en-us/web/api/pushevent/pushevent/index.html b/files/en-us/web/api/pushevent/pushevent/index.html index 6a8a94d63021675..aa3a492c03130fb 100644 --- a/files/en-us/web/api/pushevent/pushevent/index.html +++ b/files/en-us/web/api/pushevent/pushevent/index.html @@ -46,7 +46,6 @@

      Browser Compatibility

      -

      {{Compat("api.PushEvent.PushEvent")}}

      diff --git a/files/en-us/web/api/pushmanager/getsubscription/index.html b/files/en-us/web/api/pushmanager/getsubscription/index.html index 7f2b1836dbb5b6f..0338904282378d1 100644 --- a/files/en-us/web/api/pushmanager/getsubscription/index.html +++ b/files/en-us/web/api/pushmanager/getsubscription/index.html @@ -86,7 +86,6 @@

      Browser compatibility

      -

      {{Compat("api.PushManager.getSubscription")}}

      diff --git a/files/en-us/web/api/pushmanager/haspermission/index.html b/files/en-us/web/api/pushmanager/haspermission/index.html index 84c3a3979cee908..ebff424e5c99541 100644 --- a/files/en-us/web/api/pushmanager/haspermission/index.html +++ b/files/en-us/web/api/pushmanager/haspermission/index.html @@ -42,7 +42,6 @@

      Browser Compatibility

      -

      {{Compat("api.PushManager.hasPermission")}}

      diff --git a/files/en-us/web/api/pushmanager/index.html b/files/en-us/web/api/pushmanager/index.html index 34435d0e2239292..3eb0679af4cfd35 100644 --- a/files/en-us/web/api/pushmanager/index.html +++ b/files/en-us/web/api/pushmanager/index.html @@ -98,7 +98,6 @@

      Browser compatibility

      -

      {{Compat("api.PushManager")}}

      diff --git a/files/en-us/web/api/pushmanager/permissionstate/index.html b/files/en-us/web/api/pushmanager/permissionstate/index.html index 99e7e0f135648d7..09ff48dbfb11ed5 100644 --- a/files/en-us/web/api/pushmanager/permissionstate/index.html +++ b/files/en-us/web/api/pushmanager/permissionstate/index.html @@ -62,7 +62,6 @@

      Browser compatibility

      -

      {{Compat("api.PushManager.permissionState")}}

      diff --git a/files/en-us/web/api/pushmanager/register/index.html b/files/en-us/web/api/pushmanager/register/index.html index 39eacaa4cb1a2b6..bcb39ddff4e302f 100644 --- a/files/en-us/web/api/pushmanager/register/index.html +++ b/files/en-us/web/api/pushmanager/register/index.html @@ -63,7 +63,6 @@

      Browser compatibility

      -

      {{Compat("api.PushManager.register")}}

      diff --git a/files/en-us/web/api/pushmanager/registrations/index.html b/files/en-us/web/api/pushmanager/registrations/index.html index bfe22b4dfaaa3e1..76cf47b17d101c9 100644 --- a/files/en-us/web/api/pushmanager/registrations/index.html +++ b/files/en-us/web/api/pushmanager/registrations/index.html @@ -74,8 +74,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PushManager.registrations")}}

      See also

      diff --git a/files/en-us/web/api/pushmanager/subscribe/index.html b/files/en-us/web/api/pushmanager/subscribe/index.html index fd047816975e036..f69aeb3eddc9863 100644 --- a/files/en-us/web/api/pushmanager/subscribe/index.html +++ b/files/en-us/web/api/pushmanager/subscribe/index.html @@ -109,7 +109,6 @@

      Browser compatibility

      -

      {{Compat("api.PushManager.subscribe")}}

      diff --git a/files/en-us/web/api/pushmanager/supportedcontentencodings/index.html b/files/en-us/web/api/pushmanager/supportedcontentencodings/index.html index 05a79b29b1f485c..90fc7b87af29b43 100644 --- a/files/en-us/web/api/pushmanager/supportedcontentencodings/index.html +++ b/files/en-us/web/api/pushmanager/supportedcontentencodings/index.html @@ -44,7 +44,6 @@

      Browser Compatibility

      -

      {{Compat("api.PushManager.supportedContentEncodings")}}

      diff --git a/files/en-us/web/api/pushmanager/unregister/index.html b/files/en-us/web/api/pushmanager/unregister/index.html index 21796a0d7b73939..71e5cba26bac785 100644 --- a/files/en-us/web/api/pushmanager/unregister/index.html +++ b/files/en-us/web/api/pushmanager/unregister/index.html @@ -75,8 +75,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.PushManager.unregister")}}

      See also

      diff --git a/files/en-us/web/api/pushmessagedata/arraybuffer/index.html b/files/en-us/web/api/pushmessagedata/arraybuffer/index.html index b5432d4b79e52dc..dab2e28a6590a6d 100644 --- a/files/en-us/web/api/pushmessagedata/arraybuffer/index.html +++ b/files/en-us/web/api/pushmessagedata/arraybuffer/index.html @@ -56,6 +56,5 @@

      Browser Compatibility

      -

      {{Compat("api.PushMessageData.arrayBuffer")}}

      diff --git a/files/en-us/web/api/pushmessagedata/blob/index.html b/files/en-us/web/api/pushmessagedata/blob/index.html index 3bce16755744292..7fc04e25d914fcc 100644 --- a/files/en-us/web/api/pushmessagedata/blob/index.html +++ b/files/en-us/web/api/pushmessagedata/blob/index.html @@ -56,6 +56,5 @@

      Browser Compatibility

      -

      {{Compat("api.PushMessageData.blob")}}

      diff --git a/files/en-us/web/api/pushmessagedata/index.html b/files/en-us/web/api/pushmessagedata/index.html index c9268411ed61d69..c4a65fc1967611a 100644 --- a/files/en-us/web/api/pushmessagedata/index.html +++ b/files/en-us/web/api/pushmessagedata/index.html @@ -70,6 +70,5 @@

      Browser compatibility

      -

      {{Compat("api.PushMessageData")}}

      diff --git a/files/en-us/web/api/pushmessagedata/json/index.html b/files/en-us/web/api/pushmessagedata/json/index.html index 85e10e6283a67eb..77e5da1bf377348 100644 --- a/files/en-us/web/api/pushmessagedata/json/index.html +++ b/files/en-us/web/api/pushmessagedata/json/index.html @@ -56,6 +56,5 @@

      Browser Compatibility

      -

      {{Compat("api.PushMessageData.json")}}

      diff --git a/files/en-us/web/api/pushmessagedata/text/index.html b/files/en-us/web/api/pushmessagedata/text/index.html index 317cd41b46d7a04..ecefce5f425a59a 100644 --- a/files/en-us/web/api/pushmessagedata/text/index.html +++ b/files/en-us/web/api/pushmessagedata/text/index.html @@ -57,6 +57,5 @@

      Browser Compatibility

      -

      {{Compat("api.PushMessageData.text")}}

      diff --git a/files/en-us/web/api/pushregistrationmanager/index.html b/files/en-us/web/api/pushregistrationmanager/index.html index 238ab29fe58656d..a1af6c3ac2b9fc3 100644 --- a/files/en-us/web/api/pushregistrationmanager/index.html +++ b/files/en-us/web/api/pushregistrationmanager/index.html @@ -32,6 +32,5 @@

      Browser Compatibility

      -

      {{Compat("api.PushRegistrationManager")}}

      diff --git a/files/en-us/web/api/pushsubscription/endpoint/index.html b/files/en-us/web/api/pushsubscription/endpoint/index.html index 87f267f5a3c59d2..85e74efaa15e756 100644 --- a/files/en-us/web/api/pushsubscription/endpoint/index.html +++ b/files/en-us/web/api/pushsubscription/endpoint/index.html @@ -60,6 +60,5 @@

      Browser compatibility

      -

      {{Compat("api.PushSubscription.endpoint")}}

      diff --git a/files/en-us/web/api/pushsubscription/expirationtime/index.html b/files/en-us/web/api/pushsubscription/expirationtime/index.html index c10acd4f3deeaf5..562e739a12bd856 100644 --- a/files/en-us/web/api/pushsubscription/expirationtime/index.html +++ b/files/en-us/web/api/pushsubscription/expirationtime/index.html @@ -44,6 +44,5 @@

      Browser Compatibility

      -

      {{Compat("api.PushSubscription.expirationTime")}}

      diff --git a/files/en-us/web/api/pushsubscription/getkey/index.html b/files/en-us/web/api/pushsubscription/getkey/index.html index aeed8adc10c9bc1..76f2b39620b7215 100644 --- a/files/en-us/web/api/pushsubscription/getkey/index.html +++ b/files/en-us/web/api/pushsubscription/getkey/index.html @@ -86,6 +86,5 @@

      Browser Compatibility

      -

      {{Compat("api.PushSubscription.getKey")}}

      diff --git a/files/en-us/web/api/pushsubscription/index.html b/files/en-us/web/api/pushsubscription/index.html index c3b9f29458666d5..7f7e2625a97bc2e 100644 --- a/files/en-us/web/api/pushsubscription/index.html +++ b/files/en-us/web/api/pushsubscription/index.html @@ -77,7 +77,6 @@

      Browser compatibility

      -

      {{Compat("api.PushSubscription")}}

      diff --git a/files/en-us/web/api/pushsubscription/options/index.html b/files/en-us/web/api/pushsubscription/options/index.html index e00bbad94d601a2..bd0fae72b3469c6 100644 --- a/files/en-us/web/api/pushsubscription/options/index.html +++ b/files/en-us/web/api/pushsubscription/options/index.html @@ -48,6 +48,5 @@

      Browser Compatibility

      -

      {{Compat("api.PushSubscription.options")}}

      diff --git a/files/en-us/web/api/pushsubscription/subscriptionid/index.html b/files/en-us/web/api/pushsubscription/subscriptionid/index.html index 84990eba3f0f709..bd0ff525dd2ea7f 100644 --- a/files/en-us/web/api/pushsubscription/subscriptionid/index.html +++ b/files/en-us/web/api/pushsubscription/subscriptionid/index.html @@ -42,6 +42,5 @@

      Browser Compatibility

      -

      {{Compat("api.PushSubscription.subscriptionId")}}

      diff --git a/files/en-us/web/api/pushsubscription/tojson/index.html b/files/en-us/web/api/pushsubscription/tojson/index.html index 077024965967f33..cb9f8d98258a069 100644 --- a/files/en-us/web/api/pushsubscription/tojson/index.html +++ b/files/en-us/web/api/pushsubscription/tojson/index.html @@ -59,6 +59,5 @@

      Browser compatibility

      -

      {{Compat("api.PushSubscription.toJSON")}}

      diff --git a/files/en-us/web/api/pushsubscription/unsubscribe/index.html b/files/en-us/web/api/pushsubscription/unsubscribe/index.html index eb2439acba279c5..ce6ad148a492c35 100644 --- a/files/en-us/web/api/pushsubscription/unsubscribe/index.html +++ b/files/en-us/web/api/pushsubscription/unsubscribe/index.html @@ -61,7 +61,6 @@

      Browser compatibility

      -

      {{Compat("api.PushSubscription.unsubscribe")}}

      diff --git a/files/en-us/web/api/radionodelist/index.html b/files/en-us/web/api/radionodelist/index.html index d1495fb81786f63..c76ff87eb5cbf36 100644 --- a/files/en-us/web/api/radionodelist/index.html +++ b/files/en-us/web/api/radionodelist/index.html @@ -47,8 +47,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RadioNodeList")}}

      See also

      diff --git a/files/en-us/web/api/radionodelist/value/index.html b/files/en-us/web/api/radionodelist/value/index.html index 2e9944dbe7e15e4..f65bac1ce2e31f1 100644 --- a/files/en-us/web/api/radionodelist/value/index.html +++ b/files/en-us/web/api/radionodelist/value/index.html @@ -62,8 +62,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RadioNodeList.value")}}

      See also

      diff --git a/files/en-us/web/api/range/clonecontents/index.html b/files/en-us/web/api/range/clonecontents/index.html index 678464e8bf090ed..aa95aa571ef1085 100644 --- a/files/en-us/web/api/range/clonecontents/index.html +++ b/files/en-us/web/api/range/clonecontents/index.html @@ -52,8 +52,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.cloneContents")}}

      See also

      diff --git a/files/en-us/web/api/range/clonerange/index.html b/files/en-us/web/api/range/clonerange/index.html index 8c632c239982315..a50e8e54d96dbf1 100644 --- a/files/en-us/web/api/range/clonerange/index.html +++ b/files/en-us/web/api/range/clonerange/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.cloneRange")}}

      See also

      diff --git a/files/en-us/web/api/range/collapse/index.html b/files/en-us/web/api/range/collapse/index.html index 499c95dc87c66ba..bcf56dd8571bb25 100644 --- a/files/en-us/web/api/range/collapse/index.html +++ b/files/en-us/web/api/range/collapse/index.html @@ -58,8 +58,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.collapse")}}

      See also

      diff --git a/files/en-us/web/api/range/collapsed/index.html b/files/en-us/web/api/range/collapsed/index.html index e2016944a9eee2c..0a50c9f92d71ca1 100644 --- a/files/en-us/web/api/range/collapsed/index.html +++ b/files/en-us/web/api/range/collapsed/index.html @@ -53,8 +53,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.collapsed")}}

      See also

      diff --git a/files/en-us/web/api/range/commonancestorcontainer/index.html b/files/en-us/web/api/range/commonancestorcontainer/index.html index 54926a03018f753..30799480f672f75 100644 --- a/files/en-us/web/api/range/commonancestorcontainer/index.html +++ b/files/en-us/web/api/range/commonancestorcontainer/index.html @@ -116,8 +116,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.commonAncestorContainer")}}

      See also

      diff --git a/files/en-us/web/api/range/compareboundarypoints/index.html b/files/en-us/web/api/range/compareboundarypoints/index.html index 5023737656e7a1c..b3d158b8d8f499e 100644 --- a/files/en-us/web/api/range/compareboundarypoints/index.html +++ b/files/en-us/web/api/range/compareboundarypoints/index.html @@ -75,8 +75,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.compareBoundaryPoints")}}

      See also

      diff --git a/files/en-us/web/api/range/comparenode/index.html b/files/en-us/web/api/range/comparenode/index.html index 8ece70dc8634813..b44b7227385da39 100644 --- a/files/en-us/web/api/range/comparenode/index.html +++ b/files/en-us/web/api/range/comparenode/index.html @@ -86,8 +86,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.compareNode")}}

      See also

      diff --git a/files/en-us/web/api/range/comparepoint/index.html b/files/en-us/web/api/range/comparepoint/index.html index 2fa10a801331e4b..4b6e355cb142a9e 100644 --- a/files/en-us/web/api/range/comparepoint/index.html +++ b/files/en-us/web/api/range/comparepoint/index.html @@ -56,8 +56,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.comparePoint")}}

      See also

      diff --git a/files/en-us/web/api/range/createcontextualfragment/index.html b/files/en-us/web/api/range/createcontextualfragment/index.html index 1c0ad6a804635b9..2a475d2a095af68 100644 --- a/files/en-us/web/api/range/createcontextualfragment/index.html +++ b/files/en-us/web/api/range/createcontextualfragment/index.html @@ -55,8 +55,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.createContextualFragment")}}

      See also

      diff --git a/files/en-us/web/api/range/deletecontents/index.html b/files/en-us/web/api/range/deletecontents/index.html index f814fdd1a6bf667..450ca0ee71da635 100644 --- a/files/en-us/web/api/range/deletecontents/index.html +++ b/files/en-us/web/api/range/deletecontents/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.deleteContents")}}

      See also

      diff --git a/files/en-us/web/api/range/detach/index.html b/files/en-us/web/api/range/detach/index.html index 5ac75161552dcb5..2b39cb5e713c978 100644 --- a/files/en-us/web/api/range/detach/index.html +++ b/files/en-us/web/api/range/detach/index.html @@ -48,8 +48,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.detach")}}

      See also

      diff --git a/files/en-us/web/api/range/endcontainer/index.html b/files/en-us/web/api/range/endcontainer/index.html index 718800ed5650dbb..05992d5cbff648c 100644 --- a/files/en-us/web/api/range/endcontainer/index.html +++ b/files/en-us/web/api/range/endcontainer/index.html @@ -50,8 +50,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.endContainer")}}

      See also

      diff --git a/files/en-us/web/api/range/endoffset/index.html b/files/en-us/web/api/range/endoffset/index.html index 8b55fba084eaeb7..032851e092a6d2a 100644 --- a/files/en-us/web/api/range/endoffset/index.html +++ b/files/en-us/web/api/range/endoffset/index.html @@ -50,8 +50,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.endOffset")}}

      See also

      diff --git a/files/en-us/web/api/range/extractcontents/index.html b/files/en-us/web/api/range/extractcontents/index.html index 2da9338ce410ff5..0b4320ef2a1a266 100644 --- a/files/en-us/web/api/range/extractcontents/index.html +++ b/files/en-us/web/api/range/extractcontents/index.html @@ -110,8 +110,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.extractContents")}}

      See also

      diff --git a/files/en-us/web/api/range/getboundingclientrect/index.html b/files/en-us/web/api/range/getboundingclientrect/index.html index bb63b6a473f945f..3a80edebdd4734f 100644 --- a/files/en-us/web/api/range/getboundingclientrect/index.html +++ b/files/en-us/web/api/range/getboundingclientrect/index.html @@ -75,8 +75,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.getBoundingClientRect")}}

      See also

      diff --git a/files/en-us/web/api/range/getclientrects/index.html b/files/en-us/web/api/range/getclientrects/index.html index cd09c1105ddad7d..a163210da08e0ed 100644 --- a/files/en-us/web/api/range/getclientrects/index.html +++ b/files/en-us/web/api/range/getclientrects/index.html @@ -44,8 +44,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.getClientRects")}}

      See also

      diff --git a/files/en-us/web/api/range/index.html b/files/en-us/web/api/range/index.html index ad192c7d774f4fe..6ce3ae56ca23ef4 100644 --- a/files/en-us/web/api/range/index.html +++ b/files/en-us/web/api/range/index.html @@ -135,8 +135,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range")}}

      See also

      diff --git a/files/en-us/web/api/range/insertnode/index.html b/files/en-us/web/api/range/insertnode/index.html index 111ad433be0a968..ded822e9ec0fa0a 100644 --- a/files/en-us/web/api/range/insertnode/index.html +++ b/files/en-us/web/api/range/insertnode/index.html @@ -60,8 +60,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.insertNode")}}

      See also

      diff --git a/files/en-us/web/api/range/intersectsnode/index.html b/files/en-us/web/api/range/intersectsnode/index.html index 12acb1996466058..1d5e6e4963c35a4 100644 --- a/files/en-us/web/api/range/intersectsnode/index.html +++ b/files/en-us/web/api/range/intersectsnode/index.html @@ -51,8 +51,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.intersectsNode")}}

      See also

      diff --git a/files/en-us/web/api/range/ispointinrange/index.html b/files/en-us/web/api/range/ispointinrange/index.html index a18a8296652d7f3..51d14a4b1566b93 100644 --- a/files/en-us/web/api/range/ispointinrange/index.html +++ b/files/en-us/web/api/range/ispointinrange/index.html @@ -53,8 +53,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.isPointInRange")}}

      See also

      diff --git a/files/en-us/web/api/range/range/index.html b/files/en-us/web/api/range/range/index.html index df0a4ca63a7e032..53a9e9f532029d2 100644 --- a/files/en-us/web/api/range/range/index.html +++ b/files/en-us/web/api/range/range/index.html @@ -71,8 +71,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.Range")}}

      See also

      diff --git a/files/en-us/web/api/range/selectnode/index.html b/files/en-us/web/api/range/selectnode/index.html index 8b0eaa6a75cd3c1..79f2dc6a7220fbd 100644 --- a/files/en-us/web/api/range/selectnode/index.html +++ b/files/en-us/web/api/range/selectnode/index.html @@ -54,8 +54,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.selectNode")}}

      See also

      diff --git a/files/en-us/web/api/range/selectnodecontents/index.html b/files/en-us/web/api/range/selectnodecontents/index.html index c9da5ed2bc28677..fc3654466979080 100644 --- a/files/en-us/web/api/range/selectnodecontents/index.html +++ b/files/en-us/web/api/range/selectnodecontents/index.html @@ -94,8 +94,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.selectNodeContents")}}

      See also

      diff --git a/files/en-us/web/api/range/setend/index.html b/files/en-us/web/api/range/setend/index.html index 65e2a8166f089e9..cddddcebf2595b1 100644 --- a/files/en-us/web/api/range/setend/index.html +++ b/files/en-us/web/api/range/setend/index.html @@ -84,8 +84,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.setEnd")}}

      See also

      diff --git a/files/en-us/web/api/range/setendafter/index.html b/files/en-us/web/api/range/setendafter/index.html index 214f8761ac93bc6..233478bcb766e0f 100644 --- a/files/en-us/web/api/range/setendafter/index.html +++ b/files/en-us/web/api/range/setendafter/index.html @@ -54,8 +54,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.setEndAfter")}}

      See also

      diff --git a/files/en-us/web/api/range/setendbefore/index.html b/files/en-us/web/api/range/setendbefore/index.html index 91a10c9bd12d1b6..e258ae6d9441bdf 100644 --- a/files/en-us/web/api/range/setendbefore/index.html +++ b/files/en-us/web/api/range/setendbefore/index.html @@ -55,8 +55,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.setEndBefore")}}

      See also

      diff --git a/files/en-us/web/api/range/setstart/index.html b/files/en-us/web/api/range/setstart/index.html index a86b8a8293461e2..8a92cce39a680f5 100644 --- a/files/en-us/web/api/range/setstart/index.html +++ b/files/en-us/web/api/range/setstart/index.html @@ -121,8 +121,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.setStart")}}

      See also

      diff --git a/files/en-us/web/api/range/setstartafter/index.html b/files/en-us/web/api/range/setstartafter/index.html index 22a4d90f0e8e820..6f78db0a9786392 100644 --- a/files/en-us/web/api/range/setstartafter/index.html +++ b/files/en-us/web/api/range/setstartafter/index.html @@ -54,8 +54,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.setStartAfter")}}

      See also

      diff --git a/files/en-us/web/api/range/setstartbefore/index.html b/files/en-us/web/api/range/setstartbefore/index.html index 9902b70ea730d24..d844257aa69d8bd 100644 --- a/files/en-us/web/api/range/setstartbefore/index.html +++ b/files/en-us/web/api/range/setstartbefore/index.html @@ -55,8 +55,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.setStartBefore")}}

      See also

      diff --git a/files/en-us/web/api/range/startcontainer/index.html b/files/en-us/web/api/range/startcontainer/index.html index 76ac9a4d2336f5f..352ae7d32f65f3f 100644 --- a/files/en-us/web/api/range/startcontainer/index.html +++ b/files/en-us/web/api/range/startcontainer/index.html @@ -48,8 +48,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.startContainer")}}

      See also

      diff --git a/files/en-us/web/api/range/startoffset/index.html b/files/en-us/web/api/range/startoffset/index.html index 15a75027e7417cc..290621c13f23954 100644 --- a/files/en-us/web/api/range/startoffset/index.html +++ b/files/en-us/web/api/range/startoffset/index.html @@ -52,8 +52,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.startOffset")}}

      See also

      diff --git a/files/en-us/web/api/range/surroundcontents/index.html b/files/en-us/web/api/range/surroundcontents/index.html index bb059d029e94b68..73606fa23e5ebe8 100644 --- a/files/en-us/web/api/range/surroundcontents/index.html +++ b/files/en-us/web/api/range/surroundcontents/index.html @@ -69,8 +69,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.surroundContents")}}

      See also

      diff --git a/files/en-us/web/api/range/tostring/index.html b/files/en-us/web/api/range/tostring/index.html index a85f74dd3aa3fd5..e046719847674d1 100644 --- a/files/en-us/web/api/range/tostring/index.html +++ b/files/en-us/web/api/range/tostring/index.html @@ -61,8 +61,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Range.toString")}}

      See also

      diff --git a/files/en-us/web/api/readablestream/index.html b/files/en-us/web/api/readablestream/index.html index 3321088445288a1..e9f9069b1f39c8e 100644 --- a/files/en-us/web/api/readablestream/index.html +++ b/files/en-us/web/api/readablestream/index.html @@ -113,7 +113,6 @@

      Browser compatibility

      -

      {{Compat("api.ReadableStream")}}

      diff --git a/files/en-us/web/api/readablestreambyobrequest/index.html b/files/en-us/web/api/readablestreambyobrequest/index.html index 7c5f3cbeab81dec..c7bead33065a7c9 100644 --- a/files/en-us/web/api/readablestreambyobrequest/index.html +++ b/files/en-us/web/api/readablestreambyobrequest/index.html @@ -63,6 +63,5 @@

      Browser compatibility

      -

      {{Compat("api.ReadableStreamBYOBRequest")}}

      diff --git a/files/en-us/web/api/readablestreambyobrequest/respond/index.html b/files/en-us/web/api/readablestreambyobrequest/respond/index.html index 1dd46bd77eabcc9..b9604595c0acc67 100644 --- a/files/en-us/web/api/readablestreambyobrequest/respond/index.html +++ b/files/en-us/web/api/readablestreambyobrequest/respond/index.html @@ -59,6 +59,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ReadableStreamBYOBRequest.respond")}}

      diff --git a/files/en-us/web/api/readablestreambyobrequest/respondwithnewview/index.html b/files/en-us/web/api/readablestreambyobrequest/respondwithnewview/index.html index c504edf3257619d..803c98220d0580a 100644 --- a/files/en-us/web/api/readablestreambyobrequest/respondwithnewview/index.html +++ b/files/en-us/web/api/readablestreambyobrequest/respondwithnewview/index.html @@ -59,6 +59,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ReadableStreamBYOBRequest.respondWithNewView")}}

      diff --git a/files/en-us/web/api/readablestreambyobrequest/view/index.html b/files/en-us/web/api/readablestreambyobrequest/view/index.html index eb4fecc58ada259..3cf33603b6c0de0 100644 --- a/files/en-us/web/api/readablestreambyobrequest/view/index.html +++ b/files/en-us/web/api/readablestreambyobrequest/view/index.html @@ -45,6 +45,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ReadableStreamBYOBRequest.view")}}

      diff --git a/files/en-us/web/api/readablestreamdefaultcontroller/close/index.html b/files/en-us/web/api/readablestreamdefaultcontroller/close/index.html index 6652b690c63d358..aef61fa27310f14 100644 --- a/files/en-us/web/api/readablestreamdefaultcontroller/close/index.html +++ b/files/en-us/web/api/readablestreamdefaultcontroller/close/index.html @@ -91,6 +91,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ReadableStreamDefaultController.close")}}

      diff --git a/files/en-us/web/api/readablestreamdefaultcontroller/error/index.html b/files/en-us/web/api/readablestreamdefaultcontroller/error/index.html index 885590fae441df2..a743d073acacdf7 100644 --- a/files/en-us/web/api/readablestreamdefaultcontroller/error/index.html +++ b/files/en-us/web/api/readablestreamdefaultcontroller/error/index.html @@ -62,6 +62,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ReadableStreamDefaultController.error")}}

      diff --git a/files/en-us/web/api/readablestreamdefaultcontroller/index.html b/files/en-us/web/api/readablestreamdefaultcontroller/index.html index ef1b741a5aa36b7..c2dcad8848702f6 100644 --- a/files/en-us/web/api/readablestreamdefaultcontroller/index.html +++ b/files/en-us/web/api/readablestreamdefaultcontroller/index.html @@ -96,6 +96,5 @@

      Browser compatibility

      -

      {{Compat("api.ReadableStreamDefaultController")}}

      diff --git a/files/en-us/web/api/readablestreamdefaultreader/cancel/index.html b/files/en-us/web/api/readablestreamdefaultreader/cancel/index.html index 21b60761ce37d90..0bc15296e8c6803 100644 --- a/files/en-us/web/api/readablestreamdefaultreader/cancel/index.html +++ b/files/en-us/web/api/readablestreamdefaultreader/cancel/index.html @@ -95,6 +95,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ReadableStreamDefaultReader.cancel")}}

      diff --git a/files/en-us/web/api/readablestreamdefaultreader/closed/index.html b/files/en-us/web/api/readablestreamdefaultreader/closed/index.html index 6bba86c683a09ad..57fcfd97c6421d8 100644 --- a/files/en-us/web/api/readablestreamdefaultreader/closed/index.html +++ b/files/en-us/web/api/readablestreamdefaultreader/closed/index.html @@ -48,6 +48,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ReadableStreamDefaultReader.closed")}}

      diff --git a/files/en-us/web/api/readablestreamdefaultreader/index.html b/files/en-us/web/api/readablestreamdefaultreader/index.html index 546c600e7077fb9..1b6655e83e4cc96 100644 --- a/files/en-us/web/api/readablestreamdefaultreader/index.html +++ b/files/en-us/web/api/readablestreamdefaultreader/index.html @@ -94,6 +94,5 @@

      Browser compatibility

      -

      {{Compat("api.ReadableStreamDefaultReader")}}

      diff --git a/files/en-us/web/api/readablestreamdefaultreader/read/index.html b/files/en-us/web/api/readablestreamdefaultreader/read/index.html index 30711bde6c8a6d5..91e739ce3f42742 100644 --- a/files/en-us/web/api/readablestreamdefaultreader/read/index.html +++ b/files/en-us/web/api/readablestreamdefaultreader/read/index.html @@ -135,6 +135,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ReadableStreamDefaultReader.read")}}

      diff --git a/files/en-us/web/api/readablestreamdefaultreader/readablestreamdefaultreader/index.html b/files/en-us/web/api/readablestreamdefaultreader/readablestreamdefaultreader/index.html index 9bc8cc400299abb..166c48739f722b6 100644 --- a/files/en-us/web/api/readablestreamdefaultreader/readablestreamdefaultreader/index.html +++ b/files/en-us/web/api/readablestreamdefaultreader/readablestreamdefaultreader/index.html @@ -91,6 +91,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ReadableStreamDefaultReader.ReadableStreamDefaultReader")}}

      diff --git a/files/en-us/web/api/readablestreamdefaultreader/releaselock/index.html b/files/en-us/web/api/readablestreamdefaultreader/releaselock/index.html index 7310874a5e01a1e..256f2b2551adf89 100644 --- a/files/en-us/web/api/readablestreamdefaultreader/releaselock/index.html +++ b/files/en-us/web/api/readablestreamdefaultreader/releaselock/index.html @@ -67,6 +67,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ReadableStreamDefaultReader.releaseLock")}}

      diff --git a/files/en-us/web/api/relativeorientationsensor/index.html b/files/en-us/web/api/relativeorientationsensor/index.html index 7cfb142b92dcf4f..cf6a37c321097bd 100644 --- a/files/en-us/web/api/relativeorientationsensor/index.html +++ b/files/en-us/web/api/relativeorientationsensor/index.html @@ -99,6 +99,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RelativeOrientationSensor")}}

      diff --git a/files/en-us/web/api/relativeorientationsensor/relativeorientationsensor/index.html b/files/en-us/web/api/relativeorientationsensor/relativeorientationsensor/index.html index f4adb384fc0cada..db017075809e20a 100644 --- a/files/en-us/web/api/relativeorientationsensor/relativeorientationsensor/index.html +++ b/files/en-us/web/api/relativeorientationsensor/relativeorientationsensor/index.html @@ -53,6 +53,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RelativeOrientationSensor.RelativeOrientationSensor")}}

      diff --git a/files/en-us/web/api/report/body/index.html b/files/en-us/web/api/report/body/index.html index 44e12767ded7eae..8baf89a96c8771d 100644 --- a/files/en-us/web/api/report/body/index.html +++ b/files/en-us/web/api/report/body/index.html @@ -58,7 +58,6 @@

      Browser compatibility

      -

      {{Compat("api.Report.body")}}

      diff --git a/files/en-us/web/api/report/index.html b/files/en-us/web/api/report/index.html index bf2733a56c2ebaa..7347ce662fc3767 100644 --- a/files/en-us/web/api/report/index.html +++ b/files/en-us/web/api/report/index.html @@ -106,8 +106,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Report")}}

      See also

      diff --git a/files/en-us/web/api/report/type/index.html b/files/en-us/web/api/report/type/index.html index db2de6592f021e3..d1cf9b22fd8f1fe 100644 --- a/files/en-us/web/api/report/type/index.html +++ b/files/en-us/web/api/report/type/index.html @@ -58,7 +58,6 @@

      Browser compatibility

      -

      {{Compat("api.Report.body")}}

      diff --git a/files/en-us/web/api/report/url/index.html b/files/en-us/web/api/report/url/index.html index f47add1d37efc2e..1eabacf0b0a9916 100644 --- a/files/en-us/web/api/report/url/index.html +++ b/files/en-us/web/api/report/url/index.html @@ -59,7 +59,6 @@

      Browser compatibility

      -

      {{Compat("api.Report.url")}}

      diff --git a/files/en-us/web/api/reportingobserver/disconnect/index.html b/files/en-us/web/api/reportingobserver/disconnect/index.html index 05e75fcb6b03911..33f458ca14dfd0c 100644 --- a/files/en-us/web/api/reportingobserver/disconnect/index.html +++ b/files/en-us/web/api/reportingobserver/disconnect/index.html @@ -59,7 +59,6 @@

      Browser compatibility

      -

      {{Compat("api.ReportingObserver.disconnect")}}

      diff --git a/files/en-us/web/api/reportingobserver/index.html b/files/en-us/web/api/reportingobserver/index.html index 1eaacd9e4abdbdb..57e736ddc7ca621 100644 --- a/files/en-us/web/api/reportingobserver/index.html +++ b/files/en-us/web/api/reportingobserver/index.html @@ -97,8 +97,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ReportingObserver")}}

      See also

      diff --git a/files/en-us/web/api/reportingobserver/observe/index.html b/files/en-us/web/api/reportingobserver/observe/index.html index 52b55fcd44bf221..139846ddd77b25b 100644 --- a/files/en-us/web/api/reportingobserver/observe/index.html +++ b/files/en-us/web/api/reportingobserver/observe/index.html @@ -54,7 +54,6 @@

      Browser compatibility

      -

      {{Compat("api.ReportingObserver.observe")}}

      diff --git a/files/en-us/web/api/reportingobserver/reportingobserver/index.html b/files/en-us/web/api/reportingobserver/reportingobserver/index.html index 15ab767d21bf7c7..6b6fdf28f9f2a50 100644 --- a/files/en-us/web/api/reportingobserver/reportingobserver/index.html +++ b/files/en-us/web/api/reportingobserver/reportingobserver/index.html @@ -69,7 +69,6 @@

      Browser compatibility

      -

      {{Compat("api.ReportingObserver.ReportingObserver")}}

      diff --git a/files/en-us/web/api/reportingobserver/takerecords/index.html b/files/en-us/web/api/reportingobserver/takerecords/index.html index 81e17cad405c288..0a7b2fd221668e0 100644 --- a/files/en-us/web/api/reportingobserver/takerecords/index.html +++ b/files/en-us/web/api/reportingobserver/takerecords/index.html @@ -63,7 +63,6 @@

      Browser compatibility

      -

      {{Compat("api.ReportingObserver.takeRecords")}}

      diff --git a/files/en-us/web/api/reportingobserveroptions/index.html b/files/en-us/web/api/reportingobserveroptions/index.html index f061c94040f211d..f9ba50009b5251c 100644 --- a/files/en-us/web/api/reportingobserveroptions/index.html +++ b/files/en-us/web/api/reportingobserveroptions/index.html @@ -52,8 +52,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ReportingObserverOptions")}}

      See also

      diff --git a/files/en-us/web/api/request/cache/index.html b/files/en-us/web/api/request/cache/index.html index 4748ff4d7b8c5b2..35ca8aa82e98b5a 100644 --- a/files/en-us/web/api/request/cache/index.html +++ b/files/en-us/web/api/request/cache/index.html @@ -129,8 +129,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.cache")}}

      See also

      diff --git a/files/en-us/web/api/request/clone/index.html b/files/en-us/web/api/request/clone/index.html index 0b6463f10d4ece9..249a57d4c069701 100644 --- a/files/en-us/web/api/request/clone/index.html +++ b/files/en-us/web/api/request/clone/index.html @@ -56,8 +56,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.clone")}}

      See also

      diff --git a/files/en-us/web/api/request/context/index.html b/files/en-us/web/api/request/context/index.html index 037abccc675c650..baded05001da6a3 100644 --- a/files/en-us/web/api/request/context/index.html +++ b/files/en-us/web/api/request/context/index.html @@ -37,8 +37,6 @@

      Example

      Browser compatibility

      - -

      {{Compat("api.Request.context")}}

      See also

      diff --git a/files/en-us/web/api/request/credentials/index.html b/files/en-us/web/api/request/credentials/index.html index 8d1a2bb2d0f4d8b..72f12dd04e63660 100644 --- a/files/en-us/web/api/request/credentials/index.html +++ b/files/en-us/web/api/request/credentials/index.html @@ -58,8 +58,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.credentials")}}

      See also

      diff --git a/files/en-us/web/api/request/destination/index.html b/files/en-us/web/api/request/destination/index.html index d0b85459da951b0..9dbc7a402ebdf32 100644 --- a/files/en-us/web/api/request/destination/index.html +++ b/files/en-us/web/api/request/destination/index.html @@ -58,8 +58,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.destination")}}

      See also

      diff --git a/files/en-us/web/api/request/headers/index.html b/files/en-us/web/api/request/headers/index.html index eec2e40fad6ebda..dfee8c7578e12e0 100644 --- a/files/en-us/web/api/request/headers/index.html +++ b/files/en-us/web/api/request/headers/index.html @@ -64,8 +64,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.headers")}}

      See also

      diff --git a/files/en-us/web/api/request/index.html b/files/en-us/web/api/request/index.html index fb6f0e1f35b19cf..2bfded13dc9c283 100644 --- a/files/en-us/web/api/request/index.html +++ b/files/en-us/web/api/request/index.html @@ -158,8 +158,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request")}}

      See also

      diff --git a/files/en-us/web/api/request/integrity/index.html b/files/en-us/web/api/request/integrity/index.html index d5e2add31b2d3b4..817dad752ead42f 100644 --- a/files/en-us/web/api/request/integrity/index.html +++ b/files/en-us/web/api/request/integrity/index.html @@ -50,8 +50,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.integrity")}}

      See also

      diff --git a/files/en-us/web/api/request/method/index.html b/files/en-us/web/api/request/method/index.html index 076d969c65d327c..9aba5d4be3964fb 100644 --- a/files/en-us/web/api/request/method/index.html +++ b/files/en-us/web/api/request/method/index.html @@ -47,8 +47,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.method")}}

      See also

      diff --git a/files/en-us/web/api/request/mode/index.html b/files/en-us/web/api/request/mode/index.html index 8f202892519344d..845b5f81be241c8 100644 --- a/files/en-us/web/api/request/mode/index.html +++ b/files/en-us/web/api/request/mode/index.html @@ -70,8 +70,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.mode")}}

       

      diff --git a/files/en-us/web/api/request/redirect/index.html b/files/en-us/web/api/request/redirect/index.html index a9c0dad187e33cd..91ba9a440ae8dfd 100644 --- a/files/en-us/web/api/request/redirect/index.html +++ b/files/en-us/web/api/request/redirect/index.html @@ -56,8 +56,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.redirect")}}

      See also

      diff --git a/files/en-us/web/api/request/referrer/index.html b/files/en-us/web/api/request/referrer/index.html index 22c64b77882d7cc..36152ce57b84eb5 100644 --- a/files/en-us/web/api/request/referrer/index.html +++ b/files/en-us/web/api/request/referrer/index.html @@ -52,8 +52,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.referrer")}}

      See also

      diff --git a/files/en-us/web/api/request/referrerpolicy/index.html b/files/en-us/web/api/request/referrerpolicy/index.html index a22edbe8d2dbdfd..e74380c82542ad9 100644 --- a/files/en-us/web/api/request/referrerpolicy/index.html +++ b/files/en-us/web/api/request/referrerpolicy/index.html @@ -48,8 +48,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.referrerPolicy")}}

      See also

      diff --git a/files/en-us/web/api/request/request/index.html b/files/en-us/web/api/request/request/index.html index 96e9e4527d2997f..35685bc7c3c149e 100644 --- a/files/en-us/web/api/request/request/index.html +++ b/files/en-us/web/api/request/request/index.html @@ -148,8 +148,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.Request")}}

      See also

      diff --git a/files/en-us/web/api/request/url/index.html b/files/en-us/web/api/request/url/index.html index 08b2457aef767de..8ffd09714f986d9 100644 --- a/files/en-us/web/api/request/url/index.html +++ b/files/en-us/web/api/request/url/index.html @@ -48,8 +48,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Request.url")}}

      See also

      diff --git a/files/en-us/web/api/requestdestination/index.html b/files/en-us/web/api/requestdestination/index.html index 409c30e0733c297..cf0dfe2136e9cfc 100644 --- a/files/en-us/web/api/requestdestination/index.html +++ b/files/en-us/web/api/requestdestination/index.html @@ -78,8 +78,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RequestDestination")}}

      See also

      diff --git a/files/en-us/web/api/resize_observer_api/index.html b/files/en-us/web/api/resize_observer_api/index.html index b331b46d82eb3af..7cbe47d54b0efd9 100644 --- a/files/en-us/web/api/resize_observer_api/index.html +++ b/files/en-us/web/api/resize_observer_api/index.html @@ -84,8 +84,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ResizeObserver")}}

      See also

      diff --git a/files/en-us/web/api/resizeobserver/disconnect/index.html b/files/en-us/web/api/resizeobserver/disconnect/index.html index 981fdacc2361907..ce60f2e3a181482 100644 --- a/files/en-us/web/api/resizeobserver/disconnect/index.html +++ b/files/en-us/web/api/resizeobserver/disconnect/index.html @@ -55,6 +55,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ResizeObserver.disconnect")}}

      diff --git a/files/en-us/web/api/resizeobserver/index.html b/files/en-us/web/api/resizeobserver/index.html index c71e3e45ad82179..8a1e44b7983e015 100644 --- a/files/en-us/web/api/resizeobserver/index.html +++ b/files/en-us/web/api/resizeobserver/index.html @@ -113,8 +113,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ResizeObserver")}}

      See also

      diff --git a/files/en-us/web/api/resizeobserver/observe/index.html b/files/en-us/web/api/resizeobserver/observe/index.html index dd4b8050d95d957..deb0c6cb31a1116 100644 --- a/files/en-us/web/api/resizeobserver/observe/index.html +++ b/files/en-us/web/api/resizeobserver/observe/index.html @@ -88,6 +88,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ResizeObserver.observe")}}

      diff --git a/files/en-us/web/api/resizeobserver/resizeobserver/index.html b/files/en-us/web/api/resizeobserver/resizeobserver/index.html index 7e1c8feeb187cb0..73585f9ff069b2c 100644 --- a/files/en-us/web/api/resizeobserver/resizeobserver/index.html +++ b/files/en-us/web/api/resizeobserver/resizeobserver/index.html @@ -86,6 +86,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ResizeObserver.ResizeObserver")}}

      diff --git a/files/en-us/web/api/resizeobserver/unobserve/index.html b/files/en-us/web/api/resizeobserver/unobserve/index.html index 12d00bc7d8f128e..b3dfa6aa52156a4 100644 --- a/files/en-us/web/api/resizeobserver/unobserve/index.html +++ b/files/en-us/web/api/resizeobserver/unobserve/index.html @@ -86,6 +86,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ResizeObserver.unobserve")}}

      diff --git a/files/en-us/web/api/resizeobserverentry/borderboxsize/index.html b/files/en-us/web/api/resizeobserverentry/borderboxsize/index.html index 5a1eba77c21dfd8..5346909f89d9909 100644 --- a/files/en-us/web/api/resizeobserverentry/borderboxsize/index.html +++ b/files/en-us/web/api/resizeobserverentry/borderboxsize/index.html @@ -69,6 +69,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ResizeObserverEntry.borderBoxSize")}}

      diff --git a/files/en-us/web/api/resizeobserverentry/contentboxsize/index.html b/files/en-us/web/api/resizeobserverentry/contentboxsize/index.html index 4a0b08ecb5d4a34..6e26d76ec28c4d7 100644 --- a/files/en-us/web/api/resizeobserverentry/contentboxsize/index.html +++ b/files/en-us/web/api/resizeobserverentry/contentboxsize/index.html @@ -71,6 +71,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ResizeObserverEntry.contentBoxSize")}}

      diff --git a/files/en-us/web/api/resizeobserverentry/contentrect/index.html b/files/en-us/web/api/resizeobserverentry/contentrect/index.html index 85fb09ca0e8aa26..a643ec6abe2f000 100644 --- a/files/en-us/web/api/resizeobserverentry/contentrect/index.html +++ b/files/en-us/web/api/resizeobserverentry/contentrect/index.html @@ -65,6 +65,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ResizeObserverEntry.contentRect")}}

      diff --git a/files/en-us/web/api/resizeobserverentry/index.html b/files/en-us/web/api/resizeobserverentry/index.html index de46c67d69f8e9c..ba7c86d567c2b01 100644 --- a/files/en-us/web/api/resizeobserverentry/index.html +++ b/files/en-us/web/api/resizeobserverentry/index.html @@ -74,6 +74,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ResizeObserverEntry")}}

      diff --git a/files/en-us/web/api/resizeobserverentry/target/index.html b/files/en-us/web/api/resizeobserverentry/target/index.html index 17143dbe626dc25..56edc8f87d8b926 100644 --- a/files/en-us/web/api/resizeobserverentry/target/index.html +++ b/files/en-us/web/api/resizeobserverentry/target/index.html @@ -66,6 +66,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.ResizeObserverEntry.target")}}

      diff --git a/files/en-us/web/api/response/clone/index.html b/files/en-us/web/api/response/clone/index.html index f6d24a1b0b4dc7b..29abd761d768bbb 100644 --- a/files/en-us/web/api/response/clone/index.html +++ b/files/en-us/web/api/response/clone/index.html @@ -70,8 +70,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Response.clone")}}

      See also

      diff --git a/files/en-us/web/api/response/error/index.html b/files/en-us/web/api/response/error/index.html index e612387c75107dd..b5a867f0f405262 100644 --- a/files/en-us/web/api/response/error/index.html +++ b/files/en-us/web/api/response/error/index.html @@ -57,8 +57,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Response.error")}}

      See also

      diff --git a/files/en-us/web/api/response/headers/index.html b/files/en-us/web/api/response/headers/index.html index 7fb61542483a7ac..0103e30a3a0f035 100644 --- a/files/en-us/web/api/response/headers/index.html +++ b/files/en-us/web/api/response/headers/index.html @@ -59,8 +59,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Response.headers")}}

      See also

      diff --git a/files/en-us/web/api/response/index.html b/files/en-us/web/api/response/index.html index 6b0a57111159385..cbfb984518d9726 100644 --- a/files/en-us/web/api/response/index.html +++ b/files/en-us/web/api/response/index.html @@ -146,8 +146,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Response")}}

      See also

      diff --git a/files/en-us/web/api/response/ok/index.html b/files/en-us/web/api/response/ok/index.html index ddfc63b28afc452..9a8a4b0f9acc634 100644 --- a/files/en-us/web/api/response/ok/index.html +++ b/files/en-us/web/api/response/ok/index.html @@ -61,8 +61,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Response.ok")}}

      See also

      diff --git a/files/en-us/web/api/response/redirect/index.html b/files/en-us/web/api/response/redirect/index.html index d6079a87f6fc97c..40133cd1838008c 100644 --- a/files/en-us/web/api/response/redirect/index.html +++ b/files/en-us/web/api/response/redirect/index.html @@ -79,8 +79,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Response.redirect")}}

      See also

      diff --git a/files/en-us/web/api/response/redirected/index.html b/files/en-us/web/api/response/redirected/index.html index 95430da41a7b92f..5e66c6f4c7676ad 100644 --- a/files/en-us/web/api/response/redirected/index.html +++ b/files/en-us/web/api/response/redirected/index.html @@ -77,8 +77,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Response.redirected")}}

      See also

      diff --git a/files/en-us/web/api/response/response/index.html b/files/en-us/web/api/response/response/index.html index e54e8972d8e39e5..be864948ba8a32b 100644 --- a/files/en-us/web/api/response/response/index.html +++ b/files/en-us/web/api/response/response/index.html @@ -68,8 +68,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Response.Response")}}

      See also

      diff --git a/files/en-us/web/api/response/status/index.html b/files/en-us/web/api/response/status/index.html index f1805309e61644d..c433d5e0af4e220 100644 --- a/files/en-us/web/api/response/status/index.html +++ b/files/en-us/web/api/response/status/index.html @@ -59,8 +59,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Response.status")}}

      See also

      diff --git a/files/en-us/web/api/response/statustext/index.html b/files/en-us/web/api/response/statustext/index.html index 5d7f68600051301..eb11b49f527ef81 100644 --- a/files/en-us/web/api/response/statustext/index.html +++ b/files/en-us/web/api/response/statustext/index.html @@ -61,8 +61,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Response.statusText")}}

      See also

      diff --git a/files/en-us/web/api/response/type/index.html b/files/en-us/web/api/response/type/index.html index 3393a3b922cee74..8fed7c46916c23a 100644 --- a/files/en-us/web/api/response/type/index.html +++ b/files/en-us/web/api/response/type/index.html @@ -71,8 +71,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Response.type")}}

      See also

      diff --git a/files/en-us/web/api/response/url/index.html b/files/en-us/web/api/response/url/index.html index ee9c0feee3c5019..67b03f3c281db9a 100644 --- a/files/en-us/web/api/response/url/index.html +++ b/files/en-us/web/api/response/url/index.html @@ -59,8 +59,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Response.url")}}

      See also

      diff --git a/files/en-us/web/api/response/usefinalurl/index.html b/files/en-us/web/api/response/usefinalurl/index.html index 0a2d778bfb0dd11..c6cf83a9642fb79 100644 --- a/files/en-us/web/api/response/usefinalurl/index.html +++ b/files/en-us/web/api/response/usefinalurl/index.html @@ -46,8 +46,6 @@

      Example

      Browser compatibility

      - -

      {{Compat("api.Response.useFinalURL")}}

      See also

      diff --git a/files/en-us/web/api/rtcansweroptions/index.html b/files/en-us/web/api/rtcansweroptions/index.html index 0900b21fcb0b266..00d53d8d199610b 100644 --- a/files/en-us/web/api/rtcansweroptions/index.html +++ b/files/en-us/web/api/rtcansweroptions/index.html @@ -45,6 +45,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCAnswerOptions")}}

      diff --git a/files/en-us/web/api/rtccertificate/index.html b/files/en-us/web/api/rtccertificate/index.html index 74b4c9123c52411..5f2bab197ca29de 100644 --- a/files/en-us/web/api/rtccertificate/index.html +++ b/files/en-us/web/api/rtccertificate/index.html @@ -41,6 +41,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCCertificate")}}

      diff --git a/files/en-us/web/api/rtcconfiguration/bundlepolicy/index.html b/files/en-us/web/api/rtcconfiguration/bundlepolicy/index.html index d01c7ebafde9731..71698b3f2ad5542 100644 --- a/files/en-us/web/api/rtcconfiguration/bundlepolicy/index.html +++ b/files/en-us/web/api/rtcconfiguration/bundlepolicy/index.html @@ -96,7 +96,6 @@

      Browser compatibility

      -

      {{Compat("api.RTCConfiguration.bundlePolicy")}}

      diff --git a/files/en-us/web/api/rtcconfiguration/certificates/index.html b/files/en-us/web/api/rtcconfiguration/certificates/index.html index ce05b041114e1be..6bf6474d0644307 100644 --- a/files/en-us/web/api/rtcconfiguration/certificates/index.html +++ b/files/en-us/web/api/rtcconfiguration/certificates/index.html @@ -90,6 +90,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCConfiguration.certificates")}}

      diff --git a/files/en-us/web/api/rtcconfiguration/iceservers/index.html b/files/en-us/web/api/rtcconfiguration/iceservers/index.html index fe80d74edbf7c0d..3ff87aec62041c4 100644 --- a/files/en-us/web/api/rtcconfiguration/iceservers/index.html +++ b/files/en-us/web/api/rtcconfiguration/iceservers/index.html @@ -80,7 +80,6 @@

      Browser compatibility

      -

      {{Compat("api.RTCConfiguration.iceServers")}}

      See also

      diff --git a/files/en-us/web/api/rtcconfiguration/icetransportpolicy/index.html b/files/en-us/web/api/rtcconfiguration/icetransportpolicy/index.html index aece4fbfc4bd1d7..13c1b99f1f368bf 100644 --- a/files/en-us/web/api/rtcconfiguration/icetransportpolicy/index.html +++ b/files/en-us/web/api/rtcconfiguration/icetransportpolicy/index.html @@ -81,6 +81,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCConfiguration.iceTransportPolicy")}}

      diff --git a/files/en-us/web/api/rtcconfiguration/index.html b/files/en-us/web/api/rtcconfiguration/index.html index 3a2e78b6c31054a..e8c5ca467f9207d 100644 --- a/files/en-us/web/api/rtcconfiguration/index.html +++ b/files/en-us/web/api/rtcconfiguration/index.html @@ -85,6 +85,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCConfiguration")}}

      diff --git a/files/en-us/web/api/rtcdatachannel/binarytype/index.html b/files/en-us/web/api/rtcdatachannel/binarytype/index.html index da494cdf4e1e2a1..3b82e7729f3b78a 100644 --- a/files/en-us/web/api/rtcdatachannel/binarytype/index.html +++ b/files/en-us/web/api/rtcdatachannel/binarytype/index.html @@ -71,8 +71,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.binaryType")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/bufferedamount/index.html b/files/en-us/web/api/rtcdatachannel/bufferedamount/index.html index 0a5955e6a5baa74..bc3441e628dcb61 100644 --- a/files/en-us/web/api/rtcdatachannel/bufferedamount/index.html +++ b/files/en-us/web/api/rtcdatachannel/bufferedamount/index.html @@ -67,8 +67,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.bufferedAmount")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/bufferedamountlow_event/index.html b/files/en-us/web/api/rtcdatachannel/bufferedamountlow_event/index.html index 598dbb75778fddc..d5daa84b3a6dc88 100644 --- a/files/en-us/web/api/rtcdatachannel/bufferedamountlow_event/index.html +++ b/files/en-us/web/api/rtcdatachannel/bufferedamountlow_event/index.html @@ -88,8 +88,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.bufferedamountlow_event")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/bufferedamountlowthreshold/index.html b/files/en-us/web/api/rtcdatachannel/bufferedamountlowthreshold/index.html index 4cd76255fc1adf4..5876004585cc37d 100644 --- a/files/en-us/web/api/rtcdatachannel/bufferedamountlowthreshold/index.html +++ b/files/en-us/web/api/rtcdatachannel/bufferedamountlowthreshold/index.html @@ -63,8 +63,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.bufferedAmountLowThreshold")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/close/index.html b/files/en-us/web/api/rtcdatachannel/close/index.html index 8210a9c04004aeb..63f9b797051119a 100644 --- a/files/en-us/web/api/rtcdatachannel/close/index.html +++ b/files/en-us/web/api/rtcdatachannel/close/index.html @@ -90,8 +90,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.close")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/close_event/index.html b/files/en-us/web/api/rtcdatachannel/close_event/index.html index 8e05d83b4378df2..cbdffc0e98c2e3a 100644 --- a/files/en-us/web/api/rtcdatachannel/close_event/index.html +++ b/files/en-us/web/api/rtcdatachannel/close_event/index.html @@ -84,8 +84,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.close_event")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/closing_event/index.html b/files/en-us/web/api/rtcdatachannel/closing_event/index.html index 13f4b1e8856fd8f..c273f190ef76f0c 100644 --- a/files/en-us/web/api/rtcdatachannel/closing_event/index.html +++ b/files/en-us/web/api/rtcdatachannel/closing_event/index.html @@ -83,8 +83,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.closing_event")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/error_event/index.html b/files/en-us/web/api/rtcdatachannel/error_event/index.html index a2980023406b06a..1de36197f6c0170 100644 --- a/files/en-us/web/api/rtcdatachannel/error_event/index.html +++ b/files/en-us/web/api/rtcdatachannel/error_event/index.html @@ -145,8 +145,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.error_event")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/id/index.html b/files/en-us/web/api/rtcdatachannel/id/index.html index a10088355756e68..c367159e04707fc 100644 --- a/files/en-us/web/api/rtcdatachannel/id/index.html +++ b/files/en-us/web/api/rtcdatachannel/id/index.html @@ -61,8 +61,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.id")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/index.html b/files/en-us/web/api/rtcdatachannel/index.html index d659b563f112900..8c98303e8c488b8 100644 --- a/files/en-us/web/api/rtcdatachannel/index.html +++ b/files/en-us/web/api/rtcdatachannel/index.html @@ -80,8 +80,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/label/index.html b/files/en-us/web/api/rtcdatachannel/label/index.html index 235e65c7208909a..5d5fdcbedea8f06 100644 --- a/files/en-us/web/api/rtcdatachannel/label/index.html +++ b/files/en-us/web/api/rtcdatachannel/label/index.html @@ -64,8 +64,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.label")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/maxpacketlifetime/index.html b/files/en-us/web/api/rtcdatachannel/maxpacketlifetime/index.html index 29a8afa70b8eb17..f3ec4c968c22f2a 100644 --- a/files/en-us/web/api/rtcdatachannel/maxpacketlifetime/index.html +++ b/files/en-us/web/api/rtcdatachannel/maxpacketlifetime/index.html @@ -50,8 +50,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.maxPacketLifeTime")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/maxretransmits/index.html b/files/en-us/web/api/rtcdatachannel/maxretransmits/index.html index dbb4c42d514a998..2c88d9a6619c2e6 100644 --- a/files/en-us/web/api/rtcdatachannel/maxretransmits/index.html +++ b/files/en-us/web/api/rtcdatachannel/maxretransmits/index.html @@ -50,8 +50,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.maxRetransmits")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/message_event/index.html b/files/en-us/web/api/rtcdatachannel/message_event/index.html index 9300e5455a95c53..acc118842b5c2e0 100644 --- a/files/en-us/web/api/rtcdatachannel/message_event/index.html +++ b/files/en-us/web/api/rtcdatachannel/message_event/index.html @@ -90,8 +90,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.message_event")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/negotiated/index.html b/files/en-us/web/api/rtcdatachannel/negotiated/index.html index f18aef561732363..151453ed9a6a14b 100644 --- a/files/en-us/web/api/rtcdatachannel/negotiated/index.html +++ b/files/en-us/web/api/rtcdatachannel/negotiated/index.html @@ -58,8 +58,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.negotiated")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/onbufferedamountlow/index.html b/files/en-us/web/api/rtcdatachannel/onbufferedamountlow/index.html index 11f59138494dcc0..7d44942bf9b5975 100644 --- a/files/en-us/web/api/rtcdatachannel/onbufferedamountlow/index.html +++ b/files/en-us/web/api/rtcdatachannel/onbufferedamountlow/index.html @@ -62,6 +62,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.onbufferedamountlow")}}

      diff --git a/files/en-us/web/api/rtcdatachannel/onclose/index.html b/files/en-us/web/api/rtcdatachannel/onclose/index.html index 061d5a8a7f6bf7d..bb437c542b4dc52 100644 --- a/files/en-us/web/api/rtcdatachannel/onclose/index.html +++ b/files/en-us/web/api/rtcdatachannel/onclose/index.html @@ -62,8 +62,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.onclose")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/onclosing/index.html b/files/en-us/web/api/rtcdatachannel/onclosing/index.html index b3018a447004680..cf761eeb9f0d0d2 100644 --- a/files/en-us/web/api/rtcdatachannel/onclosing/index.html +++ b/files/en-us/web/api/rtcdatachannel/onclosing/index.html @@ -43,8 +43,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.onclosing")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/onerror/index.html b/files/en-us/web/api/rtcdatachannel/onerror/index.html index 64a8de2a2909d23..f819d2f87e79212 100644 --- a/files/en-us/web/api/rtcdatachannel/onerror/index.html +++ b/files/en-us/web/api/rtcdatachannel/onerror/index.html @@ -64,8 +64,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.onerror")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/onmessage/index.html b/files/en-us/web/api/rtcdatachannel/onmessage/index.html index 65776e4700947fb..e097842ce884421 100644 --- a/files/en-us/web/api/rtcdatachannel/onmessage/index.html +++ b/files/en-us/web/api/rtcdatachannel/onmessage/index.html @@ -59,8 +59,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.onmessage")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/onopen/index.html b/files/en-us/web/api/rtcdatachannel/onopen/index.html index 26f58e3445bd931..dabc633e6f1c86c 100644 --- a/files/en-us/web/api/rtcdatachannel/onopen/index.html +++ b/files/en-us/web/api/rtcdatachannel/onopen/index.html @@ -59,8 +59,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.onopen")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/open_event/index.html b/files/en-us/web/api/rtcdatachannel/open_event/index.html index 81303e91325c6a8..04beb6764532dae 100644 --- a/files/en-us/web/api/rtcdatachannel/open_event/index.html +++ b/files/en-us/web/api/rtcdatachannel/open_event/index.html @@ -70,8 +70,6 @@

      Examples

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.open_event")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/ordered/index.html b/files/en-us/web/api/rtcdatachannel/ordered/index.html index b59c8f0d8790ed3..39fbd8f9abaf44d 100644 --- a/files/en-us/web/api/rtcdatachannel/ordered/index.html +++ b/files/en-us/web/api/rtcdatachannel/ordered/index.html @@ -52,8 +52,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.ordered")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/protocol/index.html b/files/en-us/web/api/rtcdatachannel/protocol/index.html index f3907507b3ea682..cafc7ce0c0dc3db 100644 --- a/files/en-us/web/api/rtcdatachannel/protocol/index.html +++ b/files/en-us/web/api/rtcdatachannel/protocol/index.html @@ -69,8 +69,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.protocol")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/readystate/index.html b/files/en-us/web/api/rtcdatachannel/readystate/index.html index 85a369414268097..8e644d231c8de52 100644 --- a/files/en-us/web/api/rtcdatachannel/readystate/index.html +++ b/files/en-us/web/api/rtcdatachannel/readystate/index.html @@ -99,8 +99,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.readyState")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/reliable/index.html b/files/en-us/web/api/rtcdatachannel/reliable/index.html index c562df2805cc766..659e68712018243 100644 --- a/files/en-us/web/api/rtcdatachannel/reliable/index.html +++ b/files/en-us/web/api/rtcdatachannel/reliable/index.html @@ -38,8 +38,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.reliable")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/send/index.html b/files/en-us/web/api/rtcdatachannel/send/index.html index 721a24d3e7c9a8b..16145fa877a02e2 100644 --- a/files/en-us/web/api/rtcdatachannel/send/index.html +++ b/files/en-us/web/api/rtcdatachannel/send/index.html @@ -86,8 +86,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.send")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannel/stream/index.html b/files/en-us/web/api/rtcdatachannel/stream/index.html index 0c69354f6a14a22..011d21fa1cb3d73 100644 --- a/files/en-us/web/api/rtcdatachannel/stream/index.html +++ b/files/en-us/web/api/rtcdatachannel/stream/index.html @@ -36,8 +36,6 @@

      Example

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannel.stream")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannelevent/channel/index.html b/files/en-us/web/api/rtcdatachannelevent/channel/index.html index d2f5c4de75d9c8b..5aef558ec28ef52 100644 --- a/files/en-us/web/api/rtcdatachannelevent/channel/index.html +++ b/files/en-us/web/api/rtcdatachannelevent/channel/index.html @@ -55,8 +55,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannelEvent.channel")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannelevent/index.html b/files/en-us/web/api/rtcdatachannelevent/index.html index 35f9b0d22dfa921..9dc551c2069fa20 100644 --- a/files/en-us/web/api/rtcdatachannelevent/index.html +++ b/files/en-us/web/api/rtcdatachannelevent/index.html @@ -51,8 +51,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannelEvent")}}

      See also

      diff --git a/files/en-us/web/api/rtcdatachannelevent/rtcdatachannelevent/index.html b/files/en-us/web/api/rtcdatachannelevent/rtcdatachannelevent/index.html index b1d7374ce2528f9..c07b0e0fb9239ef 100644 --- a/files/en-us/web/api/rtcdatachannelevent/rtcdatachannelevent/index.html +++ b/files/en-us/web/api/rtcdatachannelevent/rtcdatachannelevent/index.html @@ -66,8 +66,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDataChannelEvent.RTCDataChannelEvent")}}

      See also

      diff --git a/files/en-us/web/api/rtcdtlstransport/error_event/index.html b/files/en-us/web/api/rtcdtlstransport/error_event/index.html index a0a0b4294ba3f7e..c2886136d99dd8d 100644 --- a/files/en-us/web/api/rtcdtlstransport/error_event/index.html +++ b/files/en-us/web/api/rtcdtlstransport/error_event/index.html @@ -88,8 +88,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDtlsTransport.error_event")}}

      See also

      diff --git a/files/en-us/web/api/rtcdtlstransport/icetransport/index.html b/files/en-us/web/api/rtcdtlstransport/icetransport/index.html index 7ec202f0d8af0e1..dcdfd2c0e5ee0db 100644 --- a/files/en-us/web/api/rtcdtlstransport/icetransport/index.html +++ b/files/en-us/web/api/rtcdtlstransport/icetransport/index.html @@ -48,8 +48,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDtlsTransport.iceTransport")}}

      See also

      diff --git a/files/en-us/web/api/rtcdtlstransport/index.html b/files/en-us/web/api/rtcdtlstransport/index.html index 28a0cf4c911d2ca..410c332df6022cd 100644 --- a/files/en-us/web/api/rtcdtlstransport/index.html +++ b/files/en-us/web/api/rtcdtlstransport/index.html @@ -130,8 +130,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDtlsTransport")}}

      See also

      diff --git a/files/en-us/web/api/rtcdtlstransport/state/index.html b/files/en-us/web/api/rtcdtlstransport/state/index.html index 11b8c2aa0c1fd84..61fc9a150487cd3 100644 --- a/files/en-us/web/api/rtcdtlstransport/state/index.html +++ b/files/en-us/web/api/rtcdtlstransport/state/index.html @@ -59,8 +59,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDtlsTransport.state")}}

      See also

      diff --git a/files/en-us/web/api/rtcdtmfsender/index.html b/files/en-us/web/api/rtcdtmfsender/index.html index 261f7bd29615e07..7df95f432427d35 100644 --- a/files/en-us/web/api/rtcdtmfsender/index.html +++ b/files/en-us/web/api/rtcdtmfsender/index.html @@ -73,7 +73,6 @@

      Browser compatibility

      -

      {{Compat("api.RTCDTMFSender")}}

      diff --git a/files/en-us/web/api/rtcdtmfsender/insertdtmf/index.html b/files/en-us/web/api/rtcdtmfsender/insertdtmf/index.html index 8eb4379b89e899c..52cca1920e08758 100644 --- a/files/en-us/web/api/rtcdtmfsender/insertdtmf/index.html +++ b/files/en-us/web/api/rtcdtmfsender/insertdtmf/index.html @@ -74,7 +74,6 @@

      Browser compatibility

      -

      {{Compat("api.RTCDTMFSender.insertDTMF")}}

      diff --git a/files/en-us/web/api/rtcdtmfsender/ontonechange/index.html b/files/en-us/web/api/rtcdtmfsender/ontonechange/index.html index a8071a2ac5ce364..37abac389df5d69 100644 --- a/files/en-us/web/api/rtcdtmfsender/ontonechange/index.html +++ b/files/en-us/web/api/rtcdtmfsender/ontonechange/index.html @@ -49,7 +49,6 @@

      Browser compatibility

      -

      {{Compat("api.RTCDTMFSender.ontonechange")}}

      diff --git a/files/en-us/web/api/rtcdtmfsender/tonebuffer/index.html b/files/en-us/web/api/rtcdtmfsender/tonebuffer/index.html index 4080d68513e922f..70a172f29629891 100644 --- a/files/en-us/web/api/rtcdtmfsender/tonebuffer/index.html +++ b/files/en-us/web/api/rtcdtmfsender/tonebuffer/index.html @@ -80,7 +80,6 @@

      Browser compatibility

      -

      {{Compat("api.RTCDTMFSender.toneBuffer")}}

      diff --git a/files/en-us/web/api/rtcdtmfsender/tonechange_event/index.html b/files/en-us/web/api/rtcdtmfsender/tonechange_event/index.html index 3b039be27c79886..ffdf2cf9b8e4d0c 100644 --- a/files/en-us/web/api/rtcdtmfsender/tonechange_event/index.html +++ b/files/en-us/web/api/rtcdtmfsender/tonechange_event/index.html @@ -84,6 +84,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDTMFSender.tonechange_event")}}

      diff --git a/files/en-us/web/api/rtcdtmftonechangeevent/index.html b/files/en-us/web/api/rtcdtmftonechangeevent/index.html index 5691270b2ccb1c6..af7bf67d5bcf69f 100644 --- a/files/en-us/web/api/rtcdtmftonechangeevent/index.html +++ b/files/en-us/web/api/rtcdtmftonechangeevent/index.html @@ -64,8 +64,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDTMFToneChangeEvent")}}

      See also

      diff --git a/files/en-us/web/api/rtcdtmftonechangeevent/rtcdtmftonechangeevent/index.html b/files/en-us/web/api/rtcdtmftonechangeevent/rtcdtmftonechangeevent/index.html index e0d3bf593441784..d3c5cf4c58ea2dd 100644 --- a/files/en-us/web/api/rtcdtmftonechangeevent/rtcdtmftonechangeevent/index.html +++ b/files/en-us/web/api/rtcdtmftonechangeevent/rtcdtmftonechangeevent/index.html @@ -59,8 +59,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDTMFToneChangeEvent.RTCDTMFToneChangeEvent")}}

      See also

      diff --git a/files/en-us/web/api/rtcdtmftonechangeevent/tone/index.html b/files/en-us/web/api/rtcdtmftonechangeevent/tone/index.html index 1d91823b1adf98a..d9a4e814020dc4b 100644 --- a/files/en-us/web/api/rtcdtmftonechangeevent/tone/index.html +++ b/files/en-us/web/api/rtcdtmftonechangeevent/tone/index.html @@ -53,8 +53,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCDTMFToneChangeEvent.tone")}}

      See also

      diff --git a/files/en-us/web/api/rtcerror/errordetail/index.html b/files/en-us/web/api/rtcerror/errordetail/index.html index 5f6e19dc5e35e90..c9a37b5522903b3 100644 --- a/files/en-us/web/api/rtcerror/errordetail/index.html +++ b/files/en-us/web/api/rtcerror/errordetail/index.html @@ -74,6 +74,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCError.errorDetail")}}

      diff --git a/files/en-us/web/api/rtcerror/index.html b/files/en-us/web/api/rtcerror/index.html index 09de1088e97c27d..0eef2c2d6261a00 100644 --- a/files/en-us/web/api/rtcerror/index.html +++ b/files/en-us/web/api/rtcerror/index.html @@ -74,6 +74,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCError")}}

      diff --git a/files/en-us/web/api/rtcerror/receivedalert/index.html b/files/en-us/web/api/rtcerror/receivedalert/index.html index 3674b191a82e700..47fb19bb6adef1d 100644 --- a/files/en-us/web/api/rtcerror/receivedalert/index.html +++ b/files/en-us/web/api/rtcerror/receivedalert/index.html @@ -52,6 +52,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCError.receivedAlert")}}

      diff --git a/files/en-us/web/api/rtcerror/sctpcausecode/index.html b/files/en-us/web/api/rtcerror/sctpcausecode/index.html index 90b77f7a47e9dfb..311dba9dc069732 100644 --- a/files/en-us/web/api/rtcerror/sctpcausecode/index.html +++ b/files/en-us/web/api/rtcerror/sctpcausecode/index.html @@ -50,6 +50,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCError.sctpCauseCode")}}

      diff --git a/files/en-us/web/api/rtcerror/sdplinenumber/index.html b/files/en-us/web/api/rtcerror/sdplinenumber/index.html index c43550552f2f2a8..296fbf4b02660a8 100644 --- a/files/en-us/web/api/rtcerror/sdplinenumber/index.html +++ b/files/en-us/web/api/rtcerror/sdplinenumber/index.html @@ -50,6 +50,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCError.sdpLineNumber")}}

      diff --git a/files/en-us/web/api/rtcerror/sentalert/index.html b/files/en-us/web/api/rtcerror/sentalert/index.html index 7f542712718fbed..9a3fc1d32e78bd1 100644 --- a/files/en-us/web/api/rtcerror/sentalert/index.html +++ b/files/en-us/web/api/rtcerror/sentalert/index.html @@ -48,6 +48,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCError.sentAlert")}}

      diff --git a/files/en-us/web/api/rtcerrorevent/error/index.html b/files/en-us/web/api/rtcerrorevent/error/index.html index e99d38c1092a828..a201a0283b535b0 100644 --- a/files/en-us/web/api/rtcerrorevent/error/index.html +++ b/files/en-us/web/api/rtcerrorevent/error/index.html @@ -83,6 +83,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCErrorEvent.error")}}

      diff --git a/files/en-us/web/api/rtcerrorevent/index.html b/files/en-us/web/api/rtcerrorevent/index.html index b18da252b6e34bc..210cbba3c319b43 100644 --- a/files/en-us/web/api/rtcerrorevent/index.html +++ b/files/en-us/web/api/rtcerrorevent/index.html @@ -62,8 +62,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCErrorEvent")}}

      See also

      diff --git a/files/en-us/web/api/rtcicecandidate/address/index.html b/files/en-us/web/api/rtcicecandidate/address/index.html index bd9908758862553..fe6708dde74817c 100644 --- a/files/en-us/web/api/rtcicecandidate/address/index.html +++ b/files/en-us/web/api/rtcicecandidate/address/index.html @@ -96,6 +96,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.address")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/candidate/index.html b/files/en-us/web/api/rtcicecandidate/candidate/index.html index 5e5c5b4430289bc..6118ef5864adfa7 100644 --- a/files/en-us/web/api/rtcicecandidate/candidate/index.html +++ b/files/en-us/web/api/rtcicecandidate/candidate/index.html @@ -90,6 +90,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.candidate")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/component/index.html b/files/en-us/web/api/rtcicecandidate/component/index.html index f2d6469e425deae..a1f937eee530d36 100644 --- a/files/en-us/web/api/rtcicecandidate/component/index.html +++ b/files/en-us/web/api/rtcicecandidate/component/index.html @@ -71,6 +71,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.component")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/foundation/index.html b/files/en-us/web/api/rtcicecandidate/foundation/index.html index 337acf55652ca4f..d2145ccccccb2e2 100644 --- a/files/en-us/web/api/rtcicecandidate/foundation/index.html +++ b/files/en-us/web/api/rtcicecandidate/foundation/index.html @@ -69,6 +69,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.foundation")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/index.html b/files/en-us/web/api/rtcicecandidate/index.html index 6b5c4a7e522c615..e375e2193835410 100644 --- a/files/en-us/web/api/rtcicecandidate/index.html +++ b/files/en-us/web/api/rtcicecandidate/index.html @@ -100,6 +100,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/port/index.html b/files/en-us/web/api/rtcicecandidate/port/index.html index 6fee02e88ee4906..be4b8cec02aa2e2 100644 --- a/files/en-us/web/api/rtcicecandidate/port/index.html +++ b/files/en-us/web/api/rtcicecandidate/port/index.html @@ -74,6 +74,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.port")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/priority/index.html b/files/en-us/web/api/rtcicecandidate/priority/index.html index 46b0e79a3ff63f3..8dad93b154c0493 100644 --- a/files/en-us/web/api/rtcicecandidate/priority/index.html +++ b/files/en-us/web/api/rtcicecandidate/priority/index.html @@ -83,6 +83,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.priority")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/protocol/index.html b/files/en-us/web/api/rtcicecandidate/protocol/index.html index aee43f3b69aa956..919d9bad1c4491d 100644 --- a/files/en-us/web/api/rtcicecandidate/protocol/index.html +++ b/files/en-us/web/api/rtcicecandidate/protocol/index.html @@ -72,6 +72,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.protocol")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/relatedaddress/index.html b/files/en-us/web/api/rtcicecandidate/relatedaddress/index.html index d02e851880a44bd..115c88db922a973 100644 --- a/files/en-us/web/api/rtcicecandidate/relatedaddress/index.html +++ b/files/en-us/web/api/rtcicecandidate/relatedaddress/index.html @@ -87,7 +87,6 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.relatedAddress")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/relatedport/index.html b/files/en-us/web/api/rtcicecandidate/relatedport/index.html index 6016168e8bbeb06..6ebeeb4c26244e6 100644 --- a/files/en-us/web/api/rtcicecandidate/relatedport/index.html +++ b/files/en-us/web/api/rtcicecandidate/relatedport/index.html @@ -81,7 +81,6 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.relatedPort")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/rtcicecandidate/index.html b/files/en-us/web/api/rtcicecandidate/rtcicecandidate/index.html index d1be2784aa72de3..a335a33e0016537 100644 --- a/files/en-us/web/api/rtcicecandidate/rtcicecandidate/index.html +++ b/files/en-us/web/api/rtcicecandidate/rtcicecandidate/index.html @@ -75,8 +75,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidate.RTCIceCandidate")}}

      See also

      diff --git a/files/en-us/web/api/rtcicecandidate/sdpmid/index.html b/files/en-us/web/api/rtcicecandidate/sdpmid/index.html index 4d279e7cd431151..2d6e50a52772559 100644 --- a/files/en-us/web/api/rtcicecandidate/sdpmid/index.html +++ b/files/en-us/web/api/rtcicecandidate/sdpmid/index.html @@ -59,6 +59,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.sdpMid")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/sdpmlineindex/index.html b/files/en-us/web/api/rtcicecandidate/sdpmlineindex/index.html index 99ed32deed9fa20..ac78e62ec8ff9e7 100644 --- a/files/en-us/web/api/rtcicecandidate/sdpmlineindex/index.html +++ b/files/en-us/web/api/rtcicecandidate/sdpmlineindex/index.html @@ -61,6 +61,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.sdpMLineIndex")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/tcptype/index.html b/files/en-us/web/api/rtcicecandidate/tcptype/index.html index 988cead2da73107..ac143b7afa533ba 100644 --- a/files/en-us/web/api/rtcicecandidate/tcptype/index.html +++ b/files/en-us/web/api/rtcicecandidate/tcptype/index.html @@ -62,7 +62,6 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.tcpType")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/tojson/index.html b/files/en-us/web/api/rtcicecandidate/tojson/index.html index ba5e75adf66ef0b..0b875223b9cc768 100644 --- a/files/en-us/web/api/rtcicecandidate/tojson/index.html +++ b/files/en-us/web/api/rtcicecandidate/tojson/index.html @@ -55,6 +55,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.toJSON")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/type/index.html b/files/en-us/web/api/rtcicecandidate/type/index.html index 3906bc6c4629d15..948a03eed42b492 100644 --- a/files/en-us/web/api/rtcicecandidate/type/index.html +++ b/files/en-us/web/api/rtcicecandidate/type/index.html @@ -64,7 +64,6 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.type")}}

      diff --git a/files/en-us/web/api/rtcicecandidate/usernamefragment/index.html b/files/en-us/web/api/rtcicecandidate/usernamefragment/index.html index 8b70adbb21720b9..37a9441b6ec90c8 100644 --- a/files/en-us/web/api/rtcicecandidate/usernamefragment/index.html +++ b/files/en-us/web/api/rtcicecandidate/usernamefragment/index.html @@ -95,6 +95,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidate.usernameFragment")}}

      diff --git a/files/en-us/web/api/rtcicecandidateinit/candidate/index.html b/files/en-us/web/api/rtcicecandidateinit/candidate/index.html index 823db5324cf62e0..4f7b39ce3e923ff 100644 --- a/files/en-us/web/api/rtcicecandidateinit/candidate/index.html +++ b/files/en-us/web/api/rtcicecandidateinit/candidate/index.html @@ -68,8 +68,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidateInit.candidate")}}

      See also

      diff --git a/files/en-us/web/api/rtcicecandidateinit/index.html b/files/en-us/web/api/rtcicecandidateinit/index.html index cd205f136c58e2e..a0a9a9c9685a751 100644 --- a/files/en-us/web/api/rtcicecandidateinit/index.html +++ b/files/en-us/web/api/rtcicecandidateinit/index.html @@ -51,6 +51,5 @@

      Browser compatibility

      -

      {{Compat("api.RTCIceCandidateInit")}}

      diff --git a/files/en-us/web/api/rtcicecandidateinit/sdpmid/index.html b/files/en-us/web/api/rtcicecandidateinit/sdpmid/index.html index db95d39aaab6bd2..3548182fe25f540 100644 --- a/files/en-us/web/api/rtcicecandidateinit/sdpmid/index.html +++ b/files/en-us/web/api/rtcicecandidateinit/sdpmid/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidateInit.sdpMid")}}

      See also

      diff --git a/files/en-us/web/api/rtcicecandidateinit/sdpmlineindex/index.html b/files/en-us/web/api/rtcicecandidateinit/sdpmlineindex/index.html index ec22076e554cab1..a59afe6089f80bd 100644 --- a/files/en-us/web/api/rtcicecandidateinit/sdpmlineindex/index.html +++ b/files/en-us/web/api/rtcicecandidateinit/sdpmlineindex/index.html @@ -46,8 +46,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidateInit.sdpMLineIndex")}}

      See also

      diff --git a/files/en-us/web/api/rtcicecandidateinit/usernamefragment/index.html b/files/en-us/web/api/rtcicecandidateinit/usernamefragment/index.html index 9c7165f4d83d252..3ddfa5c3f5fdbfc 100644 --- a/files/en-us/web/api/rtcicecandidateinit/usernamefragment/index.html +++ b/files/en-us/web/api/rtcicecandidateinit/usernamefragment/index.html @@ -47,8 +47,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidateInit.usernameFragment")}}

      See also

      diff --git a/files/en-us/web/api/rtcicecandidatepair/index.html b/files/en-us/web/api/rtcicecandidatepair/index.html index 512b61313d93b1c..3fa4c6e390a16d2 100644 --- a/files/en-us/web/api/rtcicecandidatepair/index.html +++ b/files/en-us/web/api/rtcicecandidatepair/index.html @@ -52,6 +52,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePair")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepair/local/index.html b/files/en-us/web/api/rtcicecandidatepair/local/index.html index 803079ed7e86e62..66a633b9ee0bde1 100644 --- a/files/en-us/web/api/rtcicecandidatepair/local/index.html +++ b/files/en-us/web/api/rtcicecandidatepair/local/index.html @@ -58,6 +58,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePair.local")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepair/remote/index.html b/files/en-us/web/api/rtcicecandidatepair/remote/index.html index 4493b4a6fb7c20b..c755a66c3a9f845 100644 --- a/files/en-us/web/api/rtcicecandidatepair/remote/index.html +++ b/files/en-us/web/api/rtcicecandidatepair/remote/index.html @@ -58,6 +58,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePair.remote")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/availableincomingbitrate/index.html b/files/en-us/web/api/rtcicecandidatepairstats/availableincomingbitrate/index.html index 7bc809f994a82c8..7d18b04c892dde1 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/availableincomingbitrate/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/availableincomingbitrate/index.html @@ -61,6 +61,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.availableIncomingBitrate")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/availableoutgoingbitrate/index.html b/files/en-us/web/api/rtcicecandidatepairstats/availableoutgoingbitrate/index.html index c27e89c799a97cf..2def31697623a98 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/availableoutgoingbitrate/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/availableoutgoingbitrate/index.html @@ -68,6 +68,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.availableOutgoingBitrate")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/bytesreceived/index.html b/files/en-us/web/api/rtcicecandidatepairstats/bytesreceived/index.html index fe4a1381c0e4677..57ffc10cafafb25 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/bytesreceived/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/bytesreceived/index.html @@ -52,6 +52,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.bytesReceived")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/bytessent/index.html b/files/en-us/web/api/rtcicecandidatepairstats/bytessent/index.html index 52c5f58de1c14dd..ac9eb0257037af1 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/bytessent/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/bytessent/index.html @@ -52,6 +52,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.bytesSent")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/circuitbreakertriggercount/index.html b/files/en-us/web/api/rtcicecandidatepairstats/circuitbreakertriggercount/index.html index 240b745d9397b96..5473d4a0ed5d203 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/circuitbreakertriggercount/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/circuitbreakertriggercount/index.html @@ -56,6 +56,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.circuitBreakerTriggerCount")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/consentexpiredtimestamp/index.html b/files/en-us/web/api/rtcicecandidatepairstats/consentexpiredtimestamp/index.html index b47a13efd6cafc8..d24765092c35cb5 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/consentexpiredtimestamp/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/consentexpiredtimestamp/index.html @@ -53,6 +53,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.consentExpiredTimestamp")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/consentrequestssent/index.html b/files/en-us/web/api/rtcicecandidatepairstats/consentrequestssent/index.html index ff946db1725fdbf..3ac8da163cccd49 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/consentrequestssent/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/consentrequestssent/index.html @@ -50,6 +50,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.consentRequestsSent")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/currentroundtriptime/index.html b/files/en-us/web/api/rtcicecandidatepairstats/currentroundtriptime/index.html index ed97d4eb49e0f77..0aeb3c6b1781467 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/currentroundtriptime/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/currentroundtriptime/index.html @@ -53,6 +53,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.currentRoundTripTime")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/firstrequesttimestamp/index.html b/files/en-us/web/api/rtcicecandidatepairstats/firstrequesttimestamp/index.html index 5500fedbfd01ba8..c6644bd2e580d5f 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/firstrequesttimestamp/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/firstrequesttimestamp/index.html @@ -57,8 +57,6 @@

      Specifications

      Browser compatibility

      - - diff --git a/files/en-us/web/api/rtcicecandidatepairstats/index.html b/files/en-us/web/api/rtcicecandidatepairstats/index.html index 18a738d20111ffc..68730a1520d8012 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/index.html @@ -113,7 +113,6 @@

      Usage notes

      Any candidate pair that isn't the active pair of candidates for a transport gets deleted if the {{domxref("RTCIceTransport")}} performs an ICE restart, at which point the {{domxref("RTCIceTransport.state", "state")}} of the ICE transport returns to new and negotiation starts once again. For more information, see {{SectionOnPage("/en-US/docs/Web/API/WebRTC_API/Session_lifetime", "ICE restart")}}.

      -

      Example

      This example computes the average time elapsed between connectivity checks if the {{domxref("RTCStats")}} object rtcStats is an RTCIceCandidatePairStats object.

      @@ -149,6 +148,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/lastpacketreceivedtimestamp/index.html b/files/en-us/web/api/rtcicecandidatepairstats/lastpacketreceivedtimestamp/index.html index 6408900baace319..f3c24d891698b9f 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/lastpacketreceivedtimestamp/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/lastpacketreceivedtimestamp/index.html @@ -48,6 +48,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.lastPacketReceivedTimestamp")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/lastpacketsenttimestamp/index.html b/files/en-us/web/api/rtcicecandidatepairstats/lastpacketsenttimestamp/index.html index a4bcd75601fbf31..e5d52d10da53a8e 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/lastpacketsenttimestamp/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/lastpacketsenttimestamp/index.html @@ -50,6 +50,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.lastPacketSentTimestamp")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/lastrequesttimestamp/index.html b/files/en-us/web/api/rtcicecandidatepairstats/lastrequesttimestamp/index.html index 6f2474b05b2a25f..6d785f78a6700ce 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/lastrequesttimestamp/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/lastrequesttimestamp/index.html @@ -57,6 +57,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.lastRequestTimestamp")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/lastresponsetimestamp/index.html b/files/en-us/web/api/rtcicecandidatepairstats/lastresponsetimestamp/index.html index 1b003a0ec6d046f..7fc762e4556b8fb 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/lastresponsetimestamp/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/lastresponsetimestamp/index.html @@ -51,6 +51,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.lastResponseTimestamp")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/localcandidateid/index.html b/files/en-us/web/api/rtcicecandidatepairstats/localcandidateid/index.html index 7e9f9b508c759ad..b1626a86ba728b2 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/localcandidateid/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/localcandidateid/index.html @@ -53,6 +53,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.localCandidateId")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/nominated/index.html b/files/en-us/web/api/rtcicecandidatepairstats/nominated/index.html index 76a662584ecb1ff..c0d5ba1ddd5c4a6 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/nominated/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/nominated/index.html @@ -53,6 +53,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.nominated")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/packetsreceived/index.html b/files/en-us/web/api/rtcicecandidatepairstats/packetsreceived/index.html index eb25e58ae9f273d..8de3c0130974c0e 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/packetsreceived/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/packetsreceived/index.html @@ -50,6 +50,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.packetsReceived")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/packetssent/index.html b/files/en-us/web/api/rtcicecandidatepairstats/packetssent/index.html index 7a4b8610481ee78..2b102588a9a2b71 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/packetssent/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/packetssent/index.html @@ -52,6 +52,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.packetsSent")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/priority/index.html b/files/en-us/web/api/rtcicecandidatepairstats/priority/index.html index 5343ad80ddcd4ef..1f3176db08e363e 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/priority/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/priority/index.html @@ -51,6 +51,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.priority")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/readable/index.html b/files/en-us/web/api/rtcicecandidatepairstats/readable/index.html index c2d0a4f2165f003..4b3051c4702c99c 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/readable/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/readable/index.html @@ -37,6 +37,4 @@

      Value

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.readable")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/remotecandidateid/index.html b/files/en-us/web/api/rtcicecandidatepairstats/remotecandidateid/index.html index 33a11e18b57bd93..c935c9e4f7b851b 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/remotecandidateid/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/remotecandidateid/index.html @@ -50,6 +50,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.remoteCandidateId")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/requestsreceived/index.html b/files/en-us/web/api/rtcicecandidatepairstats/requestsreceived/index.html index 560ba91476b1056..983bd3821197a75 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/requestsreceived/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/requestsreceived/index.html @@ -54,6 +54,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.requestsReceived")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/requestssent/index.html b/files/en-us/web/api/rtcicecandidatepairstats/requestssent/index.html index 3053e8e4a9a7701..0300db62c70e157 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/requestssent/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/requestssent/index.html @@ -53,6 +53,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.requestsSent")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/responsesreceived/index.html b/files/en-us/web/api/rtcicecandidatepairstats/responsesreceived/index.html index 93b34ecd726d456..621a4821c41690e 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/responsesreceived/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/responsesreceived/index.html @@ -51,6 +51,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.responsesReceived")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/responsessent/index.html b/files/en-us/web/api/rtcicecandidatepairstats/responsessent/index.html index c543425b88e6106..898e1ce45b30f88 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/responsessent/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/responsessent/index.html @@ -54,6 +54,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.responsesSent")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/retransmissionsreceived/index.html b/files/en-us/web/api/rtcicecandidatepairstats/retransmissionsreceived/index.html index 6acb4a909005d5d..64a41af768fc1ce 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/retransmissionsreceived/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/retransmissionsreceived/index.html @@ -57,6 +57,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.retransmissionsReceived")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/retransmissionssent/index.html b/files/en-us/web/api/rtcicecandidatepairstats/retransmissionssent/index.html index 8fba82024a05899..ad7b6f567b8a057 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/retransmissionssent/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/retransmissionssent/index.html @@ -41,6 +41,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.retransmissionsSent")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/selected/index.html b/files/en-us/web/api/rtcicecandidatepairstats/selected/index.html index 4d0a0ccb6962ec4..dd4f9609bbd7882 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/selected/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/selected/index.html @@ -47,6 +47,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.selected")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/state/index.html b/files/en-us/web/api/rtcicecandidatepairstats/state/index.html index 5190203f3878f7e..0d2933f131a82c6 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/state/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/state/index.html @@ -63,6 +63,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.state")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/totalroundtriptime/index.html b/files/en-us/web/api/rtcicecandidatepairstats/totalroundtriptime/index.html index 84656ee09785f5e..957fd069d213554 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/totalroundtriptime/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/totalroundtriptime/index.html @@ -61,6 +61,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.totalRoundTripTime")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/transportid/index.html b/files/en-us/web/api/rtcicecandidatepairstats/transportid/index.html index 6d58f4baa4e4f49..db9c9fbe6987ca4 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/transportid/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/transportid/index.html @@ -52,6 +52,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.transportId")}}

      diff --git a/files/en-us/web/api/rtcicecandidatepairstats/writable/index.html b/files/en-us/web/api/rtcicecandidatepairstats/writable/index.html index aa94b9fefdfd2fa..b243889951a85eb 100644 --- a/files/en-us/web/api/rtcicecandidatepairstats/writable/index.html +++ b/files/en-us/web/api/rtcicecandidatepairstats/writable/index.html @@ -38,6 +38,4 @@

      Value

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidatePairStats.writable")}}

      diff --git a/files/en-us/web/api/rtcicecandidatestats/address/index.html b/files/en-us/web/api/rtcicecandidatestats/address/index.html index 484170763f7b6b8..7a75846d1d7f8c3 100644 --- a/files/en-us/web/api/rtcicecandidatestats/address/index.html +++ b/files/en-us/web/api/rtcicecandidatestats/address/index.html @@ -61,6 +61,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidateStats.address")}}

      diff --git a/files/en-us/web/api/rtcicecandidatestats/candidatetype/index.html b/files/en-us/web/api/rtcicecandidatestats/candidatetype/index.html index cf7604de1daa813..60a9d289f27e634 100644 --- a/files/en-us/web/api/rtcicecandidatestats/candidatetype/index.html +++ b/files/en-us/web/api/rtcicecandidatestats/candidatetype/index.html @@ -49,6 +49,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidateStats.candidateType")}}

      diff --git a/files/en-us/web/api/rtcicecandidatestats/deleted/index.html b/files/en-us/web/api/rtcicecandidatestats/deleted/index.html index 82f1ec69b819212..45f4ba9a8e65391 100644 --- a/files/en-us/web/api/rtcicecandidatestats/deleted/index.html +++ b/files/en-us/web/api/rtcicecandidatestats/deleted/index.html @@ -82,6 +82,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidateStats.deleted")}}

      diff --git a/files/en-us/web/api/rtcicecandidatestats/index.html b/files/en-us/web/api/rtcicecandidatestats/index.html index 038018be288f43c..de010d4d672a3d9 100644 --- a/files/en-us/web/api/rtcicecandidatestats/index.html +++ b/files/en-us/web/api/rtcicecandidatestats/index.html @@ -98,6 +98,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidateStats")}}

      diff --git a/files/en-us/web/api/rtcicecandidatestats/mozlocaltransport/index.html b/files/en-us/web/api/rtcicecandidatestats/mozlocaltransport/index.html index 6d27402762472a7..ba44731d33386ac 100644 --- a/files/en-us/web/api/rtcicecandidatestats/mozlocaltransport/index.html +++ b/files/en-us/web/api/rtcicecandidatestats/mozlocaltransport/index.html @@ -36,6 +36,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.RTCIceCandidateStats.relayProtocol")}}

      diff --git a/files/en-us/web/api/rtcicecandidatestats/networktype/index.html b/files/en-us/web/api/rtcicecandidatestats/networktype/index.html index 7bfd7850bf46717..733e3d0f9277f9e 100644 --- a/files/en-us/web/api/rtcicecandidatestats/networktype/index.html +++ b/files/en-us/web/api/rtcicecandidatestats/networktype/index.html @@ -65,9 +65,6 @@

      Example

      }); }, 1000);
    -

    Browser compatibility

    - -

    {{Compat("api.RTCIceCandidateStats.networkType")}}

    diff --git a/files/en-us/web/api/rtcicecandidatestats/port/index.html b/files/en-us/web/api/rtcicecandidatestats/port/index.html index a78ec12173062ba..a136f5ae3052247 100644 --- a/files/en-us/web/api/rtcicecandidatestats/port/index.html +++ b/files/en-us/web/api/rtcicecandidatestats/port/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceCandidateStats.port")}}

    diff --git a/files/en-us/web/api/rtcicecandidatestats/priority/index.html b/files/en-us/web/api/rtcicecandidatestats/priority/index.html index dfea183fdbedad5..032cb39e4efda5e 100644 --- a/files/en-us/web/api/rtcicecandidatestats/priority/index.html +++ b/files/en-us/web/api/rtcicecandidatestats/priority/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceCandidateStats.priority")}}

    See also

    diff --git a/files/en-us/web/api/rtcicecandidatestats/protocol/index.html b/files/en-us/web/api/rtcicecandidatestats/protocol/index.html index 289f70876c69a9a..46e04112270a285 100644 --- a/files/en-us/web/api/rtcicecandidatestats/protocol/index.html +++ b/files/en-us/web/api/rtcicecandidatestats/protocol/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceCandidateStats.protocol")}}

    diff --git a/files/en-us/web/api/rtcicecandidatestats/relayprotocol/index.html b/files/en-us/web/api/rtcicecandidatestats/relayprotocol/index.html index cd212b1f42267aa..dcf407711a760a9 100644 --- a/files/en-us/web/api/rtcicecandidatestats/relayprotocol/index.html +++ b/files/en-us/web/api/rtcicecandidatestats/relayprotocol/index.html @@ -65,6 +65,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceCandidateStats.relayProtocol")}}

    diff --git a/files/en-us/web/api/rtcicecandidatestats/transportid/index.html b/files/en-us/web/api/rtcicecandidatestats/transportid/index.html index d431e21bced03a4..24afdbd4d9e61ff 100644 --- a/files/en-us/web/api/rtcicecandidatestats/transportid/index.html +++ b/files/en-us/web/api/rtcicecandidatestats/transportid/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceCandidateStats.transportId")}}

    diff --git a/files/en-us/web/api/rtcicecandidatestats/url/index.html b/files/en-us/web/api/rtcicecandidatestats/url/index.html index 56b7fc8ce634e19..32012390da63a5f 100644 --- a/files/en-us/web/api/rtcicecandidatestats/url/index.html +++ b/files/en-us/web/api/rtcicecandidatestats/url/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceCandidateStats.url")}}

    diff --git a/files/en-us/web/api/rtcicecandidatetype/index.html b/files/en-us/web/api/rtcicecandidatetype/index.html index 9299012acda9f3f..f6e7f43738ae2a3 100644 --- a/files/en-us/web/api/rtcicecandidatetype/index.html +++ b/files/en-us/web/api/rtcicecandidatetype/index.html @@ -60,6 +60,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceCandidateType")}}

    diff --git a/files/en-us/web/api/rtcicecomponent/index.html b/files/en-us/web/api/rtcicecomponent/index.html index 9f72b14054eb17f..58086b7f6130323 100644 --- a/files/en-us/web/api/rtcicecomponent/index.html +++ b/files/en-us/web/api/rtcicecomponent/index.html @@ -54,6 +54,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceComponent")}}

    diff --git a/files/en-us/web/api/rtcicecredentialtype/index.html b/files/en-us/web/api/rtcicecredentialtype/index.html index d8485eeca3cba5e..b4366a50578041c 100644 --- a/files/en-us/web/api/rtcicecredentialtype/index.html +++ b/files/en-us/web/api/rtcicecredentialtype/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceCredentialType")}}

    See also

    diff --git a/files/en-us/web/api/rtcicegathererstate/index.html b/files/en-us/web/api/rtcicegathererstate/index.html index 670b176fe62febe..b28fc83b0777b94 100644 --- a/files/en-us/web/api/rtcicegathererstate/index.html +++ b/files/en-us/web/api/rtcicegathererstate/index.html @@ -51,6 +51,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceGathererState")}}

    diff --git a/files/en-us/web/api/rtciceparameters/index.html b/files/en-us/web/api/rtciceparameters/index.html index d3e726130a131ac..47772bae0097881 100644 --- a/files/en-us/web/api/rtciceparameters/index.html +++ b/files/en-us/web/api/rtciceparameters/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceParameters")}}

    diff --git a/files/en-us/web/api/rtciceparameters/password/index.html b/files/en-us/web/api/rtciceparameters/password/index.html index ccc701007a72960..6d9ed3cd6529aaf 100644 --- a/files/en-us/web/api/rtciceparameters/password/index.html +++ b/files/en-us/web/api/rtciceparameters/password/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceParameters.password")}}

    diff --git a/files/en-us/web/api/rtciceparameters/usernamefragment/index.html b/files/en-us/web/api/rtciceparameters/usernamefragment/index.html index 0d5ff9593a72169..2c2b680c405574a 100644 --- a/files/en-us/web/api/rtciceparameters/usernamefragment/index.html +++ b/files/en-us/web/api/rtciceparameters/usernamefragment/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceParameters.usernameFragment")}}

     

    diff --git a/files/en-us/web/api/rtciceprotocol/index.html b/files/en-us/web/api/rtciceprotocol/index.html index 4a7a78a41286fed..9c30f32dbbdd95d 100644 --- a/files/en-us/web/api/rtciceprotocol/index.html +++ b/files/en-us/web/api/rtciceprotocol/index.html @@ -53,6 +53,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceProtocol")}}

    diff --git a/files/en-us/web/api/rtcicerole/index.html b/files/en-us/web/api/rtcicerole/index.html index 0e77300aa6e2024..059863fe4149182 100644 --- a/files/en-us/web/api/rtcicerole/index.html +++ b/files/en-us/web/api/rtcicerole/index.html @@ -54,6 +54,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceRole")}}

    diff --git a/files/en-us/web/api/rtciceserver/credential/index.html b/files/en-us/web/api/rtciceserver/credential/index.html index 2e04df4c53d72da..68e78ccfdfab2fe 100644 --- a/files/en-us/web/api/rtciceserver/credential/index.html +++ b/files/en-us/web/api/rtciceserver/credential/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceServer.credential")}}

    See also

    diff --git a/files/en-us/web/api/rtciceserver/credentialtype/index.html b/files/en-us/web/api/rtciceserver/credentialtype/index.html index f8327eab85e4bc9..443408563e21119 100644 --- a/files/en-us/web/api/rtciceserver/credentialtype/index.html +++ b/files/en-us/web/api/rtciceserver/credentialtype/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceServer.credentialType")}}

    See also

    diff --git a/files/en-us/web/api/rtciceserver/index.html b/files/en-us/web/api/rtciceserver/index.html index 507d8d77008ffd1..5f859bdeded99f5 100644 --- a/files/en-us/web/api/rtciceserver/index.html +++ b/files/en-us/web/api/rtciceserver/index.html @@ -66,7 +66,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceServer")}}

    diff --git a/files/en-us/web/api/rtciceserver/url/index.html b/files/en-us/web/api/rtciceserver/url/index.html index 7561d10a3015e9a..b83fb2534696d04 100644 --- a/files/en-us/web/api/rtciceserver/url/index.html +++ b/files/en-us/web/api/rtciceserver/url/index.html @@ -50,8 +50,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.RTCIceServer.url")}}

    See also

    diff --git a/files/en-us/web/api/rtciceserver/urls/index.html b/files/en-us/web/api/rtciceserver/urls/index.html index 391f53b55364618..cd1f25b9fb9e5d8 100644 --- a/files/en-us/web/api/rtciceserver/urls/index.html +++ b/files/en-us/web/api/rtciceserver/urls/index.html @@ -119,8 +119,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceServer.urls")}}

    See also

    diff --git a/files/en-us/web/api/rtciceserver/username/index.html b/files/en-us/web/api/rtciceserver/username/index.html index a4958dc4b88a991..3a2c8b90e69b68e 100644 --- a/files/en-us/web/api/rtciceserver/username/index.html +++ b/files/en-us/web/api/rtciceserver/username/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceServer.username")}}

    See also

    diff --git a/files/en-us/web/api/rtcicetcpcandidatetype/index.html b/files/en-us/web/api/rtcicetcpcandidatetype/index.html index 684fea2a9077eaf..b6673d286794355 100644 --- a/files/en-us/web/api/rtcicetcpcandidatetype/index.html +++ b/files/en-us/web/api/rtcicetcpcandidatetype/index.html @@ -52,6 +52,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceTcpCandidateType")}}

    diff --git a/files/en-us/web/api/rtcicetransport/component/index.html b/files/en-us/web/api/rtcicetransport/component/index.html index a77868040eed8e2..7ec7342e0136a47 100644 --- a/files/en-us/web/api/rtcicetransport/component/index.html +++ b/files/en-us/web/api/rtcicetransport/component/index.html @@ -53,6 +53,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceTransport.component")}}

    diff --git a/files/en-us/web/api/rtcicetransport/gatheringstate/index.html b/files/en-us/web/api/rtcicetransport/gatheringstate/index.html index 30bf9ad6f5dfd8d..9b09026e671c299 100644 --- a/files/en-us/web/api/rtcicetransport/gatheringstate/index.html +++ b/files/en-us/web/api/rtcicetransport/gatheringstate/index.html @@ -48,7 +48,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceTransport.gatheringState")}}

    diff --git a/files/en-us/web/api/rtcicetransport/gatheringstatechange_event/index.html b/files/en-us/web/api/rtcicetransport/gatheringstatechange_event/index.html index cb73446e1991ae1..e3bd4efa3753ac3 100644 --- a/files/en-us/web/api/rtcicetransport/gatheringstatechange_event/index.html +++ b/files/en-us/web/api/rtcicetransport/gatheringstatechange_event/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceTransport.gatheringstatechange_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcicetransport/getlocalcandidates/index.html b/files/en-us/web/api/rtcicetransport/getlocalcandidates/index.html index 4b8184063f1dde3..c6a5c34a1668758 100644 --- a/files/en-us/web/api/rtcicetransport/getlocalcandidates/index.html +++ b/files/en-us/web/api/rtcicetransport/getlocalcandidates/index.html @@ -69,7 +69,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceTransport.getLocalCandidates")}}

    diff --git a/files/en-us/web/api/rtcicetransport/getlocalparameters/index.html b/files/en-us/web/api/rtcicetransport/getlocalparameters/index.html index 73351a2a4078e3e..68878c15360b61d 100644 --- a/files/en-us/web/api/rtcicetransport/getlocalparameters/index.html +++ b/files/en-us/web/api/rtcicetransport/getlocalparameters/index.html @@ -60,6 +60,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceTransport.getLocalParameters")}}

    diff --git a/files/en-us/web/api/rtcicetransport/getremotecandidates/index.html b/files/en-us/web/api/rtcicetransport/getremotecandidates/index.html index b8687e557c284b8..cd7889914813124 100644 --- a/files/en-us/web/api/rtcicetransport/getremotecandidates/index.html +++ b/files/en-us/web/api/rtcicetransport/getremotecandidates/index.html @@ -67,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceTransport.getRemoteCandidates")}}

    diff --git a/files/en-us/web/api/rtcicetransport/getremoteparameters/index.html b/files/en-us/web/api/rtcicetransport/getremoteparameters/index.html index 224c184c2d69d42..a3f7041da6d1035 100644 --- a/files/en-us/web/api/rtcicetransport/getremoteparameters/index.html +++ b/files/en-us/web/api/rtcicetransport/getremoteparameters/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceTransport.getRemoteParameters")}}

    diff --git a/files/en-us/web/api/rtcicetransport/getselectedcandidatepair/index.html b/files/en-us/web/api/rtcicetransport/getselectedcandidatepair/index.html index 879d28e9669ddb5..79f971ed997a636 100644 --- a/files/en-us/web/api/rtcicetransport/getselectedcandidatepair/index.html +++ b/files/en-us/web/api/rtcicetransport/getselectedcandidatepair/index.html @@ -70,6 +70,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceTransport.getSelectedCandidatePair")}}

    diff --git a/files/en-us/web/api/rtcicetransport/index.html b/files/en-us/web/api/rtcicetransport/index.html index 8fe82127f1b049a..bb59aa6b266613d 100644 --- a/files/en-us/web/api/rtcicetransport/index.html +++ b/files/en-us/web/api/rtcicetransport/index.html @@ -90,6 +90,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceTransport")}}

    diff --git a/files/en-us/web/api/rtcicetransport/ongatheringstatechange/index.html b/files/en-us/web/api/rtcicetransport/ongatheringstatechange/index.html index afd827001887f13..d5da1dbbe934090 100644 --- a/files/en-us/web/api/rtcicetransport/ongatheringstatechange/index.html +++ b/files/en-us/web/api/rtcicetransport/ongatheringstatechange/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceTransport.ongatheringstatechange")}}

    See also

    diff --git a/files/en-us/web/api/rtcicetransport/onselectedcandidatepairchange/index.html b/files/en-us/web/api/rtcicetransport/onselectedcandidatepairchange/index.html index 934cc968a35f133..daea66608cfde63 100644 --- a/files/en-us/web/api/rtcicetransport/onselectedcandidatepairchange/index.html +++ b/files/en-us/web/api/rtcicetransport/onselectedcandidatepairchange/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceTransport.onselectedcandidatepairchange")}}

    See also

    diff --git a/files/en-us/web/api/rtcicetransport/onstatechange/index.html b/files/en-us/web/api/rtcicetransport/onstatechange/index.html index 2b1405096aafba5..c5bb0e5d62d6276 100644 --- a/files/en-us/web/api/rtcicetransport/onstatechange/index.html +++ b/files/en-us/web/api/rtcicetransport/onstatechange/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceTransport.onstatechange")}}

    See also

    diff --git a/files/en-us/web/api/rtcicetransport/role/index.html b/files/en-us/web/api/rtcicetransport/role/index.html index 119e4be3ecf1778..2e6199cbf905970 100644 --- a/files/en-us/web/api/rtcicetransport/role/index.html +++ b/files/en-us/web/api/rtcicetransport/role/index.html @@ -56,6 +56,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceTransport.role")}}

    diff --git a/files/en-us/web/api/rtcicetransport/selectedcandidatepairchange_event/index.html b/files/en-us/web/api/rtcicetransport/selectedcandidatepairchange_event/index.html index 7602b475c5fd58b..19fad4bfdc7117e 100644 --- a/files/en-us/web/api/rtcicetransport/selectedcandidatepairchange_event/index.html +++ b/files/en-us/web/api/rtcicetransport/selectedcandidatepairchange_event/index.html @@ -88,8 +88,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceTransport.selectedcandidatepairchange_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcicetransport/state/index.html b/files/en-us/web/api/rtcicetransport/state/index.html index ca603e0e0fdebfc..6e92c3a6b90ce3f 100644 --- a/files/en-us/web/api/rtcicetransport/state/index.html +++ b/files/en-us/web/api/rtcicetransport/state/index.html @@ -55,6 +55,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceTransport.state")}}

    diff --git a/files/en-us/web/api/rtcicetransport/statechange_event/index.html b/files/en-us/web/api/rtcicetransport/statechange_event/index.html index 7f48e99e184192f..f63e4309b46fb56 100644 --- a/files/en-us/web/api/rtcicetransport/statechange_event/index.html +++ b/files/en-us/web/api/rtcicetransport/statechange_event/index.html @@ -86,8 +86,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCIceTransport.statechange_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcicetransportstate/index.html b/files/en-us/web/api/rtcicetransportstate/index.html index 698693f23b6a4c8..6da1923974041fa 100644 --- a/files/en-us/web/api/rtcicetransportstate/index.html +++ b/files/en-us/web/api/rtcicetransportstate/index.html @@ -82,6 +82,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCIceRole")}}

    diff --git a/files/en-us/web/api/rtcidentityassertion/index.html b/files/en-us/web/api/rtcidentityassertion/index.html index 87b180db458a009..5c6e2ad1c9ef6f2 100644 --- a/files/en-us/web/api/rtcidentityassertion/index.html +++ b/files/en-us/web/api/rtcidentityassertion/index.html @@ -44,6 +44,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCIdentityAssertion")}}

    diff --git a/files/en-us/web/api/rtcidentityerrorevent/idp/index.html b/files/en-us/web/api/rtcidentityerrorevent/idp/index.html index 3937db2431ec171..6acabe388a1efec 100644 --- a/files/en-us/web/api/rtcidentityerrorevent/idp/index.html +++ b/files/en-us/web/api/rtcidentityerrorevent/idp/index.html @@ -36,8 +36,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.RTCIdentityErrorEvent.idp")}}

    See also

    diff --git a/files/en-us/web/api/rtcidentityerrorevent/index.html b/files/en-us/web/api/rtcidentityerrorevent/index.html index 1f111c43369b502..1bda7a887abfc9b 100644 --- a/files/en-us/web/api/rtcidentityerrorevent/index.html +++ b/files/en-us/web/api/rtcidentityerrorevent/index.html @@ -47,8 +47,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.RTCIdentityErrorEvent")}}

    See also

    diff --git a/files/en-us/web/api/rtcidentityerrorevent/loginurl/index.html b/files/en-us/web/api/rtcidentityerrorevent/loginurl/index.html index aa0341a2f2b9c05..5af00931a872a6f 100644 --- a/files/en-us/web/api/rtcidentityerrorevent/loginurl/index.html +++ b/files/en-us/web/api/rtcidentityerrorevent/loginurl/index.html @@ -36,8 +36,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.RTCIdentityErrorEvent.loginUrl")}}

    See also

    diff --git a/files/en-us/web/api/rtcidentityerrorevent/protocol/index.html b/files/en-us/web/api/rtcidentityerrorevent/protocol/index.html index 7f85adcdbd5dca0..fb050105cdef46a 100644 --- a/files/en-us/web/api/rtcidentityerrorevent/protocol/index.html +++ b/files/en-us/web/api/rtcidentityerrorevent/protocol/index.html @@ -35,8 +35,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.RTCIdentityErrorEvent.protocol")}}

    See also

    diff --git a/files/en-us/web/api/rtcidentityevent/assertion/index.html b/files/en-us/web/api/rtcidentityevent/assertion/index.html index fd59b11554e1e65..e057816c513bc85 100644 --- a/files/en-us/web/api/rtcidentityevent/assertion/index.html +++ b/files/en-us/web/api/rtcidentityevent/assertion/index.html @@ -33,8 +33,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.RTCIdentityEvent.assertion")}}

    See also

    diff --git a/files/en-us/web/api/rtcidentityevent/index.html b/files/en-us/web/api/rtcidentityevent/index.html index 44f19d016ba6286..1f11ae377c41144 100644 --- a/files/en-us/web/api/rtcidentityevent/index.html +++ b/files/en-us/web/api/rtcidentityevent/index.html @@ -42,8 +42,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.RTCIdentityEvent")}}

    See also

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/averagertcpinterval/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/averagertcpinterval/index.html index 68ef1bd2ff4684d..838c37ef878d8e8 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/averagertcpinterval/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/averagertcpinterval/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.averageRtcpInterval")}}

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/bytesreceived/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/bytesreceived/index.html index 97a5c06592eed46..7e6800d356dab22 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/bytesreceived/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/bytesreceived/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.bytesReceived")}}

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/fecpacketsdiscarded/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/fecpacketsdiscarded/index.html index 8eef5dedb7b4d9f..fc8581b829dc0f2 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/fecpacketsdiscarded/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/fecpacketsdiscarded/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.fecPacketsDiscarded")}}

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/fecpacketsreceived/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/fecpacketsreceived/index.html index 4fb16945e864bcd..b712a5ce4aee252 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/fecpacketsreceived/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/fecpacketsreceived/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.fecPacketsReceived")}}

    See also

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/fircount/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/fircount/index.html index d0f9a375b84d57b..191454b1e345937 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/fircount/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/fircount/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.firCount")}}

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/framesdecoded/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/framesdecoded/index.html index e99206da4220adc..909ac08dba12e8a 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/framesdecoded/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/framesdecoded/index.html @@ -50,6 +50,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.framesDecoded")}}

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/index.html index a13b03dc7cb372a..65488d938bff1f8 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/index.html @@ -82,8 +82,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats")}}

    See also

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/lastpacketreceivedtimestamp/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/lastpacketreceivedtimestamp/index.html index f8fb3869b7c4221..a97c2036cc5cc59 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/lastpacketreceivedtimestamp/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/lastpacketreceivedtimestamp/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.lastPacketReceivedTimestamp")}}

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/nackcount/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/nackcount/index.html index 4bd9447955a6b93..1a13b7254216232 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/nackcount/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/nackcount/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.nackCount")}}

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/packetsduplicated/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/packetsduplicated/index.html index 365eda584709a83..4dc3d5bd266e623 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/packetsduplicated/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/packetsduplicated/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.packetsDuplicated")}}

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/packetsfaileddecryption/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/packetsfaileddecryption/index.html index 0b15531fadbbc51..2c624510a0aa54d 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/packetsfaileddecryption/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/packetsfaileddecryption/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.packetsFailedDecryption")}}

    See also

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/perdscppacketsreceived/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/perdscppacketsreceived/index.html index 451c0f5332c2a43..da169eb850aaf12 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/perdscppacketsreceived/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/perdscppacketsreceived/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.perDscpPacketsReceived")}}

    See also

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/plicount/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/plicount/index.html index 868d3e9bdb470af..e3b774791373386 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/plicount/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/plicount/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.pliCount")}}

    See also

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/qpsum/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/qpsum/index.html index 58078c061c6a9b5..cafad4df12a7bf2 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/qpsum/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/qpsum/index.html @@ -85,6 +85,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.qpSum")}}

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/receiverid/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/receiverid/index.html index cab2060f3701470..df48677bae2f509 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/receiverid/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/receiverid/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.receiverId")}}

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/remoteid/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/remoteid/index.html index 5df7a83b9341995..9f211f34bb999df 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/remoteid/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/remoteid/index.html @@ -50,6 +50,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.remoteId")}}

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/slicount/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/slicount/index.html index d31d78c48706f1f..5a897914dd1aaa5 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/slicount/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/slicount/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.sliCount")}}

    See also

    diff --git a/files/en-us/web/api/rtcinboundrtpstreamstats/trackid/index.html b/files/en-us/web/api/rtcinboundrtpstreamstats/trackid/index.html index 694ad9fb2c3a837..1adc445a90938e7 100644 --- a/files/en-us/web/api/rtcinboundrtpstreamstats/trackid/index.html +++ b/files/en-us/web/api/rtcinboundrtpstreamstats/trackid/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCInboundRtpStreamStats.trackId")}}

    diff --git a/files/en-us/web/api/rtcnetworktype/index.html b/files/en-us/web/api/rtcnetworktype/index.html index 536238a5f1ee605..e89fa9e68c00b0b 100644 --- a/files/en-us/web/api/rtcnetworktype/index.html +++ b/files/en-us/web/api/rtcnetworktype/index.html @@ -71,6 +71,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCNetworkType")}}

    diff --git a/files/en-us/web/api/rtcofferansweroptions/index.html b/files/en-us/web/api/rtcofferansweroptions/index.html index b8686b3e535b8e7..abcb355c499f94b 100644 --- a/files/en-us/web/api/rtcofferansweroptions/index.html +++ b/files/en-us/web/api/rtcofferansweroptions/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOfferAnswerOptions")}}

    diff --git a/files/en-us/web/api/rtcofferansweroptions/voiceactivitydetection/index.html b/files/en-us/web/api/rtcofferansweroptions/voiceactivitydetection/index.html index e42dc4694eb2f6f..5575a0f809baade 100644 --- a/files/en-us/web/api/rtcofferansweroptions/voiceactivitydetection/index.html +++ b/files/en-us/web/api/rtcofferansweroptions/voiceactivitydetection/index.html @@ -36,6 +36,4 @@

    Value

    Browser compatibility

    - -

    {{Compat("api.RTCOfferAnswerOptions.voiceActivityDetection")}}

    diff --git a/files/en-us/web/api/rtcofferoptions/icerestart/index.html b/files/en-us/web/api/rtcofferoptions/icerestart/index.html index f6689b48a8c64e2..ebb671bcb5fc5f6 100644 --- a/files/en-us/web/api/rtcofferoptions/icerestart/index.html +++ b/files/en-us/web/api/rtcofferoptions/icerestart/index.html @@ -79,6 +79,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOfferOptions.iceRestart")}}

    diff --git a/files/en-us/web/api/rtcofferoptions/index.html b/files/en-us/web/api/rtcofferoptions/index.html index 88191ff5ee7b0b1..1bb5a69601d6a60 100644 --- a/files/en-us/web/api/rtcofferoptions/index.html +++ b/files/en-us/web/api/rtcofferoptions/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOfferOptions")}}

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/averagertcpinterval/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/averagertcpinterval/index.html index 8275cbc86d33ad5..e8f668dd977a9c1 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/averagertcpinterval/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/averagertcpinterval/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats.averageRtcpInterval")}}

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/fircount/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/fircount/index.html index 6137ae7cb85b7c1..3766a6f98c7a5f6 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/fircount/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/fircount/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats.firCount")}}

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/framesencoded/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/framesencoded/index.html index 2eec2702e4fb172..64454a979e8d82c 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/framesencoded/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/framesencoded/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats.framesEncoded")}}

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/index.html index 4e2f99dbad3fc7a..3a8c8713efec39d 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats")}}

    See also

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/lastpacketsenttimestamp/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/lastpacketsenttimestamp/index.html index abeed2474eb5c3e..20af0589a0002db 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/lastpacketsenttimestamp/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/lastpacketsenttimestamp/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats.lastPacketSentTimestamp")}}

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/nackcount/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/nackcount/index.html index a4635c257c4efbd..12789c36a5436e4 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/nackcount/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/nackcount/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats.nackCount")}}

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/perdscppacketssent/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/perdscppacketssent/index.html index 230ae9b4e42e217..d23e0bca0d8f026 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/perdscppacketssent/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/perdscppacketssent/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats.perDscpPacketsSent")}}

    See also

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/plicount/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/plicount/index.html index fcb4d59b630f57a..7f99ed06164b67b 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/plicount/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/plicount/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats.pliCount")}}

    See also

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/qpsum/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/qpsum/index.html index 356e3b8c3271fa2..ea84bfaaceaf2e1 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/qpsum/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/qpsum/index.html @@ -89,6 +89,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats.qpSum")}}

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/qualitylimitationreason/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/qualitylimitationreason/index.html index 48bf877688c8b98..c07161a6ca0f7bf 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/qualitylimitationreason/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/qualitylimitationreason/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats.qualityLimitationReason")}}

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/remoteid/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/remoteid/index.html index 4558532c392d9dc..90348edc926109d 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/remoteid/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/remoteid/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats.remoteId")}}

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/slicount/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/slicount/index.html index fcbc9e90fe8d214..4d43966759dcfed 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/slicount/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/slicount/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats.sliCount")}}

    See also

    diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/trackid/index.html b/files/en-us/web/api/rtcoutboundrtpstreamstats/trackid/index.html index 4c7a161b30f21fe..07dea63df3580cf 100644 --- a/files/en-us/web/api/rtcoutboundrtpstreamstats/trackid/index.html +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/trackid/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCOutboundRtpStreamStats.trackId")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/addicecandidate/index.html b/files/en-us/web/api/rtcpeerconnection/addicecandidate/index.html index 167b139986a0477..a1a31841430278e 100644 --- a/files/en-us/web/api/rtcpeerconnection/addicecandidate/index.html +++ b/files/en-us/web/api/rtcpeerconnection/addicecandidate/index.html @@ -140,8 +140,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.addIceCandidate")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/addstream/index.html b/files/en-us/web/api/rtcpeerconnection/addstream/index.html index ccb09053f56922a..547ba674553648b 100644 --- a/files/en-us/web/api/rtcpeerconnection/addstream/index.html +++ b/files/en-us/web/api/rtcpeerconnection/addstream/index.html @@ -97,8 +97,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.addStream")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/addstream_event/index.html b/files/en-us/web/api/rtcpeerconnection/addstream_event/index.html index 08fe4590bcfb24d..db1a26dd1d1971c 100644 --- a/files/en-us/web/api/rtcpeerconnection/addstream_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/addstream_event/index.html @@ -68,8 +68,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.addstream_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/addtrack/index.html b/files/en-us/web/api/rtcpeerconnection/addtrack/index.html index b30dd2ccde6159a..2d9ae797d12c4d3 100644 --- a/files/en-us/web/api/rtcpeerconnection/addtrack/index.html +++ b/files/en-us/web/api/rtcpeerconnection/addtrack/index.html @@ -153,7 +153,6 @@

    New senders

  • The new transceiver is added to the RTCPeerConnection's set of transceivers.
  • -

    Example

    This example is drawn from the code presented in the article Signaling and video calling and its corresponding sample code. It comes from the handleVideoOfferMsg() method there, which is called when an offer message is received from the remote peer.

    @@ -201,8 +200,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.addTrack")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/addtransceiver/index.html b/files/en-us/web/api/rtcpeerconnection/addtransceiver/index.html index caea306e03f0a92..b21712da218dc4e 100644 --- a/files/en-us/web/api/rtcpeerconnection/addtransceiver/index.html +++ b/files/en-us/web/api/rtcpeerconnection/addtransceiver/index.html @@ -58,7 +58,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCPeerConnection.addTransceiver")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/cantrickleicecandidates/index.html b/files/en-us/web/api/rtcpeerconnection/cantrickleicecandidates/index.html index 2a83d360b501ea5..1d55c536516a9a7 100644 --- a/files/en-us/web/api/rtcpeerconnection/cantrickleicecandidates/index.html +++ b/files/en-us/web/api/rtcpeerconnection/cantrickleicecandidates/index.html @@ -80,8 +80,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.canTrickleIceCandidates")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/close/index.html b/files/en-us/web/api/rtcpeerconnection/close/index.html index ca709f3f6f5b982..18ac18ad45f686f 100644 --- a/files/en-us/web/api/rtcpeerconnection/close/index.html +++ b/files/en-us/web/api/rtcpeerconnection/close/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.close")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/connectionstate/index.html b/files/en-us/web/api/rtcpeerconnection/connectionstate/index.html index d68e63e4d4982a5..53f23a6d604c93e 100644 --- a/files/en-us/web/api/rtcpeerconnection/connectionstate/index.html +++ b/files/en-us/web/api/rtcpeerconnection/connectionstate/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.connectionState")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/connectionstatechange_event/index.html b/files/en-us/web/api/rtcpeerconnection/connectionstatechange_event/index.html index db8fd78b8d9a572..0f5963d0500d8a3 100644 --- a/files/en-us/web/api/rtcpeerconnection/connectionstatechange_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/connectionstatechange_event/index.html @@ -86,8 +86,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.connectionstatechange_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/createanswer/index.html b/files/en-us/web/api/rtcpeerconnection/createanswer/index.html index 7240da3bb0a8895..4886ebb74ae6fc2 100644 --- a/files/en-us/web/api/rtcpeerconnection/createanswer/index.html +++ b/files/en-us/web/api/rtcpeerconnection/createanswer/index.html @@ -100,6 +100,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.createAnswer")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/createdatachannel/index.html b/files/en-us/web/api/rtcpeerconnection/createdatachannel/index.html index f83e4e57a31e9fa..a53ae5105a3b294 100644 --- a/files/en-us/web/api/rtcpeerconnection/createdatachannel/index.html +++ b/files/en-us/web/api/rtcpeerconnection/createdatachannel/index.html @@ -141,7 +141,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCPeerConnection.createDataChannel")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/createoffer/index.html b/files/en-us/web/api/rtcpeerconnection/createoffer/index.html index 8e57ab03cb66a75..a36ed03fb6a9177 100644 --- a/files/en-us/web/api/rtcpeerconnection/createoffer/index.html +++ b/files/en-us/web/api/rtcpeerconnection/createoffer/index.html @@ -140,6 +140,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCPeerConnection.createOffer")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/currentlocaldescription/index.html b/files/en-us/web/api/rtcpeerconnection/currentlocaldescription/index.html index 1daa891c15f0366..13b32f1ec8b7a17 100644 --- a/files/en-us/web/api/rtcpeerconnection/currentlocaldescription/index.html +++ b/files/en-us/web/api/rtcpeerconnection/currentlocaldescription/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.currentLocalDescription")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/currentremotedescription/index.html b/files/en-us/web/api/rtcpeerconnection/currentremotedescription/index.html index 37d7a457a4d4a23..faa09bf697e30a0 100644 --- a/files/en-us/web/api/rtcpeerconnection/currentremotedescription/index.html +++ b/files/en-us/web/api/rtcpeerconnection/currentremotedescription/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.currentRemoteDescription")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/datachannel_event/index.html b/files/en-us/web/api/rtcpeerconnection/datachannel_event/index.html index 843415cb10d9079..c9bcf64d8e56318 100644 --- a/files/en-us/web/api/rtcpeerconnection/datachannel_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/datachannel_event/index.html @@ -87,8 +87,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.datachannel_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/generatecertificate/index.html b/files/en-us/web/api/rtcpeerconnection/generatecertificate/index.html index 28979a41a1ed15b..75c74c010360772 100644 --- a/files/en-us/web/api/rtcpeerconnection/generatecertificate/index.html +++ b/files/en-us/web/api/rtcpeerconnection/generatecertificate/index.html @@ -116,8 +116,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.generateCertificate")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/getconfiguration/index.html b/files/en-us/web/api/rtcpeerconnection/getconfiguration/index.html index e9bdeb1e1d3773b..358ed8e52113910 100644 --- a/files/en-us/web/api/rtcpeerconnection/getconfiguration/index.html +++ b/files/en-us/web/api/rtcpeerconnection/getconfiguration/index.html @@ -73,7 +73,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCPeerConnection.getConfiguration")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/getdefaulticeservers/index.html b/files/en-us/web/api/rtcpeerconnection/getdefaulticeservers/index.html index 93dcc275079adb6..46769cf84421328 100644 --- a/files/en-us/web/api/rtcpeerconnection/getdefaulticeservers/index.html +++ b/files/en-us/web/api/rtcpeerconnection/getdefaulticeservers/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.getDefaultIceServers")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/getidentityassertion/index.html b/files/en-us/web/api/rtcpeerconnection/getidentityassertion/index.html index 63ff53e0b71eb18..648f60384819403 100644 --- a/files/en-us/web/api/rtcpeerconnection/getidentityassertion/index.html +++ b/files/en-us/web/api/rtcpeerconnection/getidentityassertion/index.html @@ -21,7 +21,6 @@

    Syntax

    pc.getIdentityAssertion();
     
    -

    There is neither parameter nor return value for this method.

    Example

    @@ -52,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.getIdentityAssertion")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/getreceivers/index.html b/files/en-us/web/api/rtcpeerconnection/getreceivers/index.html index 352d823d8727a7a..766d060e6b8b9d7 100644 --- a/files/en-us/web/api/rtcpeerconnection/getreceivers/index.html +++ b/files/en-us/web/api/rtcpeerconnection/getreceivers/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.getReceivers")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/getsenders/index.html b/files/en-us/web/api/rtcpeerconnection/getsenders/index.html index 53a43c7ab244c16..f56b15a3d2a13b9 100644 --- a/files/en-us/web/api/rtcpeerconnection/getsenders/index.html +++ b/files/en-us/web/api/rtcpeerconnection/getsenders/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.getSenders")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/getstats/index.html b/files/en-us/web/api/rtcpeerconnection/getstats/index.html index 89898e5859b2c0b..6d2a65391913a5a 100644 --- a/files/en-us/web/api/rtcpeerconnection/getstats/index.html +++ b/files/en-us/web/api/rtcpeerconnection/getstats/index.html @@ -33,7 +33,6 @@

    Parameters

    A {{domxref("MediaStreamTrack")}} for which to gather statistics. If this is null (the default value), statistics will be gathered for the entire {{domxref("RTCPeerConnection")}}.
    -

    Return value

    A {{jsxref("Promise")}} which resolves with an {{domxref("RTCStatsReport")}} object providing connection statistics. The contents of the report depend on the selector as well as other details of the connection.

    @@ -115,6 +114,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.getStats")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/getstreambyid/index.html b/files/en-us/web/api/rtcpeerconnection/getstreambyid/index.html index 744eaa12ff1d4fa..661d59be79d2343 100644 --- a/files/en-us/web/api/rtcpeerconnection/getstreambyid/index.html +++ b/files/en-us/web/api/rtcpeerconnection/getstreambyid/index.html @@ -62,8 +62,6 @@

    Polyfill

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.getStreamById")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/gettransceivers/index.html b/files/en-us/web/api/rtcpeerconnection/gettransceivers/index.html index ebbaa8c87e55af4..df2f9b135960fd7 100644 --- a/files/en-us/web/api/rtcpeerconnection/gettransceivers/index.html +++ b/files/en-us/web/api/rtcpeerconnection/gettransceivers/index.html @@ -59,7 +59,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCPeerConnection.getTransceivers")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/icecandidate_event/index.html b/files/en-us/web/api/rtcpeerconnection/icecandidate_event/index.html index b0d9a3008e93131..796c09cd882db0a 100644 --- a/files/en-us/web/api/rtcpeerconnection/icecandidate_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/icecandidate_event/index.html @@ -139,8 +139,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.icecandidate_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/icecandidateerror_event/index.html b/files/en-us/web/api/rtcpeerconnection/icecandidateerror_event/index.html index 176eb8a3c8388a1..6083c970ff7e539 100644 --- a/files/en-us/web/api/rtcpeerconnection/icecandidateerror_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/icecandidateerror_event/index.html @@ -85,6 +85,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCPeerConnection.icecandidateerror_event")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/iceconnectionstate/index.html b/files/en-us/web/api/rtcpeerconnection/iceconnectionstate/index.html index 9f7b49e0e68654b..e9e4fd0695c5ec6 100644 --- a/files/en-us/web/api/rtcpeerconnection/iceconnectionstate/index.html +++ b/files/en-us/web/api/rtcpeerconnection/iceconnectionstate/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.iceConnectionState")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/iceconnectionstatechange_event/index.html b/files/en-us/web/api/rtcpeerconnection/iceconnectionstatechange_event/index.html index 3dec7a76c7e3624..8eeed6e8a076e0f 100644 --- a/files/en-us/web/api/rtcpeerconnection/iceconnectionstatechange_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/iceconnectionstatechange_event/index.html @@ -94,8 +94,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.iceconnectionstatechange_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/icegatheringstate/index.html b/files/en-us/web/api/rtcpeerconnection/icegatheringstate/index.html index 88c9e9922009020..7e5bcc29595e370 100644 --- a/files/en-us/web/api/rtcpeerconnection/icegatheringstate/index.html +++ b/files/en-us/web/api/rtcpeerconnection/icegatheringstate/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.iceGatheringState")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/icegatheringstatechange_event/index.html b/files/en-us/web/api/rtcpeerconnection/icegatheringstatechange_event/index.html index 78e4e9babd86417..57a38879e657b9e 100644 --- a/files/en-us/web/api/rtcpeerconnection/icegatheringstatechange_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/icegatheringstatechange_event/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.icegatheringstatechange_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/identityresult_event/index.html b/files/en-us/web/api/rtcpeerconnection/identityresult_event/index.html index 9658bfba622154c..15a2ba103c80c97 100644 --- a/files/en-us/web/api/rtcpeerconnection/identityresult_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/identityresult_event/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.identityresult_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/idpassertionerror_event/index.html b/files/en-us/web/api/rtcpeerconnection/idpassertionerror_event/index.html index 06087f297adf3e3..a0bc5ada81c95ca 100644 --- a/files/en-us/web/api/rtcpeerconnection/idpassertionerror_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/idpassertionerror_event/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.idpassertionerror_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/idpvalidationerror_event/index.html b/files/en-us/web/api/rtcpeerconnection/idpvalidationerror_event/index.html index 8b79c4a54a06ba8..b8c454ded1957ae 100644 --- a/files/en-us/web/api/rtcpeerconnection/idpvalidationerror_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/idpvalidationerror_event/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.idpvalidationerror_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/index.html b/files/en-us/web/api/rtcpeerconnection/index.html index a0dedbd4d340d3d..9ad4ce847882e2e 100644 --- a/files/en-us/web/api/rtcpeerconnection/index.html +++ b/files/en-us/web/api/rtcpeerconnection/index.html @@ -356,8 +356,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/localdescription/index.html b/files/en-us/web/api/rtcpeerconnection/localdescription/index.html index ff6d8931847c1e5..85b5a54ea554e08 100644 --- a/files/en-us/web/api/rtcpeerconnection/localdescription/index.html +++ b/files/en-us/web/api/rtcpeerconnection/localdescription/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.localDescription")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/negotiationneeded_event/index.html b/files/en-us/web/api/rtcpeerconnection/negotiationneeded_event/index.html index ccb45413205ee4c..55ce906af87ed3e 100644 --- a/files/en-us/web/api/rtcpeerconnection/negotiationneeded_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/negotiationneeded_event/index.html @@ -96,8 +96,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.negotiationneeded_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/onaddstream/index.html b/files/en-us/web/api/rtcpeerconnection/onaddstream/index.html index 35dbb5cddfe80b6..1745f36bd658f07 100644 --- a/files/en-us/web/api/rtcpeerconnection/onaddstream/index.html +++ b/files/en-us/web/api/rtcpeerconnection/onaddstream/index.html @@ -49,10 +49,6 @@

    Browser compatibility

    Important: This property has been removed from the specification; you should now use {{domxref("RTCPeerConnection.ontrack")}} to watch for {{event("track")}} events instead. It is included here in order to help you adapt existing code and understand existing samples, which may not be up-to-date yet.

    - - - -

    {{Compat("api.RTCPeerConnection.onaddstream")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/onconnectionstatechange/index.html b/files/en-us/web/api/rtcpeerconnection/onconnectionstatechange/index.html index d21c813dcf21eb9..efe12aa6af15e48 100644 --- a/files/en-us/web/api/rtcpeerconnection/onconnectionstatechange/index.html +++ b/files/en-us/web/api/rtcpeerconnection/onconnectionstatechange/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.onconnectionstatechange")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/ondatachannel/index.html b/files/en-us/web/api/rtcpeerconnection/ondatachannel/index.html index 7cbe2a7191a03b5..12f2e99e8049d2b 100644 --- a/files/en-us/web/api/rtcpeerconnection/ondatachannel/index.html +++ b/files/en-us/web/api/rtcpeerconnection/ondatachannel/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.ondatachannel")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/onicecandidate/index.html b/files/en-us/web/api/rtcpeerconnection/onicecandidate/index.html index ef6687fa1f5a64e..554d66f8c1c8fc9 100644 --- a/files/en-us/web/api/rtcpeerconnection/onicecandidate/index.html +++ b/files/en-us/web/api/rtcpeerconnection/onicecandidate/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.onicecandidate")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/onicecandidateerror/index.html b/files/en-us/web/api/rtcpeerconnection/onicecandidateerror/index.html index f20c47c9387202e..0630e836b50dc52 100644 --- a/files/en-us/web/api/rtcpeerconnection/onicecandidateerror/index.html +++ b/files/en-us/web/api/rtcpeerconnection/onicecandidateerror/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.onicecandidateerror")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/oniceconnectionstatechange/index.html b/files/en-us/web/api/rtcpeerconnection/oniceconnectionstatechange/index.html index 75cecac867737bf..7b955f9b6c0920c 100644 --- a/files/en-us/web/api/rtcpeerconnection/oniceconnectionstatechange/index.html +++ b/files/en-us/web/api/rtcpeerconnection/oniceconnectionstatechange/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.oniceconnectionstatechange")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/onicegatheringstatechange/index.html b/files/en-us/web/api/rtcpeerconnection/onicegatheringstatechange/index.html index c9c96526415aa80..9f5d8d2fd1e208a 100644 --- a/files/en-us/web/api/rtcpeerconnection/onicegatheringstatechange/index.html +++ b/files/en-us/web/api/rtcpeerconnection/onicegatheringstatechange/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.onicegatheringstatechange")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/onidentityresult/index.html b/files/en-us/web/api/rtcpeerconnection/onidentityresult/index.html index bc170a0213334bd..26518de74367f97 100644 --- a/files/en-us/web/api/rtcpeerconnection/onidentityresult/index.html +++ b/files/en-us/web/api/rtcpeerconnection/onidentityresult/index.html @@ -31,8 +31,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.onidentityresult")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/onidpassertionerror/index.html b/files/en-us/web/api/rtcpeerconnection/onidpassertionerror/index.html index 7d80066b2856487..2c06bbd48d69990 100644 --- a/files/en-us/web/api/rtcpeerconnection/onidpassertionerror/index.html +++ b/files/en-us/web/api/rtcpeerconnection/onidpassertionerror/index.html @@ -37,8 +37,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.onidpassertionerror")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/onidpvalidationerror/index.html b/files/en-us/web/api/rtcpeerconnection/onidpvalidationerror/index.html index d35aca3fc69f1ee..04a79e8de5cd33e 100644 --- a/files/en-us/web/api/rtcpeerconnection/onidpvalidationerror/index.html +++ b/files/en-us/web/api/rtcpeerconnection/onidpvalidationerror/index.html @@ -40,8 +40,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.onidpvalidationerror")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/onnegotiationneeded/index.html b/files/en-us/web/api/rtcpeerconnection/onnegotiationneeded/index.html index 2e2f91ec2db7464..0dbd30b42fcfe06 100644 --- a/files/en-us/web/api/rtcpeerconnection/onnegotiationneeded/index.html +++ b/files/en-us/web/api/rtcpeerconnection/onnegotiationneeded/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.onnegotiationneeded")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/onpeeridentity/index.html b/files/en-us/web/api/rtcpeerconnection/onpeeridentity/index.html index 066bd580a16efb1..de8e98f1f3b624b 100644 --- a/files/en-us/web/api/rtcpeerconnection/onpeeridentity/index.html +++ b/files/en-us/web/api/rtcpeerconnection/onpeeridentity/index.html @@ -41,8 +41,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.onpeeridentity")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/onremovestream/index.html b/files/en-us/web/api/rtcpeerconnection/onremovestream/index.html index 9967a7076291ad3..cc23b5a7bb09cd0 100644 --- a/files/en-us/web/api/rtcpeerconnection/onremovestream/index.html +++ b/files/en-us/web/api/rtcpeerconnection/onremovestream/index.html @@ -35,8 +35,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.onremovestream")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/onsignalingstatechange/index.html b/files/en-us/web/api/rtcpeerconnection/onsignalingstatechange/index.html index 8aafe039801a228..7cbd311780398eb 100644 --- a/files/en-us/web/api/rtcpeerconnection/onsignalingstatechange/index.html +++ b/files/en-us/web/api/rtcpeerconnection/onsignalingstatechange/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.onsignalingstatechange")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/ontrack/index.html b/files/en-us/web/api/rtcpeerconnection/ontrack/index.html index 28c128a043cf82b..9a857e58ae641a7 100644 --- a/files/en-us/web/api/rtcpeerconnection/ontrack/index.html +++ b/files/en-us/web/api/rtcpeerconnection/ontrack/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.ontrack")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/peeridentity/index.html b/files/en-us/web/api/rtcpeerconnection/peeridentity/index.html index 589d7cdbe5fb383..3e125ce0dad94bd 100644 --- a/files/en-us/web/api/rtcpeerconnection/peeridentity/index.html +++ b/files/en-us/web/api/rtcpeerconnection/peeridentity/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.peerIdentity")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/peeridentity_event/index.html b/files/en-us/web/api/rtcpeerconnection/peeridentity_event/index.html index 98ee23ba8c4b324..5ad7fb84b110b5c 100644 --- a/files/en-us/web/api/rtcpeerconnection/peeridentity_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/peeridentity_event/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.peeridentity_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/pendinglocaldescription/index.html b/files/en-us/web/api/rtcpeerconnection/pendinglocaldescription/index.html index 85f9ae3b47d9474..11ea48ed72cda02 100644 --- a/files/en-us/web/api/rtcpeerconnection/pendinglocaldescription/index.html +++ b/files/en-us/web/api/rtcpeerconnection/pendinglocaldescription/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.pendingLocalDescription")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/pendingremotedescription/index.html b/files/en-us/web/api/rtcpeerconnection/pendingremotedescription/index.html index ba57fc0c3aba612..bf95bba727031cf 100644 --- a/files/en-us/web/api/rtcpeerconnection/pendingremotedescription/index.html +++ b/files/en-us/web/api/rtcpeerconnection/pendingremotedescription/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.pendingRemoteDescription")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/remotedescription/index.html b/files/en-us/web/api/rtcpeerconnection/remotedescription/index.html index 527eab9aba37df8..22af9e0ebdb5f38 100644 --- a/files/en-us/web/api/rtcpeerconnection/remotedescription/index.html +++ b/files/en-us/web/api/rtcpeerconnection/remotedescription/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.remoteDescription")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/removestream/index.html b/files/en-us/web/api/rtcpeerconnection/removestream/index.html index 0c2a2dcd43c0bb9..cc2523401b53cc1 100644 --- a/files/en-us/web/api/rtcpeerconnection/removestream/index.html +++ b/files/en-us/web/api/rtcpeerconnection/removestream/index.html @@ -48,8 +48,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.removeStream")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/removestream_event/index.html b/files/en-us/web/api/rtcpeerconnection/removestream_event/index.html index 03e75f46ebf4a4a..539c03d67dc7858 100644 --- a/files/en-us/web/api/rtcpeerconnection/removestream_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/removestream_event/index.html @@ -48,8 +48,6 @@

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.removestream_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/removetrack/index.html b/files/en-us/web/api/rtcpeerconnection/removetrack/index.html index ac57e974e9da762..6f96058e5220896 100644 --- a/files/en-us/web/api/rtcpeerconnection/removetrack/index.html +++ b/files/en-us/web/api/rtcpeerconnection/removetrack/index.html @@ -78,8 +78,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.removeTrack")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/restartice/index.html b/files/en-us/web/api/rtcpeerconnection/restartice/index.html index 5583885420fb85e..46b5e4bebece0a4 100644 --- a/files/en-us/web/api/rtcpeerconnection/restartice/index.html +++ b/files/en-us/web/api/rtcpeerconnection/restartice/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.restartIce")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/rtcpeerconnection/index.html b/files/en-us/web/api/rtcpeerconnection/rtcpeerconnection/index.html index 6aeb3a5f7f12703..8f6a38ae3c58094 100644 --- a/files/en-us/web/api/rtcpeerconnection/rtcpeerconnection/index.html +++ b/files/en-us/web/api/rtcpeerconnection/rtcpeerconnection/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.RTCPeerConnection")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/sctp/index.html b/files/en-us/web/api/rtcpeerconnection/sctp/index.html index b7a855a07ff2b89..5aa271ed1c952cb 100644 --- a/files/en-us/web/api/rtcpeerconnection/sctp/index.html +++ b/files/en-us/web/api/rtcpeerconnection/sctp/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.sctp")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/setconfiguration/index.html b/files/en-us/web/api/rtcpeerconnection/setconfiguration/index.html index 61e74e698ee98bd..2f42cb59b252413 100644 --- a/files/en-us/web/api/rtcpeerconnection/setconfiguration/index.html +++ b/files/en-us/web/api/rtcpeerconnection/setconfiguration/index.html @@ -93,7 +93,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCPeerConnection.setConfiguration")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection/setidentityprovider/index.html b/files/en-us/web/api/rtcpeerconnection/setidentityprovider/index.html index 7d056a0d4f1ece3..de17b776cd734c8 100644 --- a/files/en-us/web/api/rtcpeerconnection/setidentityprovider/index.html +++ b/files/en-us/web/api/rtcpeerconnection/setidentityprovider/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.setIdentityProvider")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/setlocaldescription/index.html b/files/en-us/web/api/rtcpeerconnection/setlocaldescription/index.html index d81e4ffdb1d4416..88dac7a12a069ca 100644 --- a/files/en-us/web/api/rtcpeerconnection/setlocaldescription/index.html +++ b/files/en-us/web/api/rtcpeerconnection/setlocaldescription/index.html @@ -139,8 +139,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.setLocalDescription")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/setremotedescription/index.html b/files/en-us/web/api/rtcpeerconnection/setremotedescription/index.html index 4d7d5262fef2eba..5e44ba679f904f6 100644 --- a/files/en-us/web/api/rtcpeerconnection/setremotedescription/index.html +++ b/files/en-us/web/api/rtcpeerconnection/setremotedescription/index.html @@ -171,8 +171,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.setRemoteDescription")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/signalingstate/index.html b/files/en-us/web/api/rtcpeerconnection/signalingstate/index.html index 8b3307741a0541a..670864a26728af5 100644 --- a/files/en-us/web/api/rtcpeerconnection/signalingstate/index.html +++ b/files/en-us/web/api/rtcpeerconnection/signalingstate/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.signalingState")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/signalingstatechange_event/index.html b/files/en-us/web/api/rtcpeerconnection/signalingstatechange_event/index.html index 59879415ffff237..319b613e88e6a61 100644 --- a/files/en-us/web/api/rtcpeerconnection/signalingstatechange_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/signalingstatechange_event/index.html @@ -80,8 +80,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.signalingstatechange_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnection/track_event/index.html b/files/en-us/web/api/rtcpeerconnection/track_event/index.html index 89247fdca5295da..053bce2ff1c713d 100644 --- a/files/en-us/web/api/rtcpeerconnection/track_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection/track_event/index.html @@ -91,6 +91,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.track_event")}}

    diff --git a/files/en-us/web/api/rtcpeerconnection_idpvalidationerror_event/index.html b/files/en-us/web/api/rtcpeerconnection_idpvalidationerror_event/index.html index d5ad2fbd134e4f8..ae23e5ed86f15b3 100644 --- a/files/en-us/web/api/rtcpeerconnection_idpvalidationerror_event/index.html +++ b/files/en-us/web/api/rtcpeerconnection_idpvalidationerror_event/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnection.idpvalidationerror_event")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnectioniceerrorevent/address/index.html b/files/en-us/web/api/rtcpeerconnectioniceerrorevent/address/index.html index 194db3014c71352..7356a35903d05e4 100644 --- a/files/en-us/web/api/rtcpeerconnectioniceerrorevent/address/index.html +++ b/files/en-us/web/api/rtcpeerconnectioniceerrorevent/address/index.html @@ -63,6 +63,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCPeerConnectionIceErrorEvent.address")}}

    diff --git a/files/en-us/web/api/rtcpeerconnectioniceerrorevent/index.html b/files/en-us/web/api/rtcpeerconnectioniceerrorevent/index.html index fafafb6c2d7aabf..003805f2c402a7d 100644 --- a/files/en-us/web/api/rtcpeerconnectioniceerrorevent/index.html +++ b/files/en-us/web/api/rtcpeerconnectioniceerrorevent/index.html @@ -74,6 +74,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCPeerConnectionIceErrorEvent")}}

    diff --git a/files/en-us/web/api/rtcpeerconnectioniceevent/candidate/index.html b/files/en-us/web/api/rtcpeerconnectioniceevent/candidate/index.html index 2cf2d673a99846c..f562bc50668eb7e 100644 --- a/files/en-us/web/api/rtcpeerconnectioniceevent/candidate/index.html +++ b/files/en-us/web/api/rtcpeerconnectioniceevent/candidate/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnectionIceEvent.candidate")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnectioniceevent/index.html b/files/en-us/web/api/rtcpeerconnectioniceevent/index.html index 7399f8c01c1c446..cb047204b17c221 100644 --- a/files/en-us/web/api/rtcpeerconnectioniceevent/index.html +++ b/files/en-us/web/api/rtcpeerconnectioniceevent/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnectionIceEvent")}}

    See also

    diff --git a/files/en-us/web/api/rtcpeerconnectioniceevent/rtcpeerconnectioniceevent/index.html b/files/en-us/web/api/rtcpeerconnectioniceevent/rtcpeerconnectioniceevent/index.html index 0f472b34bc3236c..fbd6b26f6792b1b 100644 --- a/files/en-us/web/api/rtcpeerconnectioniceevent/rtcpeerconnectioniceevent/index.html +++ b/files/en-us/web/api/rtcpeerconnectioniceevent/rtcpeerconnectioniceevent/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCPeerConnectionIceEvent.RTCPeerConnectionIceEvent")}}

    See also

    diff --git a/files/en-us/web/api/rtcremoteoutboundrtpstreamstats/index.html b/files/en-us/web/api/rtcremoteoutboundrtpstreamstats/index.html index 4f75f1b11b16b7c..4d8210237fb6323 100644 --- a/files/en-us/web/api/rtcremoteoutboundrtpstreamstats/index.html +++ b/files/en-us/web/api/rtcremoteoutboundrtpstreamstats/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRemoteOutboundRtpStreamStats")}}

    diff --git a/files/en-us/web/api/rtcremoteoutboundrtpstreamstats/localid/index.html b/files/en-us/web/api/rtcremoteoutboundrtpstreamstats/localid/index.html index 06f5ee4c7c8598f..b0adbc929646ed5 100644 --- a/files/en-us/web/api/rtcremoteoutboundrtpstreamstats/localid/index.html +++ b/files/en-us/web/api/rtcremoteoutboundrtpstreamstats/localid/index.html @@ -181,6 +181,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRemoteOutboundRtpStreamStats.localId")}}

    diff --git a/files/en-us/web/api/rtcrtcpparameters/index.html b/files/en-us/web/api/rtcrtcpparameters/index.html index 048970a0bd000df..1ac22fc11519eed 100644 --- a/files/en-us/web/api/rtcrtcpparameters/index.html +++ b/files/en-us/web/api/rtcrtcpparameters/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtcpParameters")}}

    diff --git a/files/en-us/web/api/rtcrtpcapabilities/index.html b/files/en-us/web/api/rtcrtpcapabilities/index.html index 25e40fd1966e766..7941a433e777142 100644 --- a/files/en-us/web/api/rtcrtpcapabilities/index.html +++ b/files/en-us/web/api/rtcrtpcapabilities/index.html @@ -79,6 +79,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpCapabilities")}}

    diff --git a/files/en-us/web/api/rtcrtpcodeccapability/index.html b/files/en-us/web/api/rtcrtpcodeccapability/index.html index 6ba1c120d203345..8ecb70334c7582f 100644 --- a/files/en-us/web/api/rtcrtpcodeccapability/index.html +++ b/files/en-us/web/api/rtcrtpcodeccapability/index.html @@ -61,6 +61,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpCodecCapability")}}

    diff --git a/files/en-us/web/api/rtcrtpcontributingsource/audiolevel/index.html b/files/en-us/web/api/rtcrtpcontributingsource/audiolevel/index.html index 924e65fb8fab584..e29a8a249a85eed 100644 --- a/files/en-us/web/api/rtcrtpcontributingsource/audiolevel/index.html +++ b/files/en-us/web/api/rtcrtpcontributingsource/audiolevel/index.html @@ -53,6 +53,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpContributingSource.audioLevel")}}

    diff --git a/files/en-us/web/api/rtcrtpcontributingsource/index.html b/files/en-us/web/api/rtcrtpcontributingsource/index.html index 3b5b4b1180d45df..b8e4868d2aa6049 100644 --- a/files/en-us/web/api/rtcrtpcontributingsource/index.html +++ b/files/en-us/web/api/rtcrtpcontributingsource/index.html @@ -52,6 +52,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpContributingSource")}}

    diff --git a/files/en-us/web/api/rtcrtpcontributingsource/rtptimestamp/index.html b/files/en-us/web/api/rtcrtpcontributingsource/rtptimestamp/index.html index cf244e7ac869815..7892987ae527d80 100644 --- a/files/en-us/web/api/rtcrtpcontributingsource/rtptimestamp/index.html +++ b/files/en-us/web/api/rtcrtpcontributingsource/rtptimestamp/index.html @@ -49,6 +49,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpContributingSource.rtpTimestamp")}}

    diff --git a/files/en-us/web/api/rtcrtpcontributingsource/source/index.html b/files/en-us/web/api/rtcrtpcontributingsource/source/index.html index 6864c5f9586e5c9..bd289224c65415c 100644 --- a/files/en-us/web/api/rtcrtpcontributingsource/source/index.html +++ b/files/en-us/web/api/rtcrtpcontributingsource/source/index.html @@ -43,6 +43,5 @@

    Browser Compatibility

    -

    {{Compat("api.RTCRtpContributingSource.source")}}

    diff --git a/files/en-us/web/api/rtcrtpcontributingsource/timestamp/index.html b/files/en-us/web/api/rtcrtpcontributingsource/timestamp/index.html index 706f03c62850a7e..7556198900f5341 100644 --- a/files/en-us/web/api/rtcrtpcontributingsource/timestamp/index.html +++ b/files/en-us/web/api/rtcrtpcontributingsource/timestamp/index.html @@ -43,6 +43,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpContributingSource.timestamp")}}

    diff --git a/files/en-us/web/api/rtcrtpencodingparameters/index.html b/files/en-us/web/api/rtcrtpencodingparameters/index.html index 73247b75992f90d..6fcbedd7f44caa6 100644 --- a/files/en-us/web/api/rtcrtpencodingparameters/index.html +++ b/files/en-us/web/api/rtcrtpencodingparameters/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpEncodingParameters")}}

    See also

    diff --git a/files/en-us/web/api/rtcrtpencodingparameters/maxbitrate/index.html b/files/en-us/web/api/rtcrtpencodingparameters/maxbitrate/index.html index 22734ef4e82df43..74dbd620b8a5f31 100644 --- a/files/en-us/web/api/rtcrtpencodingparameters/maxbitrate/index.html +++ b/files/en-us/web/api/rtcrtpencodingparameters/maxbitrate/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpEncodingParameters.maxBitrate")}}

    See also

    diff --git a/files/en-us/web/api/rtcrtpencodingparameters/scaleresolutiondownby/index.html b/files/en-us/web/api/rtcrtpencodingparameters/scaleresolutiondownby/index.html index 5455b89574c3bed..69fda94d9ecd7ad 100644 --- a/files/en-us/web/api/rtcrtpencodingparameters/scaleresolutiondownby/index.html +++ b/files/en-us/web/api/rtcrtpencodingparameters/scaleresolutiondownby/index.html @@ -60,6 +60,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpEncodingParameters.scaleResolutionDownBy")}}

    diff --git a/files/en-us/web/api/rtcrtpparameters/index.html b/files/en-us/web/api/rtcrtpparameters/index.html index 11577f7c08c887b..b2740670be08b79 100644 --- a/files/en-us/web/api/rtcrtpparameters/index.html +++ b/files/en-us/web/api/rtcrtpparameters/index.html @@ -68,6 +68,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpReceiveParameters")}}

    diff --git a/files/en-us/web/api/rtcrtpreceiveparameters/index.html b/files/en-us/web/api/rtcrtpreceiveparameters/index.html index 838ccffb74608d1..dcc8d3495b75fb6 100644 --- a/files/en-us/web/api/rtcrtpreceiveparameters/index.html +++ b/files/en-us/web/api/rtcrtpreceiveparameters/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpReceiveParameters")}}

    See also

    diff --git a/files/en-us/web/api/rtcrtpreceiver/getcapabilities/index.html b/files/en-us/web/api/rtcrtpreceiver/getcapabilities/index.html index 883f364fb39a26f..3fe8976e873589b 100644 --- a/files/en-us/web/api/rtcrtpreceiver/getcapabilities/index.html +++ b/files/en-us/web/api/rtcrtpreceiver/getcapabilities/index.html @@ -94,6 +94,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpReceiver.getCapabilities")}}

    diff --git a/files/en-us/web/api/rtcrtpreceiver/getcontributingsources/index.html b/files/en-us/web/api/rtcrtpreceiver/getcontributingsources/index.html index bb22b24ccf126d7..1cd320640506d09 100644 --- a/files/en-us/web/api/rtcrtpreceiver/getcontributingsources/index.html +++ b/files/en-us/web/api/rtcrtpreceiver/getcontributingsources/index.html @@ -49,6 +49,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpReceiver.getContributingSources")}}

    diff --git a/files/en-us/web/api/rtcrtpreceiver/getparameters/index.html b/files/en-us/web/api/rtcrtpreceiver/getparameters/index.html index aa88f1cda6e04ea..a372c4d048df451 100644 --- a/files/en-us/web/api/rtcrtpreceiver/getparameters/index.html +++ b/files/en-us/web/api/rtcrtpreceiver/getparameters/index.html @@ -62,6 +62,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpReceiver.getParameters")}}

    diff --git a/files/en-us/web/api/rtcrtpreceiver/getstats/index.html b/files/en-us/web/api/rtcrtpreceiver/getstats/index.html index 4082eccfbc62264..5abfc51d7dfa31f 100644 --- a/files/en-us/web/api/rtcrtpreceiver/getstats/index.html +++ b/files/en-us/web/api/rtcrtpreceiver/getstats/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpReceiver.getStats")}}

    See also

    diff --git a/files/en-us/web/api/rtcrtpreceiver/getsynchronizationsources/index.html b/files/en-us/web/api/rtcrtpreceiver/getsynchronizationsources/index.html index 1e0d3542256a85f..ea1a395178569f9 100644 --- a/files/en-us/web/api/rtcrtpreceiver/getsynchronizationsources/index.html +++ b/files/en-us/web/api/rtcrtpreceiver/getsynchronizationsources/index.html @@ -52,6 +52,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpReceiver.getSynchronizationSources")}}

    diff --git a/files/en-us/web/api/rtcrtpreceiver/index.html b/files/en-us/web/api/rtcrtpreceiver/index.html index 0e1902de65ef57f..895e1a2bb29bed9 100644 --- a/files/en-us/web/api/rtcrtpreceiver/index.html +++ b/files/en-us/web/api/rtcrtpreceiver/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpReceiver")}}

    See also

    diff --git a/files/en-us/web/api/rtcrtpreceiver/track/index.html b/files/en-us/web/api/rtcrtpreceiver/track/index.html index 4725ff88dab36fe..99e8a4d67bc3d99 100644 --- a/files/en-us/web/api/rtcrtpreceiver/track/index.html +++ b/files/en-us/web/api/rtcrtpreceiver/track/index.html @@ -46,6 +46,5 @@

    Browser Compatibility

    -

    {{Compat("api.RTCRtpReceiver.track")}}

    diff --git a/files/en-us/web/api/rtcrtpreceiver/transport/index.html b/files/en-us/web/api/rtcrtpreceiver/transport/index.html index b2dc201839cb5ec..1f4aa73b701fc44 100644 --- a/files/en-us/web/api/rtcrtpreceiver/transport/index.html +++ b/files/en-us/web/api/rtcrtpreceiver/transport/index.html @@ -58,6 +58,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpReceiver.transport")}}

    diff --git a/files/en-us/web/api/rtcrtpsender/dtmf/index.html b/files/en-us/web/api/rtcrtpsender/dtmf/index.html index 2768c36b925deb1..f3100da36726301 100644 --- a/files/en-us/web/api/rtcrtpsender/dtmf/index.html +++ b/files/en-us/web/api/rtcrtpsender/dtmf/index.html @@ -53,7 +53,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpSender.dtmf")}}

    diff --git a/files/en-us/web/api/rtcrtpsender/getcapabilities/index.html b/files/en-us/web/api/rtcrtpsender/getcapabilities/index.html index 8d7b6f693c9e0ba..15629036b878082 100644 --- a/files/en-us/web/api/rtcrtpsender/getcapabilities/index.html +++ b/files/en-us/web/api/rtcrtpsender/getcapabilities/index.html @@ -91,6 +91,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpSender.getCapabilities")}}

    diff --git a/files/en-us/web/api/rtcrtpsender/getparameters/index.html b/files/en-us/web/api/rtcrtpsender/getparameters/index.html index 93ce8c5b3bac648..3a679ee7f3eeb58 100644 --- a/files/en-us/web/api/rtcrtpsender/getparameters/index.html +++ b/files/en-us/web/api/rtcrtpsender/getparameters/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpSender.getParameters")}}

    diff --git a/files/en-us/web/api/rtcrtpsender/getstats/index.html b/files/en-us/web/api/rtcrtpsender/getstats/index.html index e76deb3619dfffa..7e882890bff41db 100644 --- a/files/en-us/web/api/rtcrtpsender/getstats/index.html +++ b/files/en-us/web/api/rtcrtpsender/getstats/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpSender.getStats")}}

    See also

    diff --git a/files/en-us/web/api/rtcrtpsender/index.html b/files/en-us/web/api/rtcrtpsender/index.html index f883d49d9328102..001f4bde05d072e 100644 --- a/files/en-us/web/api/rtcrtpsender/index.html +++ b/files/en-us/web/api/rtcrtpsender/index.html @@ -43,8 +43,6 @@

    Obsolete properties

    Methods

    - -
    {{domxref("RTCRtpSender.getParameters()")}}
    Returns a {{domxref("RTCRtpParameters")}} object describing the current configuration for the encoding and transmission of media on the track.
    @@ -86,7 +84,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpSender")}}

    diff --git a/files/en-us/web/api/rtcrtpsender/replacetrack/index.html b/files/en-us/web/api/rtcrtpsender/replacetrack/index.html index 4ee379cdaee400a..624a0b85bf85143 100644 --- a/files/en-us/web/api/rtcrtpsender/replacetrack/index.html +++ b/files/en-us/web/api/rtcrtpsender/replacetrack/index.html @@ -117,7 +117,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpSender.replaceTrack")}}

    diff --git a/files/en-us/web/api/rtcrtpsender/setparameters/index.html b/files/en-us/web/api/rtcrtpsender/setparameters/index.html index 1181f7d0e258ab8..3d99043a7122a75 100644 --- a/files/en-us/web/api/rtcrtpsender/setparameters/index.html +++ b/files/en-us/web/api/rtcrtpsender/setparameters/index.html @@ -151,8 +151,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpSender.setParameters")}}

    See also

    diff --git a/files/en-us/web/api/rtcrtpsender/setstreams/index.html b/files/en-us/web/api/rtcrtpsender/setstreams/index.html index 74029744a9f702f..13ce62280699292 100644 --- a/files/en-us/web/api/rtcrtpsender/setstreams/index.html +++ b/files/en-us/web/api/rtcrtpsender/setstreams/index.html @@ -89,6 +89,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpSender.setStreams")}}

    diff --git a/files/en-us/web/api/rtcrtpsender/track/index.html b/files/en-us/web/api/rtcrtpsender/track/index.html index 3a210c35af5d071..988acea253b4a23 100644 --- a/files/en-us/web/api/rtcrtpsender/track/index.html +++ b/files/en-us/web/api/rtcrtpsender/track/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpSender.track")}}

    diff --git a/files/en-us/web/api/rtcrtpsender/transport/index.html b/files/en-us/web/api/rtcrtpsender/transport/index.html index f6d408786ecc33e..c4aa773209daa81 100644 --- a/files/en-us/web/api/rtcrtpsender/transport/index.html +++ b/files/en-us/web/api/rtcrtpsender/transport/index.html @@ -58,6 +58,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpSender.transport")}}

    diff --git a/files/en-us/web/api/rtcrtpsendparameters/encodings/index.html b/files/en-us/web/api/rtcrtpsendparameters/encodings/index.html index 737bb19cbaf780f..942a02de56ca886 100644 --- a/files/en-us/web/api/rtcrtpsendparameters/encodings/index.html +++ b/files/en-us/web/api/rtcrtpsendparameters/encodings/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpSendParameters.encodings")}}

    diff --git a/files/en-us/web/api/rtcrtpsendparameters/index.html b/files/en-us/web/api/rtcrtpsendparameters/index.html index 41c21528e291300..155b64cfe8a91aa 100644 --- a/files/en-us/web/api/rtcrtpsendparameters/index.html +++ b/files/en-us/web/api/rtcrtpsendparameters/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpSendParameters")}}

    See also

    diff --git a/files/en-us/web/api/rtcrtpstreamstats/codecid/index.html b/files/en-us/web/api/rtcrtpstreamstats/codecid/index.html index 4e9b8d609ad9ef5..2e2498a64502729 100644 --- a/files/en-us/web/api/rtcrtpstreamstats/codecid/index.html +++ b/files/en-us/web/api/rtcrtpstreamstats/codecid/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpStreamStats.codecId")}}

    diff --git a/files/en-us/web/api/rtcrtpstreamstats/fircount/index.html b/files/en-us/web/api/rtcrtpstreamstats/fircount/index.html index 595f006f44bbcf8..960df80a87fd0ff 100644 --- a/files/en-us/web/api/rtcrtpstreamstats/fircount/index.html +++ b/files/en-us/web/api/rtcrtpstreamstats/fircount/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpStreamStats.firCount")}}

    diff --git a/files/en-us/web/api/rtcrtpstreamstats/index.html b/files/en-us/web/api/rtcrtpstreamstats/index.html index 7827c9df5b67bd4..5311910ff81d25e 100644 --- a/files/en-us/web/api/rtcrtpstreamstats/index.html +++ b/files/en-us/web/api/rtcrtpstreamstats/index.html @@ -84,6 +84,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpStreamStats")}}

    diff --git a/files/en-us/web/api/rtcrtpstreamstats/kind/index.html b/files/en-us/web/api/rtcrtpstreamstats/kind/index.html index ce631ccbcdb2e35..a554f688bff231a 100644 --- a/files/en-us/web/api/rtcrtpstreamstats/kind/index.html +++ b/files/en-us/web/api/rtcrtpstreamstats/kind/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpStreamStats.kind")}}

    diff --git a/files/en-us/web/api/rtcrtpstreamstats/nackcount/index.html b/files/en-us/web/api/rtcrtpstreamstats/nackcount/index.html index d49fadfd5e81311..264a7fcade7ac92 100644 --- a/files/en-us/web/api/rtcrtpstreamstats/nackcount/index.html +++ b/files/en-us/web/api/rtcrtpstreamstats/nackcount/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpStreamStats.nackCount")}}

    diff --git a/files/en-us/web/api/rtcrtpstreamstats/plicount/index.html b/files/en-us/web/api/rtcrtpstreamstats/plicount/index.html index fea2157e60ad793..e978e088115fad9 100644 --- a/files/en-us/web/api/rtcrtpstreamstats/plicount/index.html +++ b/files/en-us/web/api/rtcrtpstreamstats/plicount/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpStreamStats.pliCount")}}

    See also

    @@ -73,6 +71,5 @@

    See also

    • {{RFC(4585, "6.3.1")}}: Definition of "PLI messages" in the document Extended RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/AVPF). -
    diff --git a/files/en-us/web/api/rtcrtpstreamstats/qpsum/index.html b/files/en-us/web/api/rtcrtpstreamstats/qpsum/index.html index ff6f92a8608329a..449c2babf9d8d56 100644 --- a/files/en-us/web/api/rtcrtpstreamstats/qpsum/index.html +++ b/files/en-us/web/api/rtcrtpstreamstats/qpsum/index.html @@ -95,6 +95,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpStreamStats.qpSum")}}

    diff --git a/files/en-us/web/api/rtcrtpstreamstats/slicount/index.html b/files/en-us/web/api/rtcrtpstreamstats/slicount/index.html index c87be0752d19609..561ae5a707992b8 100644 --- a/files/en-us/web/api/rtcrtpstreamstats/slicount/index.html +++ b/files/en-us/web/api/rtcrtpstreamstats/slicount/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpStreamStats.sliCount")}}

    See also

    @@ -71,6 +69,5 @@

    See also

    • {{RFC(4585, "6.3.2")}}: Definition of "Slice Loss Indication" in the document Extended RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/AVPF). -
    diff --git a/files/en-us/web/api/rtcrtpstreamstats/ssrc/index.html b/files/en-us/web/api/rtcrtpstreamstats/ssrc/index.html index 1f91766251d2673..464a7a1280c4914 100644 --- a/files/en-us/web/api/rtcrtpstreamstats/ssrc/index.html +++ b/files/en-us/web/api/rtcrtpstreamstats/ssrc/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpStreamStats.ssrc")}}

    diff --git a/files/en-us/web/api/rtcrtpstreamstats/trackid/index.html b/files/en-us/web/api/rtcrtpstreamstats/trackid/index.html index 5b9cfbf8d14bded..d5af3b17cb6b7e6 100644 --- a/files/en-us/web/api/rtcrtpstreamstats/trackid/index.html +++ b/files/en-us/web/api/rtcrtpstreamstats/trackid/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpStreamStats.trackId")}}

    diff --git a/files/en-us/web/api/rtcrtpstreamstats/transportid/index.html b/files/en-us/web/api/rtcrtpstreamstats/transportid/index.html index 3c4c4cd180ca91c..18788625ef78066 100644 --- a/files/en-us/web/api/rtcrtpstreamstats/transportid/index.html +++ b/files/en-us/web/api/rtcrtpstreamstats/transportid/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCRtpStreamStats.transportId")}}

    diff --git a/files/en-us/web/api/rtcrtpsynchronizationsource/index.html b/files/en-us/web/api/rtcrtpsynchronizationsource/index.html index a2e9f5af8f08c11..da53d085c88be74 100644 --- a/files/en-us/web/api/rtcrtpsynchronizationsource/index.html +++ b/files/en-us/web/api/rtcrtpsynchronizationsource/index.html @@ -52,6 +52,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpSynchronizationSource")}}

    diff --git a/files/en-us/web/api/rtcrtpsynchronizationsource/voiceactivityflag/index.html b/files/en-us/web/api/rtcrtpsynchronizationsource/voiceactivityflag/index.html index 1b82e842618d193..a052cc508b50fd3 100644 --- a/files/en-us/web/api/rtcrtpsynchronizationsource/voiceactivityflag/index.html +++ b/files/en-us/web/api/rtcrtpsynchronizationsource/voiceactivityflag/index.html @@ -32,6 +32,5 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpSynchronizationSource.voiceActivityFlag")}}

    diff --git a/files/en-us/web/api/rtcrtptransceiver/currentdirection/index.html b/files/en-us/web/api/rtcrtptransceiver/currentdirection/index.html index 0c88beadfe2f36a..be5d1a0900f34ec 100644 --- a/files/en-us/web/api/rtcrtptransceiver/currentdirection/index.html +++ b/files/en-us/web/api/rtcrtptransceiver/currentdirection/index.html @@ -48,7 +48,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpTransceiver.currentDirection")}}

    diff --git a/files/en-us/web/api/rtcrtptransceiver/direction/index.html b/files/en-us/web/api/rtcrtptransceiver/direction/index.html index 02b4482ffb84c19..78875fdc8b9886f 100644 --- a/files/en-us/web/api/rtcrtptransceiver/direction/index.html +++ b/files/en-us/web/api/rtcrtptransceiver/direction/index.html @@ -71,7 +71,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpTransceiver.direction")}}

    diff --git a/files/en-us/web/api/rtcrtptransceiver/index.html b/files/en-us/web/api/rtcrtptransceiver/index.html index 5f596eccae5b370..82294f3846311a2 100644 --- a/files/en-us/web/api/rtcrtptransceiver/index.html +++ b/files/en-us/web/api/rtcrtptransceiver/index.html @@ -68,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpTransceiver")}}

    diff --git a/files/en-us/web/api/rtcrtptransceiver/mid/index.html b/files/en-us/web/api/rtcrtptransceiver/mid/index.html index a831c67e22566a5..6470ea63b3c4365 100644 --- a/files/en-us/web/api/rtcrtptransceiver/mid/index.html +++ b/files/en-us/web/api/rtcrtptransceiver/mid/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpTransceiver.mid")}}

    diff --git a/files/en-us/web/api/rtcrtptransceiver/receiver/index.html b/files/en-us/web/api/rtcrtptransceiver/receiver/index.html index 57aa8c86909cb52..a8e42e3d87a8252 100644 --- a/files/en-us/web/api/rtcrtptransceiver/receiver/index.html +++ b/files/en-us/web/api/rtcrtptransceiver/receiver/index.html @@ -44,7 +44,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpTransceiver.receiver")}}

    diff --git a/files/en-us/web/api/rtcrtptransceiver/sender/index.html b/files/en-us/web/api/rtcrtptransceiver/sender/index.html index ed4c71bcaf9ad47..520ae193f435fc4 100644 --- a/files/en-us/web/api/rtcrtptransceiver/sender/index.html +++ b/files/en-us/web/api/rtcrtptransceiver/sender/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpTransceiver.sender")}}

    diff --git a/files/en-us/web/api/rtcrtptransceiver/setcodecpreferences/index.html b/files/en-us/web/api/rtcrtptransceiver/setcodecpreferences/index.html index f16c82f00cfa333..6bbd47d966b6800 100644 --- a/files/en-us/web/api/rtcrtptransceiver/setcodecpreferences/index.html +++ b/files/en-us/web/api/rtcrtptransceiver/setcodecpreferences/index.html @@ -86,7 +86,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpTransceiver.setCodecPreferences")}}

    diff --git a/files/en-us/web/api/rtcrtptransceiver/stop/index.html b/files/en-us/web/api/rtcrtptransceiver/stop/index.html index e2cd733fdc7a9f0..324fb90c39bcdf3 100644 --- a/files/en-us/web/api/rtcrtptransceiver/stop/index.html +++ b/files/en-us/web/api/rtcrtptransceiver/stop/index.html @@ -72,7 +72,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpTransceiver.stop")}}

    diff --git a/files/en-us/web/api/rtcrtptransceiver/stopped/index.html b/files/en-us/web/api/rtcrtptransceiver/stopped/index.html index f6519876d377e6e..654e43a68896947 100644 --- a/files/en-us/web/api/rtcrtptransceiver/stopped/index.html +++ b/files/en-us/web/api/rtcrtptransceiver/stopped/index.html @@ -55,7 +55,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpTransceiver.stopped")}}

    diff --git a/files/en-us/web/api/rtcrtptransceiverdirection/index.html b/files/en-us/web/api/rtcrtptransceiverdirection/index.html index 73fc6144eb399f6..8d029eafe2b9a62 100644 --- a/files/en-us/web/api/rtcrtptransceiverdirection/index.html +++ b/files/en-us/web/api/rtcrtptransceiverdirection/index.html @@ -81,7 +81,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpTransceiverDirection")}}

    diff --git a/files/en-us/web/api/rtcrtptransceiverinit/index.html b/files/en-us/web/api/rtcrtptransceiverinit/index.html index 11b87b9c9dc0198..fc30e0b8abe6a78 100644 --- a/files/en-us/web/api/rtcrtptransceiverinit/index.html +++ b/files/en-us/web/api/rtcrtptransceiverinit/index.html @@ -50,7 +50,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCRtpTransceiverInit")}}

    diff --git a/files/en-us/web/api/rtcsctptransport/index.html b/files/en-us/web/api/rtcsctptransport/index.html index d52586260a41e17..4ebcd3d807b7b9e 100644 --- a/files/en-us/web/api/rtcsctptransport/index.html +++ b/files/en-us/web/api/rtcsctptransport/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCSctpTransport")}}

    See also

    diff --git a/files/en-us/web/api/rtcsctptransport/state/index.html b/files/en-us/web/api/rtcsctptransport/state/index.html index b8f5a69819c2a38..514a2d63dc9ef21 100644 --- a/files/en-us/web/api/rtcsctptransport/state/index.html +++ b/files/en-us/web/api/rtcsctptransport/state/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCSctpTransport.state")}}

    See also

    diff --git a/files/en-us/web/api/rtcsessiondescription/index.html b/files/en-us/web/api/rtcsessiondescription/index.html index 14d30fd3d3d9e33..231843d945776fd 100644 --- a/files/en-us/web/api/rtcsessiondescription/index.html +++ b/files/en-us/web/api/rtcsessiondescription/index.html @@ -114,8 +114,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCSessionDescription")}}

    See also

    diff --git a/files/en-us/web/api/rtcsessiondescription/rtcsessiondescription/index.html b/files/en-us/web/api/rtcsessiondescription/rtcsessiondescription/index.html index ed37276dfcdb0cb..c2ea77fd346b88f 100644 --- a/files/en-us/web/api/rtcsessiondescription/rtcsessiondescription/index.html +++ b/files/en-us/web/api/rtcsessiondescription/rtcsessiondescription/index.html @@ -80,8 +80,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCSessionDescription.RTCSessionDescription")}}

    See also

    diff --git a/files/en-us/web/api/rtcsessiondescription/sdp/index.html b/files/en-us/web/api/rtcsessiondescription/sdp/index.html index 338e53ad7761604..aa69e4b250b60d4 100644 --- a/files/en-us/web/api/rtcsessiondescription/sdp/index.html +++ b/files/en-us/web/api/rtcsessiondescription/sdp/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCSessionDescription.sdp")}}

    See also

    diff --git a/files/en-us/web/api/rtcsessiondescription/tojson/index.html b/files/en-us/web/api/rtcsessiondescription/tojson/index.html index f236b64f827a276..ccb55b582b5e8f6 100644 --- a/files/en-us/web/api/rtcsessiondescription/tojson/index.html +++ b/files/en-us/web/api/rtcsessiondescription/tojson/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCSessionDescription.toJSON")}}

    See also

    diff --git a/files/en-us/web/api/rtcsessiondescription/type/index.html b/files/en-us/web/api/rtcsessiondescription/type/index.html index a24e7acad4390d3..e4b176617945198 100644 --- a/files/en-us/web/api/rtcsessiondescription/type/index.html +++ b/files/en-us/web/api/rtcsessiondescription/type/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCSessionDescription.type")}}

    See also

    diff --git a/files/en-us/web/api/rtcsessiondescriptioncallback/index.html b/files/en-us/web/api/rtcsessiondescriptioncallback/index.html index 9d3f4b2065dd4b6..ffc5a72cff860be 100644 --- a/files/en-us/web/api/rtcsessiondescriptioncallback/index.html +++ b/files/en-us/web/api/rtcsessiondescriptioncallback/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.RTCSessionDescriptionCallback")}}

    diff --git a/files/en-us/web/api/rtcstats/id/index.html b/files/en-us/web/api/rtcstats/id/index.html index 5b7db512684c965..2c2a8c3c9b36eb7 100644 --- a/files/en-us/web/api/rtcstats/id/index.html +++ b/files/en-us/web/api/rtcstats/id/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCStats.id")}}

    diff --git a/files/en-us/web/api/rtcstats/index.html b/files/en-us/web/api/rtcstats/index.html index 411d4e1d8e18712..2ed7ed613c05ccf 100644 --- a/files/en-us/web/api/rtcstats/index.html +++ b/files/en-us/web/api/rtcstats/index.html @@ -76,6 +76,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCStats")}}

    diff --git a/files/en-us/web/api/rtcstats/timestamp/index.html b/files/en-us/web/api/rtcstats/timestamp/index.html index 14e00709dc95448..82481849967bddb 100644 --- a/files/en-us/web/api/rtcstats/timestamp/index.html +++ b/files/en-us/web/api/rtcstats/timestamp/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCStats.timestamp")}}

    diff --git a/files/en-us/web/api/rtcstats/type/index.html b/files/en-us/web/api/rtcstats/type/index.html index ba9a058a33590d0..1b844c770312c29 100644 --- a/files/en-us/web/api/rtcstats/type/index.html +++ b/files/en-us/web/api/rtcstats/type/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCStats.type")}}

    diff --git a/files/en-us/web/api/rtcstatsicecandidatepairstate/index.html b/files/en-us/web/api/rtcstatsicecandidatepairstate/index.html index d3e3edbdeaaad9d..71538e4d204fcb1 100644 --- a/files/en-us/web/api/rtcstatsicecandidatepairstate/index.html +++ b/files/en-us/web/api/rtcstatsicecandidatepairstate/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCStatsIceCandidatePairState")}}

    diff --git a/files/en-us/web/api/rtcstatsreport/index.html b/files/en-us/web/api/rtcstatsreport/index.html index df2fdebdded0ed3..5df296af1cc9c4e 100644 --- a/files/en-us/web/api/rtcstatsreport/index.html +++ b/files/en-us/web/api/rtcstatsreport/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCStatsReport")}}

    See also

    diff --git a/files/en-us/web/api/rtcstatstype/index.html b/files/en-us/web/api/rtcstatstype/index.html index 4dd6367a3296193..9ca75ecab1268a1 100644 --- a/files/en-us/web/api/rtcstatstype/index.html +++ b/files/en-us/web/api/rtcstatstype/index.html @@ -76,6 +76,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCStatsType")}}

    diff --git a/files/en-us/web/api/rtctrackevent/index.html b/files/en-us/web/api/rtctrackevent/index.html index ddca9676e6cc484..8f8f940817d113e 100644 --- a/files/en-us/web/api/rtctrackevent/index.html +++ b/files/en-us/web/api/rtctrackevent/index.html @@ -87,6 +87,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCTrackEvent")}}

    diff --git a/files/en-us/web/api/rtctrackevent/receiver/index.html b/files/en-us/web/api/rtctrackevent/receiver/index.html index 9a0c081c154a33b..de4dbcdb0d2d778 100644 --- a/files/en-us/web/api/rtctrackevent/receiver/index.html +++ b/files/en-us/web/api/rtctrackevent/receiver/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCTrackEvent.receiver")}}

    diff --git a/files/en-us/web/api/rtctrackevent/rtctrackevent/index.html b/files/en-us/web/api/rtctrackevent/rtctrackevent/index.html index 5dad3bcd52d6b5f..3fd7fc4bd3a8993 100644 --- a/files/en-us/web/api/rtctrackevent/rtctrackevent/index.html +++ b/files/en-us/web/api/rtctrackevent/rtctrackevent/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCTrackEvent.RTCTrackEvent")}}

     

    diff --git a/files/en-us/web/api/rtctrackevent/streams/index.html b/files/en-us/web/api/rtctrackevent/streams/index.html index 0c7c8a81fdcc2b6..433abf4cd952a89 100644 --- a/files/en-us/web/api/rtctrackevent/streams/index.html +++ b/files/en-us/web/api/rtctrackevent/streams/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCTrackEvent.streams")}}

    diff --git a/files/en-us/web/api/rtctrackevent/track/index.html b/files/en-us/web/api/rtctrackevent/track/index.html index 39c58deddf356a8..07ebf75f91bf504 100644 --- a/files/en-us/web/api/rtctrackevent/track/index.html +++ b/files/en-us/web/api/rtctrackevent/track/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCTrackEvent.track")}}

    diff --git a/files/en-us/web/api/rtctrackevent/transceiver/index.html b/files/en-us/web/api/rtctrackevent/transceiver/index.html index 4bb313df9a8edc8..825c20a2a5096ee 100644 --- a/files/en-us/web/api/rtctrackevent/transceiver/index.html +++ b/files/en-us/web/api/rtctrackevent/transceiver/index.html @@ -50,6 +50,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCTrackEvent.transceiver")}}

    diff --git a/files/en-us/web/api/rtctrackeventinit/index.html b/files/en-us/web/api/rtctrackeventinit/index.html index e766d44e6942576..cb9d85bea3a9bd6 100644 --- a/files/en-us/web/api/rtctrackeventinit/index.html +++ b/files/en-us/web/api/rtctrackeventinit/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCTrackEventInit")}}

    diff --git a/files/en-us/web/api/rtctrackeventinit/receiver/index.html b/files/en-us/web/api/rtctrackeventinit/receiver/index.html index 99df2daab86f54b..462f5d170d201b3 100644 --- a/files/en-us/web/api/rtctrackeventinit/receiver/index.html +++ b/files/en-us/web/api/rtctrackeventinit/receiver/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCTrackEventInit.receiver")}}

    diff --git a/files/en-us/web/api/rtctrackeventinit/streams/index.html b/files/en-us/web/api/rtctrackeventinit/streams/index.html index bcf02290a815918..227459368049dd5 100644 --- a/files/en-us/web/api/rtctrackeventinit/streams/index.html +++ b/files/en-us/web/api/rtctrackeventinit/streams/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCTrackEventInit.streams")}}

    diff --git a/files/en-us/web/api/rtctrackeventinit/track/index.html b/files/en-us/web/api/rtctrackeventinit/track/index.html index 83047ef6581005a..692d2ba27cbd6b6 100644 --- a/files/en-us/web/api/rtctrackeventinit/track/index.html +++ b/files/en-us/web/api/rtctrackeventinit/track/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCTrackEventInit.track")}}

    diff --git a/files/en-us/web/api/rtctrackeventinit/transceiver/index.html b/files/en-us/web/api/rtctrackeventinit/transceiver/index.html index 708ae6d186cfc21..04554d865cde1ae 100644 --- a/files/en-us/web/api/rtctrackeventinit/transceiver/index.html +++ b/files/en-us/web/api/rtctrackeventinit/transceiver/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.RTCTrackEventInit.transceiver")}}

    diff --git a/files/en-us/web/api/sanitizer/index.html b/files/en-us/web/api/sanitizer/index.html index a0ade519be9fc36..af3e13b1ca3c013 100644 --- a/files/en-us/web/api/sanitizer/index.html +++ b/files/en-us/web/api/sanitizer/index.html @@ -8,7 +8,6 @@ ---
    {{draft}}{{securecontext_header}}{{DefaultAPISidebar("HTML Sanitizer API")}}
    -

    The Sanitizer interface of the {{domxref('HTML Sanitizer API')}} allows developers to take untrusted strings of HTML, and sanitize them for safe insertion into a document’s DOM.

    Constructors

    @@ -58,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sanitizer")}}

    diff --git a/files/en-us/web/api/sanitizer/sanitize/index.html b/files/en-us/web/api/sanitizer/sanitize/index.html index cbb6089a0a22123..8fc45ae80da63d7 100644 --- a/files/en-us/web/api/sanitizer/sanitize/index.html +++ b/files/en-us/web/api/sanitizer/sanitize/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sanitizer.sanitize")}}

    diff --git a/files/en-us/web/api/sanitizer/sanitizer/index.html b/files/en-us/web/api/sanitizer/sanitizer/index.html index 0f9eb47e408efcb..f2aedf67807060d 100644 --- a/files/en-us/web/api/sanitizer/sanitizer/index.html +++ b/files/en-us/web/api/sanitizer/sanitizer/index.html @@ -8,7 +8,6 @@ ---
    {{draft}}{{securecontext_header}}{{DefaultAPISidebar("HTML Sanitizer API")}}
    -

    The Sanitizer() constructor creates a new {{domxref("sanitizer")}} object which allows developers to take untrusted strings of HTML, and sanitize them for safe insertion into a document’s DOM.

    Syntax

    @@ -77,6 +76,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sanitizer.Sanitizer")}}

    diff --git a/files/en-us/web/api/sanitizer/sanitizetostring/index.html b/files/en-us/web/api/sanitizer/sanitizetostring/index.html index fa65bddc8b7746e..e69f2c21f127f17 100644 --- a/files/en-us/web/api/sanitizer/sanitizetostring/index.html +++ b/files/en-us/web/api/sanitizer/sanitizetostring/index.html @@ -60,6 +60,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sanitizer.sanitizeToString")}}

    diff --git a/files/en-us/web/api/screen/availheight/index.html b/files/en-us/web/api/screen/availheight/index.html index eb8d6656245b8a7..f6480e355a54154 100644 --- a/files/en-us/web/api/screen/availheight/index.html +++ b/files/en-us/web/api/screen/availheight/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen.availHeight")}}

    See also

    diff --git a/files/en-us/web/api/screen/availleft/index.html b/files/en-us/web/api/screen/availleft/index.html index 3d6a66ae6309c2f..e10af9f31cd860a 100644 --- a/files/en-us/web/api/screen/availleft/index.html +++ b/files/en-us/web/api/screen/availleft/index.html @@ -38,6 +38,4 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.Screen.availLeft")}}

    diff --git a/files/en-us/web/api/screen/availtop/index.html b/files/en-us/web/api/screen/availtop/index.html index 60b3e9586d0a409..7d8f49a422898e0 100644 --- a/files/en-us/web/api/screen/availtop/index.html +++ b/files/en-us/web/api/screen/availtop/index.html @@ -31,6 +31,4 @@

    Notes

    Browser compatibility

    - -

    {{Compat("api.Screen.availTop")}}

    diff --git a/files/en-us/web/api/screen/availwidth/index.html b/files/en-us/web/api/screen/availwidth/index.html index 804393d46305c27..29a16fb7dd79841 100644 --- a/files/en-us/web/api/screen/availwidth/index.html +++ b/files/en-us/web/api/screen/availwidth/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen.availWidth")}}

    diff --git a/files/en-us/web/api/screen/colordepth/index.html b/files/en-us/web/api/screen/colordepth/index.html index a1a15783d520e22..239fe55cba19929 100644 --- a/files/en-us/web/api/screen/colordepth/index.html +++ b/files/en-us/web/api/screen/colordepth/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen.colorDepth")}}

    See also

    diff --git a/files/en-us/web/api/screen/height/index.html b/files/en-us/web/api/screen/height/index.html index a602fee4870db5f..5f36147a4965e40 100644 --- a/files/en-us/web/api/screen/height/index.html +++ b/files/en-us/web/api/screen/height/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen.height")}}

    diff --git a/files/en-us/web/api/screen/index.html b/files/en-us/web/api/screen/index.html index c0ffd07b40ffa2e..ff537d0c7a6a6e6 100644 --- a/files/en-us/web/api/screen/index.html +++ b/files/en-us/web/api/screen/index.html @@ -94,6 +94,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen")}}

    diff --git a/files/en-us/web/api/screen/left/index.html b/files/en-us/web/api/screen/left/index.html index 3a31b199fd5b674..13149c238a4294c 100644 --- a/files/en-us/web/api/screen/left/index.html +++ b/files/en-us/web/api/screen/left/index.html @@ -21,8 +21,6 @@

    Syntax

    Browser compatibility

    - -

    {{Compat("api.Screen.left")}}

    See also

    diff --git a/files/en-us/web/api/screen/lockorientation/index.html b/files/en-us/web/api/screen/lockorientation/index.html index c0645474ff776e9..ec668314ed42aa7 100644 --- a/files/en-us/web/api/screen/lockorientation/index.html +++ b/files/en-us/web/api/screen/lockorientation/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen.lockOrientation")}}

    See also

    diff --git a/files/en-us/web/api/screen/mozbrightness/index.html b/files/en-us/web/api/screen/mozbrightness/index.html index 4816d3e0d9762f3..3ed4bcb819fd678 100644 --- a/files/en-us/web/api/screen/mozbrightness/index.html +++ b/files/en-us/web/api/screen/mozbrightness/index.html @@ -24,6 +24,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen.mozBrightness")}}

    diff --git a/files/en-us/web/api/screen/mozenabled/index.html b/files/en-us/web/api/screen/mozenabled/index.html index c201495dad6532a..d7888b244633054 100644 --- a/files/en-us/web/api/screen/mozenabled/index.html +++ b/files/en-us/web/api/screen/mozenabled/index.html @@ -24,6 +24,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen.mozEnabled")}}

    diff --git a/files/en-us/web/api/screen/onorientationchange/index.html b/files/en-us/web/api/screen/onorientationchange/index.html index c8cf7075c263185..7e6b63d972cda8f 100644 --- a/files/en-us/web/api/screen/onorientationchange/index.html +++ b/files/en-us/web/api/screen/onorientationchange/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen.onorientationchange")}}

    See also

    diff --git a/files/en-us/web/api/screen/pixeldepth/index.html b/files/en-us/web/api/screen/pixeldepth/index.html index 0d360f0ccef1937..1df882047b92cae 100644 --- a/files/en-us/web/api/screen/pixeldepth/index.html +++ b/files/en-us/web/api/screen/pixeldepth/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen.pixelDepth")}}

    See also

    diff --git a/files/en-us/web/api/screen/top/index.html b/files/en-us/web/api/screen/top/index.html index 436b8266bdce2da..1a29c4282542fd5 100644 --- a/files/en-us/web/api/screen/top/index.html +++ b/files/en-us/web/api/screen/top/index.html @@ -25,8 +25,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen.top")}}

    See also

    diff --git a/files/en-us/web/api/screen/unlockorientation/index.html b/files/en-us/web/api/screen/unlockorientation/index.html index 603615f02a713d2..d4a1b665883de4d 100644 --- a/files/en-us/web/api/screen/unlockorientation/index.html +++ b/files/en-us/web/api/screen/unlockorientation/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen.unlockOrientation")}}

    See also

    diff --git a/files/en-us/web/api/screen/width/index.html b/files/en-us/web/api/screen/width/index.html index d02ecb4c825e3c4..f4a618294e6c4ed 100644 --- a/files/en-us/web/api/screen/width/index.html +++ b/files/en-us/web/api/screen/width/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Screen.width")}}

    diff --git a/files/en-us/web/api/screen_capture_api/index.html b/files/en-us/web/api/screen_capture_api/index.html index f9dba0838a624ed..fdd0ebbea049e63 100644 --- a/files/en-us/web/api/screen_capture_api/index.html +++ b/files/en-us/web/api/screen_capture_api/index.html @@ -118,7 +118,6 @@

    Browser compatibility

    -

    {{Compat("api.MediaDevices.getDisplayMedia")}}

    diff --git a/files/en-us/web/api/screen_orientation_api/index.html b/files/en-us/web/api/screen_orientation_api/index.html index 30574bfedacde69..49d432849ac0e14 100644 --- a/files/en-us/web/api/screen_orientation_api/index.html +++ b/files/en-us/web/api/screen_orientation_api/index.html @@ -44,6 +44,4 @@

    Browser Compatibility

    {{DOMxRef("ScreenOrientation")}}

    - -

    {{Compat("api.ScreenOrientation")}}

    diff --git a/files/en-us/web/api/screen_wake_lock_api/index.html b/files/en-us/web/api/screen_wake_lock_api/index.html index 9d3d66a0ef01415..1a0d964c8b57b56 100644 --- a/files/en-us/web/api/screen_wake_lock_api/index.html +++ b/files/en-us/web/api/screen_wake_lock_api/index.html @@ -136,7 +136,6 @@

    Browser compatibility

    -

    {{Compat("api.WakeLock")}}

    See also

    diff --git a/files/en-us/web/api/screenorientation/angle/index.html b/files/en-us/web/api/screenorientation/angle/index.html index 89000177ce51e50..9a9ab7ae1212ad0 100644 --- a/files/en-us/web/api/screenorientation/angle/index.html +++ b/files/en-us/web/api/screenorientation/angle/index.html @@ -43,6 +43,5 @@

    Browser Compatibility

    -

    {{Compat("api.ScreenOrientation.angle")}}

    diff --git a/files/en-us/web/api/screenorientation/index.html b/files/en-us/web/api/screenorientation/index.html index 463fc9025b22f83..02b22c68137473b 100644 --- a/files/en-us/web/api/screenorientation/index.html +++ b/files/en-us/web/api/screenorientation/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.ScreenOrientation")}}

    diff --git a/files/en-us/web/api/screenorientation/lock/index.html b/files/en-us/web/api/screenorientation/lock/index.html index e89a0d62733f113..fbb4608d1793dad 100644 --- a/files/en-us/web/api/screenorientation/lock/index.html +++ b/files/en-us/web/api/screenorientation/lock/index.html @@ -61,6 +61,5 @@

    Browser Compatibility

    -

    {{Compat("api.ScreenOrientation.lock")}}

    diff --git a/files/en-us/web/api/screenorientation/onchange/index.html b/files/en-us/web/api/screenorientation/onchange/index.html index 5814a08124c4537..68b0cb766a2f675 100644 --- a/files/en-us/web/api/screenorientation/onchange/index.html +++ b/files/en-us/web/api/screenorientation/onchange/index.html @@ -40,6 +40,5 @@

    Browser Compatibility

    -

    {{Compat("api.ScreenOrientation.onchange")}}

    diff --git a/files/en-us/web/api/screenorientation/type/index.html b/files/en-us/web/api/screenorientation/type/index.html index be5f1f6ca90f68d..b170e35b90d20a9 100644 --- a/files/en-us/web/api/screenorientation/type/index.html +++ b/files/en-us/web/api/screenorientation/type/index.html @@ -43,6 +43,5 @@

    Browser Compatibility

    -

    {{Compat("api.ScreenOrientation.type")}}

    diff --git a/files/en-us/web/api/screenorientation/unlock/index.html b/files/en-us/web/api/screenorientation/unlock/index.html index 6756fb8c7b2f90d..d80d24df3f5b664 100644 --- a/files/en-us/web/api/screenorientation/unlock/index.html +++ b/files/en-us/web/api/screenorientation/unlock/index.html @@ -47,6 +47,5 @@

    Browser Compatibility

    -

    {{Compat("api.ScreenOrientation.unlock")}}

    diff --git a/files/en-us/web/api/scriptprocessornode/audioprocess_event/index.html b/files/en-us/web/api/scriptprocessornode/audioprocess_event/index.html index fb6d979bebdad0d..14f2af3decc0d31 100644 --- a/files/en-us/web/api/scriptprocessornode/audioprocess_event/index.html +++ b/files/en-us/web/api/scriptprocessornode/audioprocess_event/index.html @@ -86,8 +86,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ScriptProcessorNode.audioprocess_event")}}

    See also

    diff --git a/files/en-us/web/api/scriptprocessornode/buffersize/index.html b/files/en-us/web/api/scriptprocessornode/buffersize/index.html index 17aa8ecc6563b96..2b6d2d872092198 100644 --- a/files/en-us/web/api/scriptprocessornode/buffersize/index.html +++ b/files/en-us/web/api/scriptprocessornode/buffersize/index.html @@ -55,7 +55,6 @@

    Browser compatibility

    -

    {{Compat("api.ScriptProcessorNode.bufferSize")}}

    diff --git a/files/en-us/web/api/scriptprocessornode/index.html b/files/en-us/web/api/scriptprocessornode/index.html index 3dce8fc04bff5ff..7dc97c5e610f061 100644 --- a/files/en-us/web/api/scriptprocessornode/index.html +++ b/files/en-us/web/api/scriptprocessornode/index.html @@ -98,7 +98,6 @@

    Browser compatibility

    -

    {{Compat("api.ScriptProcessorNode")}}

    diff --git a/files/en-us/web/api/scriptprocessornode/onaudioprocess/index.html b/files/en-us/web/api/scriptprocessornode/onaudioprocess/index.html index 22dfd2c53938cd5..ed1ef8918c6b7a2 100644 --- a/files/en-us/web/api/scriptprocessornode/onaudioprocess/index.html +++ b/files/en-us/web/api/scriptprocessornode/onaudioprocess/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.ScriptProcessorNode.onaudioprocess")}}

    diff --git a/files/en-us/web/api/scrolltooptions/behavior/index.html b/files/en-us/web/api/scrolltooptions/behavior/index.html index 896189f69bf1d31..4f136e45d456811 100644 --- a/files/en-us/web/api/scrolltooptions/behavior/index.html +++ b/files/en-us/web/api/scrolltooptions/behavior/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.ScrollToOptions.behavior")}}

    diff --git a/files/en-us/web/api/scrolltooptions/index.html b/files/en-us/web/api/scrolltooptions/index.html index 5c19540ec458eee..b964a0a193f08a9 100644 --- a/files/en-us/web/api/scrolltooptions/index.html +++ b/files/en-us/web/api/scrolltooptions/index.html @@ -72,6 +72,5 @@

    Browser compatibility

    -

    {{Compat("api.ScrollToOptions", 10)}}

    diff --git a/files/en-us/web/api/scrolltooptions/left/index.html b/files/en-us/web/api/scrolltooptions/left/index.html index 1818ae3aa0c0513..434f10a573b464a 100644 --- a/files/en-us/web/api/scrolltooptions/left/index.html +++ b/files/en-us/web/api/scrolltooptions/left/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.ScrollToOptions.left")}}

    diff --git a/files/en-us/web/api/scrolltooptions/top/index.html b/files/en-us/web/api/scrolltooptions/top/index.html index 781f05e049faf2b..2d6a0434fa6790c 100644 --- a/files/en-us/web/api/scrolltooptions/top/index.html +++ b/files/en-us/web/api/scrolltooptions/top/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.ScrollToOptions.top")}}

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/blockeduri/index.html b/files/en-us/web/api/securitypolicyviolationevent/blockeduri/index.html index da512e68291db53..7a9a4ead16cd747 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/blockeduri/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/blockeduri/index.html @@ -50,7 +50,6 @@

    Browser compatibility

    -

    {{Compat("api.SecurityPolicyViolationEvent.blockedURI")}}

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/columnnumber/index.html b/files/en-us/web/api/securitypolicyviolationevent/columnnumber/index.html index f45169e7c664891..5b9a4eb25a54fed 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/columnnumber/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/columnnumber/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SecurityPolicyViolationEvent.columnNumber")}}

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/disposition/index.html b/files/en-us/web/api/securitypolicyviolationevent/disposition/index.html index ccfb33ee4873fa7..25e22825dc86ea0 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/disposition/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/disposition/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SecurityPolicyViolationEvent.disposition")}}

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/documenturi/index.html b/files/en-us/web/api/securitypolicyviolationevent/documenturi/index.html index a9cde2e851c36e5..88f597e7ee4adc0 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/documenturi/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/documenturi/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SecurityPolicyViolationEvent.documentURI")}}

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/effectivedirective/index.html b/files/en-us/web/api/securitypolicyviolationevent/effectivedirective/index.html index 50b7f2cfe0f6bdf..ade0cc8bb14312d 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/effectivedirective/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/effectivedirective/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SecurityPolicyViolationEvent.effectiveDirective")}}

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/index.html b/files/en-us/web/api/securitypolicyviolationevent/index.html index 2e6eccd26099556..4f7f68d8aafe38a 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/index.html @@ -85,7 +85,6 @@

    Browser compatibility

    -

    {{Compat("api.SecurityPolicyViolationEvent")}}

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/linenumber/index.html b/files/en-us/web/api/securitypolicyviolationevent/linenumber/index.html index 3e0ee9d167d8254..b2267b0956852a5 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/linenumber/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/linenumber/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SecurityPolicyViolationEvent.lineNumber")}}

    See also

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/originalpolicy/index.html b/files/en-us/web/api/securitypolicyviolationevent/originalpolicy/index.html index a99052781bac593..7ea76110068b7bd 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/originalpolicy/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/originalpolicy/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SecurityPolicyViolationEvent.originalPolicy")}}

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/referrer/index.html b/files/en-us/web/api/securitypolicyviolationevent/referrer/index.html index b619c3f51190005..12e7aaa4087e75d 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/referrer/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/referrer/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SecurityPolicyViolationEvent.referrer")}}

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/sample/index.html b/files/en-us/web/api/securitypolicyviolationevent/sample/index.html index 9a2c9d77778745c..f4d165768749a4b 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/sample/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/sample/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SecurityPolicyViolationEvent.sample")}}

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/securitypolicyviolationevent/index.html b/files/en-us/web/api/securitypolicyviolationevent/securitypolicyviolationevent/index.html index 89529c5a0123780..7afb5b2a1cc71bc 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/securitypolicyviolationevent/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/securitypolicyviolationevent/index.html @@ -74,7 +74,6 @@

    Browser compatibility

    -

    {{Compat("api.SecurityPolicyViolationEvent.SecurityPolicyViolationEvent")}}

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/sourcefile/index.html b/files/en-us/web/api/securitypolicyviolationevent/sourcefile/index.html index 66ebbf538581406..efd713828545a03 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/sourcefile/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/sourcefile/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SecurityPolicyViolationEvent.sourceFile")}}

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/statuscode/index.html b/files/en-us/web/api/securitypolicyviolationevent/statuscode/index.html index 97f3e8e69723ad3..92904f7803860ec 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/statuscode/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/statuscode/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SecurityPolicyViolationEvent.statusCode")}}

    See also

    diff --git a/files/en-us/web/api/securitypolicyviolationevent/violateddirective/index.html b/files/en-us/web/api/securitypolicyviolationevent/violateddirective/index.html index 8744691e7f51b58..0975e0977a58c75 100644 --- a/files/en-us/web/api/securitypolicyviolationevent/violateddirective/index.html +++ b/files/en-us/web/api/securitypolicyviolationevent/violateddirective/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SecurityPolicyViolationEvent.violatedDirective")}}

    diff --git a/files/en-us/web/api/selection/addrange/index.html b/files/en-us/web/api/selection/addrange/index.html index 87e4e95a4c47183..badd7e7443e92c6 100644 --- a/files/en-us/web/api/selection/addrange/index.html +++ b/files/en-us/web/api/selection/addrange/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.addRange")}}

    See also

    diff --git a/files/en-us/web/api/selection/anchornode/index.html b/files/en-us/web/api/selection/anchornode/index.html index ac1d6046878b928..0a013b1532c5ad8 100644 --- a/files/en-us/web/api/selection/anchornode/index.html +++ b/files/en-us/web/api/selection/anchornode/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.anchorNode")}}

    See also

    diff --git a/files/en-us/web/api/selection/anchoroffset/index.html b/files/en-us/web/api/selection/anchoroffset/index.html index 0db363f2fb78a7c..1b41e944ac92b11 100644 --- a/files/en-us/web/api/selection/anchoroffset/index.html +++ b/files/en-us/web/api/selection/anchoroffset/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.anchorOffset")}}

    See also

    diff --git a/files/en-us/web/api/selection/collapse/index.html b/files/en-us/web/api/selection/collapse/index.html index dea426729b4e1fe..712cd604e3fcd0d 100644 --- a/files/en-us/web/api/selection/collapse/index.html +++ b/files/en-us/web/api/selection/collapse/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.collapse")}}

    See also

    diff --git a/files/en-us/web/api/selection/collapsetoend/index.html b/files/en-us/web/api/selection/collapsetoend/index.html index 35fb683bbc12044..b564037ff4f452b 100644 --- a/files/en-us/web/api/selection/collapsetoend/index.html +++ b/files/en-us/web/api/selection/collapsetoend/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.collapseToEnd")}}

    See also

    diff --git a/files/en-us/web/api/selection/collapsetostart/index.html b/files/en-us/web/api/selection/collapsetostart/index.html index df96d213561fdad..57759d32f56f289 100644 --- a/files/en-us/web/api/selection/collapsetostart/index.html +++ b/files/en-us/web/api/selection/collapsetostart/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.collapseToStart")}}

    See also

    diff --git a/files/en-us/web/api/selection/containsnode/index.html b/files/en-us/web/api/selection/containsnode/index.html index dba7b30b02e7e8f..83a624462ef622d 100644 --- a/files/en-us/web/api/selection/containsnode/index.html +++ b/files/en-us/web/api/selection/containsnode/index.html @@ -81,8 +81,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.containsNode")}}

    See also

    diff --git a/files/en-us/web/api/selection/deletefromdocument/index.html b/files/en-us/web/api/selection/deletefromdocument/index.html index e389ac18845bc46..f8d0f4cd5fc0d2a 100644 --- a/files/en-us/web/api/selection/deletefromdocument/index.html +++ b/files/en-us/web/api/selection/deletefromdocument/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.deleteFromDocument")}}

    See also

    diff --git a/files/en-us/web/api/selection/extend/index.html b/files/en-us/web/api/selection/extend/index.html index d38df91d9a71a42..fe010ad674b6f16 100644 --- a/files/en-us/web/api/selection/extend/index.html +++ b/files/en-us/web/api/selection/extend/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.extend")}}

    See also

    diff --git a/files/en-us/web/api/selection/focusnode/index.html b/files/en-us/web/api/selection/focusnode/index.html index 3b5685ef6466eae..c293d4890bf3a5b 100644 --- a/files/en-us/web/api/selection/focusnode/index.html +++ b/files/en-us/web/api/selection/focusnode/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.focusNode")}}

    See also

    diff --git a/files/en-us/web/api/selection/focusoffset/index.html b/files/en-us/web/api/selection/focusoffset/index.html index 79014d48b4bfa13..34195ed794a45b7 100644 --- a/files/en-us/web/api/selection/focusoffset/index.html +++ b/files/en-us/web/api/selection/focusoffset/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.focusOffset")}}

    See also

    diff --git a/files/en-us/web/api/selection/getrangeat/index.html b/files/en-us/web/api/selection/getrangeat/index.html index 3bd1c363e2edae7..76dcc5cdd56b1f5 100644 --- a/files/en-us/web/api/selection/getrangeat/index.html +++ b/files/en-us/web/api/selection/getrangeat/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.getRangeAt")}}

    See also

    diff --git a/files/en-us/web/api/selection/index.html b/files/en-us/web/api/selection/index.html index 442bf8725f9d45c..f55afb1a8c30d75 100644 --- a/files/en-us/web/api/selection/index.html +++ b/files/en-us/web/api/selection/index.html @@ -186,8 +186,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection")}}

    Gecko notes

    diff --git a/files/en-us/web/api/selection/iscollapsed/index.html b/files/en-us/web/api/selection/iscollapsed/index.html index ff800d08d91aa77..3cfc985c93a8922 100644 --- a/files/en-us/web/api/selection/iscollapsed/index.html +++ b/files/en-us/web/api/selection/iscollapsed/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.isCollapsed")}}

    See also

    diff --git a/files/en-us/web/api/selection/modify/index.html b/files/en-us/web/api/selection/modify/index.html index dfcb4b4e8dfc82f..453909f1713130e 100644 --- a/files/en-us/web/api/selection/modify/index.html +++ b/files/en-us/web/api/selection/modify/index.html @@ -85,8 +85,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.modify")}}

    See also

    diff --git a/files/en-us/web/api/selection/rangecount/index.html b/files/en-us/web/api/selection/rangecount/index.html index ccf8a5620fbe7ca..ef6f06d04097ac3 100644 --- a/files/en-us/web/api/selection/rangecount/index.html +++ b/files/en-us/web/api/selection/rangecount/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.rangeCount")}}

    See also

    diff --git a/files/en-us/web/api/selection/removeallranges/index.html b/files/en-us/web/api/selection/removeallranges/index.html index e36a237bc1a4651..8af66c879dad413 100644 --- a/files/en-us/web/api/selection/removeallranges/index.html +++ b/files/en-us/web/api/selection/removeallranges/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.removeAllRanges")}}

    See also

    diff --git a/files/en-us/web/api/selection/removerange/index.html b/files/en-us/web/api/selection/removerange/index.html index 90fc8e6a23c7eef..0363a013662fc96 100644 --- a/files/en-us/web/api/selection/removerange/index.html +++ b/files/en-us/web/api/selection/removerange/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.removeRange")}}

    See also

    diff --git a/files/en-us/web/api/selection/selectallchildren/index.html b/files/en-us/web/api/selection/selectallchildren/index.html index 505f64c5553db12..887c8c4876cfc15 100644 --- a/files/en-us/web/api/selection/selectallchildren/index.html +++ b/files/en-us/web/api/selection/selectallchildren/index.html @@ -71,8 +71,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.selectAllChildren")}}

    See also

    diff --git a/files/en-us/web/api/selection/setbaseandextent/index.html b/files/en-us/web/api/selection/setbaseandextent/index.html index 8f4df069c645920..2e0e44dea5f77a7 100644 --- a/files/en-us/web/api/selection/setbaseandextent/index.html +++ b/files/en-us/web/api/selection/setbaseandextent/index.html @@ -124,8 +124,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.setBaseAndExtent")}}

    See also

    diff --git a/files/en-us/web/api/selection/tostring/index.html b/files/en-us/web/api/selection/tostring/index.html index 74ff25127b7fff7..5138484a43b3704 100644 --- a/files/en-us/web/api/selection/tostring/index.html +++ b/files/en-us/web/api/selection/tostring/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.toString")}}

    See also

    diff --git a/files/en-us/web/api/selection/type/index.html b/files/en-us/web/api/selection/type/index.html index 28abc0dda06cfe3..bc2281d4b4d6824 100644 --- a/files/en-us/web/api/selection/type/index.html +++ b/files/en-us/web/api/selection/type/index.html @@ -59,8 +59,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Selection.type")}}

    See also

    diff --git a/files/en-us/web/api/selection_api/index.html b/files/en-us/web/api/selection_api/index.html index 3393e4343e23b5e..542263d8af17ad9 100644 --- a/files/en-us/web/api/selection_api/index.html +++ b/files/en-us/web/api/selection_api/index.html @@ -26,7 +26,6 @@

    Concepts and usage

    Selection API interfaces

    -
    {{domxref("Selection")}}
    Represents the range of text selected by the user or the current position of the caret.
    @@ -43,7 +42,6 @@

    Extensions to other interfaces

    Represents the event handler that is called when a {{event("selectionchange")}} event is fired on the current object (i.e. when the selected text range changes).
    -

    Specifications

    @@ -72,7 +70,6 @@

    Selection

    -

    {{Compat("api.Selection")}}

    diff --git a/files/en-us/web/api/sensor/activated/index.html b/files/en-us/web/api/sensor/activated/index.html index 2fd7c2eeb2b2547..67c9b0800dd0aef 100644 --- a/files/en-us/web/api/sensor/activated/index.html +++ b/files/en-us/web/api/sensor/activated/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sensor.activated")}}

    diff --git a/files/en-us/web/api/sensor/hasreading/index.html b/files/en-us/web/api/sensor/hasreading/index.html index b2c630b2cd7072c..ebaef233715bc40 100644 --- a/files/en-us/web/api/sensor/hasreading/index.html +++ b/files/en-us/web/api/sensor/hasreading/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sensor.hasReading")}}

    diff --git a/files/en-us/web/api/sensor/index.html b/files/en-us/web/api/sensor/index.html index dd69f576d1dab00..61b7c25c784dae2 100644 --- a/files/en-us/web/api/sensor/index.html +++ b/files/en-us/web/api/sensor/index.html @@ -81,6 +81,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sensor")}}

    diff --git a/files/en-us/web/api/sensor/onactivate/index.html b/files/en-us/web/api/sensor/onactivate/index.html index 86ef58ba8214a89..9a981956f27423e 100644 --- a/files/en-us/web/api/sensor/onactivate/index.html +++ b/files/en-us/web/api/sensor/onactivate/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sensor.onactivate")}}

    diff --git a/files/en-us/web/api/sensor/onerror/index.html b/files/en-us/web/api/sensor/onerror/index.html index f2aeaa7ad69af47..019723221470e30 100644 --- a/files/en-us/web/api/sensor/onerror/index.html +++ b/files/en-us/web/api/sensor/onerror/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sensor.onerror")}}

    diff --git a/files/en-us/web/api/sensor/onreading/index.html b/files/en-us/web/api/sensor/onreading/index.html index e30093ddecd7115..88b6546a59f4df4 100644 --- a/files/en-us/web/api/sensor/onreading/index.html +++ b/files/en-us/web/api/sensor/onreading/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sensor.onreading")}}

    diff --git a/files/en-us/web/api/sensor/start/index.html b/files/en-us/web/api/sensor/start/index.html index 4898ab686dbe495..d2acb18353becd4 100644 --- a/files/en-us/web/api/sensor/start/index.html +++ b/files/en-us/web/api/sensor/start/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sensor.start")}}

    diff --git a/files/en-us/web/api/sensor/stop/index.html b/files/en-us/web/api/sensor/stop/index.html index 33e3d0daf2750ef..47f071d2bd68803 100644 --- a/files/en-us/web/api/sensor/stop/index.html +++ b/files/en-us/web/api/sensor/stop/index.html @@ -50,6 +50,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sensor.stop")}}

    diff --git a/files/en-us/web/api/sensor/timestamp/index.html b/files/en-us/web/api/sensor/timestamp/index.html index 54c56f40178c1bf..a91d7831657b34a 100644 --- a/files/en-us/web/api/sensor/timestamp/index.html +++ b/files/en-us/web/api/sensor/timestamp/index.html @@ -44,6 +44,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sensor.timestamp")}}

    diff --git a/files/en-us/web/api/sensor_apis/index.html b/files/en-us/web/api/sensor_apis/index.html index d8935ad018b9780..78bbf617152c970 100644 --- a/files/en-us/web/api/sensor_apis/index.html +++ b/files/en-us/web/api/sensor_apis/index.html @@ -235,6 +235,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Sensor")}}

    diff --git a/files/en-us/web/api/sensorerrorevent/error/index.html b/files/en-us/web/api/sensorerrorevent/error/index.html index e348c64f7c083b4..5d85e1ebeacacc3 100644 --- a/files/en-us/web/api/sensorerrorevent/error/index.html +++ b/files/en-us/web/api/sensorerrorevent/error/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SensorErrorEvent.error")}}

    diff --git a/files/en-us/web/api/sensorerrorevent/index.html b/files/en-us/web/api/sensorerrorevent/index.html index 56f3296a9dee0f7..09e798e71b33250 100644 --- a/files/en-us/web/api/sensorerrorevent/index.html +++ b/files/en-us/web/api/sensorerrorevent/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SensorErrorEvent")}}

    diff --git a/files/en-us/web/api/sensorerrorevent/sensorerrorevent/index.html b/files/en-us/web/api/sensorerrorevent/sensorerrorevent/index.html index 46871c720a7b192..9b4966aa29751e3 100644 --- a/files/en-us/web/api/sensorerrorevent/sensorerrorevent/index.html +++ b/files/en-us/web/api/sensorerrorevent/sensorerrorevent/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SensorErrorEvent.SensorErrorEvent")}}

    diff --git a/files/en-us/web/api/server-sent_events/using_server-sent_events/index.html b/files/en-us/web/api/server-sent_events/using_server-sent_events/index.html index 0e6f9048a2f5643..a93751b6bc5a01d 100644 --- a/files/en-us/web/api/server-sent_events/using_server-sent_events/index.html +++ b/files/en-us/web/api/server-sent_events/using_server-sent_events/index.html @@ -198,7 +198,6 @@

    EventSource

    -

    {{Compat("api.EventSource")}}

    diff --git a/files/en-us/web/api/serviceworker/index.html b/files/en-us/web/api/serviceworker/index.html index 5c747673b572ce1..48ef3c0bca451de 100644 --- a/files/en-us/web/api/serviceworker/index.html +++ b/files/en-us/web/api/serviceworker/index.html @@ -94,7 +94,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorker")}}

    diff --git a/files/en-us/web/api/serviceworker/onstatechange/index.html b/files/en-us/web/api/serviceworker/onstatechange/index.html index 581bfb2d1194a49..c5e6c953a8adf77 100644 --- a/files/en-us/web/api/serviceworker/onstatechange/index.html +++ b/files/en-us/web/api/serviceworker/onstatechange/index.html @@ -75,6 +75,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorker.onstatechange")}}

    diff --git a/files/en-us/web/api/serviceworker/scripturl/index.html b/files/en-us/web/api/serviceworker/scripturl/index.html index f8986c93baaf980..32fa3e2edc2cd64 100644 --- a/files/en-us/web/api/serviceworker/scripturl/index.html +++ b/files/en-us/web/api/serviceworker/scripturl/index.html @@ -47,6 +47,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorker.scriptURL")}}

    diff --git a/files/en-us/web/api/serviceworker/state/index.html b/files/en-us/web/api/serviceworker/state/index.html index 829c28b9f32a962..0efa065c2e0a57a 100644 --- a/files/en-us/web/api/serviceworker/state/index.html +++ b/files/en-us/web/api/serviceworker/state/index.html @@ -66,6 +66,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorker.state")}}

    diff --git a/files/en-us/web/api/serviceworkercontainer/controller/index.html b/files/en-us/web/api/serviceworkercontainer/controller/index.html index 36a3b0a5a9a21f7..cfc6cff3a84847c 100644 --- a/files/en-us/web/api/serviceworkercontainer/controller/index.html +++ b/files/en-us/web/api/serviceworkercontainer/controller/index.html @@ -58,6 +58,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerContainer.controller")}}

    diff --git a/files/en-us/web/api/serviceworkercontainer/getregistration/index.html b/files/en-us/web/api/serviceworkercontainer/getregistration/index.html index cee0e07e12fb2f1..d49b7e9191f961f 100644 --- a/files/en-us/web/api/serviceworkercontainer/getregistration/index.html +++ b/files/en-us/web/api/serviceworkercontainer/getregistration/index.html @@ -58,6 +58,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerContainer.getRegistration")}}

    diff --git a/files/en-us/web/api/serviceworkercontainer/getregistrations/index.html b/files/en-us/web/api/serviceworkercontainer/getregistrations/index.html index 9e002de1864861e..8c2baeb347225d8 100644 --- a/files/en-us/web/api/serviceworkercontainer/getregistrations/index.html +++ b/files/en-us/web/api/serviceworkercontainer/getregistrations/index.html @@ -53,6 +53,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerContainer.getRegistrations")}}

    diff --git a/files/en-us/web/api/serviceworkercontainer/index.html b/files/en-us/web/api/serviceworkercontainer/index.html index 395da4b6c2f4bb3..794d13ee192db67 100644 --- a/files/en-us/web/api/serviceworkercontainer/index.html +++ b/files/en-us/web/api/serviceworkercontainer/index.html @@ -114,7 +114,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerContainer")}}

    diff --git a/files/en-us/web/api/serviceworkercontainer/message_event/index.html b/files/en-us/web/api/serviceworkercontainer/message_event/index.html index 9c6e6bdddd4fbdc..bce924c9ba15915 100644 --- a/files/en-us/web/api/serviceworkercontainer/message_event/index.html +++ b/files/en-us/web/api/serviceworkercontainer/message_event/index.html @@ -75,7 +75,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerContainer.message_event")}}

    diff --git a/files/en-us/web/api/serviceworkercontainer/oncontrollerchange/index.html b/files/en-us/web/api/serviceworkercontainer/oncontrollerchange/index.html index aee914dfc86baaa..e1bb0309b39c3f9 100644 --- a/files/en-us/web/api/serviceworkercontainer/oncontrollerchange/index.html +++ b/files/en-us/web/api/serviceworkercontainer/oncontrollerchange/index.html @@ -45,6 +45,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerContainer.oncontrollerchange")}}

    diff --git a/files/en-us/web/api/serviceworkercontainer/onerror/index.html b/files/en-us/web/api/serviceworkercontainer/onerror/index.html index 883508e203094d1..af014f34ba5409b 100644 --- a/files/en-us/web/api/serviceworkercontainer/onerror/index.html +++ b/files/en-us/web/api/serviceworkercontainer/onerror/index.html @@ -30,6 +30,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerContainer.onerror")}}

    diff --git a/files/en-us/web/api/serviceworkercontainer/onmessage/index.html b/files/en-us/web/api/serviceworkercontainer/onmessage/index.html index 24437c1c6344a5f..44dcae8a6a1f25f 100644 --- a/files/en-us/web/api/serviceworkercontainer/onmessage/index.html +++ b/files/en-us/web/api/serviceworkercontainer/onmessage/index.html @@ -50,6 +50,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerContainer.onmessage")}}

    diff --git a/files/en-us/web/api/serviceworkercontainer/ready/index.html b/files/en-us/web/api/serviceworkercontainer/ready/index.html index f9cfcbbb1365a4b..649d121856c4bae 100644 --- a/files/en-us/web/api/serviceworkercontainer/ready/index.html +++ b/files/en-us/web/api/serviceworkercontainer/ready/index.html @@ -57,6 +57,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerContainer.ready")}}

    diff --git a/files/en-us/web/api/serviceworkercontainer/register/index.html b/files/en-us/web/api/serviceworkercontainer/register/index.html index c8c8ab2501af6e1..80b32999b738153 100644 --- a/files/en-us/web/api/serviceworkercontainer/register/index.html +++ b/files/en-us/web/api/serviceworkercontainer/register/index.html @@ -113,6 +113,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerContainer.register")}}

    diff --git a/files/en-us/web/api/serviceworkercontainer/startmessages/index.html b/files/en-us/web/api/serviceworkercontainer/startmessages/index.html index d94110d94944130..e0771ce2b422991 100644 --- a/files/en-us/web/api/serviceworkercontainer/startmessages/index.html +++ b/files/en-us/web/api/serviceworkercontainer/startmessages/index.html @@ -71,6 +71,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerContainer.startMessages")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/activate_event/index.html b/files/en-us/web/api/serviceworkerglobalscope/activate_event/index.html index 7c91db17552f45e..330f5d4a4a5a346 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/activate_event/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/activate_event/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerGlobalScope.activate_event")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/caches/index.html b/files/en-us/web/api/serviceworkerglobalscope/caches/index.html index beacf48cad874b2..65f801f8faf3072 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/caches/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/caches/index.html @@ -43,7 +43,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerGlobalScope.caches")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/clients/index.html b/files/en-us/web/api/serviceworkerglobalscope/clients/index.html index 415e904fbfd63aa..c2c7d6c34cd54f5 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/clients/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/clients/index.html @@ -48,7 +48,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerGlobalScope.clients")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/contentdelete_event/index.html b/files/en-us/web/api/serviceworkerglobalscope/contentdelete_event/index.html index c6e46622a7ef227..e0a1a5db1660df3 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/contentdelete_event/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/contentdelete_event/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerGlobalScope.contentdelete")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/index.html b/files/en-us/web/api/serviceworkerglobalscope/index.html index 141ef38ae308d84..c44cf37544bb863 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/index.html @@ -135,8 +135,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerGlobalScope")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/install_event/index.html b/files/en-us/web/api/serviceworkerglobalscope/install_event/index.html index 8cc48a037b5a502..078336f62179b80 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/install_event/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/install_event/index.html @@ -82,8 +82,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerGlobalScope.install_event")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/message_event/index.html b/files/en-us/web/api/serviceworkerglobalscope/message_event/index.html index a7c87c4f006e3d1..26a4e30b0213b19 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/message_event/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/message_event/index.html @@ -85,7 +85,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerGlobalScope.message_event")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/notificationclick_event/index.html b/files/en-us/web/api/serviceworkerglobalscope/notificationclick_event/index.html index 518e35f921510f7..ff4ec465e4495a9 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/notificationclick_event/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/notificationclick_event/index.html @@ -98,8 +98,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerGlobalScope.notificationclick_event")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/onactivate/index.html b/files/en-us/web/api/serviceworkerglobalscope/onactivate/index.html index 36d1e9a012691b0..e6edc5b4934f4a1 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/onactivate/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/onactivate/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerGlobalScope.onactivate")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/oncontentdelete/index.html b/files/en-us/web/api/serviceworkerglobalscope/oncontentdelete/index.html index 0023ce156f9ecc7..809b00d6feb8702 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/oncontentdelete/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/oncontentdelete/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerGlobalScope.contentdelete")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/onfetch/index.html b/files/en-us/web/api/serviceworkerglobalscope/onfetch/index.html index 6c7e38e07a7cc60..6a347bcaf063210 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/onfetch/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/onfetch/index.html @@ -71,7 +71,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerGlobalScope.onfetch")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/oninstall/index.html b/files/en-us/web/api/serviceworkerglobalscope/oninstall/index.html index af40a4bb28aad9f..14d7232c6f6cba0 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/oninstall/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/oninstall/index.html @@ -62,7 +62,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerGlobalScope.oninstall")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/onmessage/index.html b/files/en-us/web/api/serviceworkerglobalscope/onmessage/index.html index 88df29a947f0430..b7bd2c2f1e20c17 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/onmessage/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/onmessage/index.html @@ -55,6 +55,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerGlobalScope.onmessage")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/onnotificationclick/index.html b/files/en-us/web/api/serviceworkerglobalscope/onnotificationclick/index.html index 343549fd9429dc0..3c10c84af3582e4 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/onnotificationclick/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/onnotificationclick/index.html @@ -68,6 +68,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerGlobalScope.onnotificationclick")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/onnotificationclose/index.html b/files/en-us/web/api/serviceworkerglobalscope/onnotificationclose/index.html index 0c4caf1fabda1b6..5b8353711cf862f 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/onnotificationclose/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/onnotificationclose/index.html @@ -54,6 +54,5 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerGlobalScope.onnotificationclose")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/onperiodicsync/index.html b/files/en-us/web/api/serviceworkerglobalscope/onperiodicsync/index.html index a3f2abcc5c67e12..a7066455af55c0a 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/onperiodicsync/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/onperiodicsync/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerGlobalScope.periodicsync")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/onpush/index.html b/files/en-us/web/api/serviceworkerglobalscope/onpush/index.html index 2e7802111f23afa..f0a6fe366e6bccf 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/onpush/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/onpush/index.html @@ -72,7 +72,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerGlobalScope.onpush")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/onpushsubscriptionchange/index.html b/files/en-us/web/api/serviceworkerglobalscope/onpushsubscriptionchange/index.html index f49041e8adbaf0e..f37cd0097e61b3c 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/onpushsubscriptionchange/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/onpushsubscriptionchange/index.html @@ -52,7 +52,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerGlobalScope.onpushsubscriptionchange")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/onsync/index.html b/files/en-us/web/api/serviceworkerglobalscope/onsync/index.html index 5299b953a05bae4..711df791296b597 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/onsync/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/onsync/index.html @@ -26,6 +26,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerGlobalScope.onsync")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/push_event/index.html b/files/en-us/web/api/serviceworkerglobalscope/push_event/index.html index 3850ee358d50f0b..c1b9d99d799fb9b 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/push_event/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/push_event/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerGlobalScope.push_event")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/pushsubscriptionchange_event/index.html b/files/en-us/web/api/serviceworkerglobalscope/pushsubscriptionchange_event/index.html index 4c0f0cf75c1f7e5..28a53b14a8d3c49 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/pushsubscriptionchange_event/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/pushsubscriptionchange_event/index.html @@ -99,8 +99,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerGlobalScope.pushsubscriptionchange_event")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/registration/index.html b/files/en-us/web/api/serviceworkerglobalscope/registration/index.html index 09851c43d317cbc..3f9528f76f1ba4e 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/registration/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/registration/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerGlobalScope.registration")}}

    diff --git a/files/en-us/web/api/serviceworkerglobalscope/skipwaiting/index.html b/files/en-us/web/api/serviceworkerglobalscope/skipwaiting/index.html index b0c35fe6bbd1d3b..7c419a1945862b4 100644 --- a/files/en-us/web/api/serviceworkerglobalscope/skipwaiting/index.html +++ b/files/en-us/web/api/serviceworkerglobalscope/skipwaiting/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerGlobalScope.skipWaiting")}}

    diff --git a/files/en-us/web/api/serviceworkermessageevent/data/index.html b/files/en-us/web/api/serviceworkermessageevent/data/index.html index 773d04ed67091cf..2fadfbed936150d 100644 --- a/files/en-us/web/api/serviceworkermessageevent/data/index.html +++ b/files/en-us/web/api/serviceworkermessageevent/data/index.html @@ -50,7 +50,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerMessageEvent.data")}}

    diff --git a/files/en-us/web/api/serviceworkermessageevent/index.html b/files/en-us/web/api/serviceworkermessageevent/index.html index 984a691ccd8a6bc..7aa27b4b4ab06c9 100644 --- a/files/en-us/web/api/serviceworkermessageevent/index.html +++ b/files/en-us/web/api/serviceworkermessageevent/index.html @@ -73,7 +73,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerMessageEvent")}}

    diff --git a/files/en-us/web/api/serviceworkermessageevent/lasteventid/index.html b/files/en-us/web/api/serviceworkermessageevent/lasteventid/index.html index 6f086123d55ec27..7535cfbeed1ec21 100644 --- a/files/en-us/web/api/serviceworkermessageevent/lasteventid/index.html +++ b/files/en-us/web/api/serviceworkermessageevent/lasteventid/index.html @@ -50,7 +50,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerMessageEvent.lastEventId")}}

    diff --git a/files/en-us/web/api/serviceworkermessageevent/origin/index.html b/files/en-us/web/api/serviceworkermessageevent/origin/index.html index 8bf61412366b421..cd8f15bd1693395 100644 --- a/files/en-us/web/api/serviceworkermessageevent/origin/index.html +++ b/files/en-us/web/api/serviceworkermessageevent/origin/index.html @@ -50,7 +50,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerMessageEvent.origin")}}

    diff --git a/files/en-us/web/api/serviceworkermessageevent/ports/index.html b/files/en-us/web/api/serviceworkermessageevent/ports/index.html index cb5823ce947f7e6..19782029bee46d0 100644 --- a/files/en-us/web/api/serviceworkermessageevent/ports/index.html +++ b/files/en-us/web/api/serviceworkermessageevent/ports/index.html @@ -50,7 +50,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerMessageEvent.ports")}}

    diff --git a/files/en-us/web/api/serviceworkermessageevent/serviceworkermessageevent/index.html b/files/en-us/web/api/serviceworkermessageevent/serviceworkermessageevent/index.html index 1e7c17770615553..5fb91c8c5fe0c84 100644 --- a/files/en-us/web/api/serviceworkermessageevent/serviceworkermessageevent/index.html +++ b/files/en-us/web/api/serviceworkermessageevent/serviceworkermessageevent/index.html @@ -53,7 +53,6 @@

    Browser compatibility

    -

    {{Compat("api.ServiceWorkerMessageEvent.ServiceWorkerMessageEvent")}}

    diff --git a/files/en-us/web/api/serviceworkermessageevent/source/index.html b/files/en-us/web/api/serviceworkermessageevent/source/index.html index 9ca219d4d94ac95..a23ea2ea01c7c63 100644 --- a/files/en-us/web/api/serviceworkermessageevent/source/index.html +++ b/files/en-us/web/api/serviceworkermessageevent/source/index.html @@ -48,8 +48,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerMessageEvent.source")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerregistration/active/index.html b/files/en-us/web/api/serviceworkerregistration/active/index.html index 502edd191a9a6cf..583bb0b15e69bc4 100644 --- a/files/en-us/web/api/serviceworkerregistration/active/index.html +++ b/files/en-us/web/api/serviceworkerregistration/active/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.active")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerregistration/getnotifications/index.html b/files/en-us/web/api/serviceworkerregistration/getnotifications/index.html index 7a31cbdbbe6da99..9d5847816e6fc89 100644 --- a/files/en-us/web/api/serviceworkerregistration/getnotifications/index.html +++ b/files/en-us/web/api/serviceworkerregistration/getnotifications/index.html @@ -68,6 +68,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.getNotifications")}}

    diff --git a/files/en-us/web/api/serviceworkerregistration/index.html b/files/en-us/web/api/serviceworkerregistration/index.html index 489dec63ad64489..ee4a50cd9eccafd 100644 --- a/files/en-us/web/api/serviceworkerregistration/index.html +++ b/files/en-us/web/api/serviceworkerregistration/index.html @@ -134,8 +134,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerregistration/index/index.html b/files/en-us/web/api/serviceworkerregistration/index/index.html index d52cb858eea81f8..3324ccc786997d5 100644 --- a/files/en-us/web/api/serviceworkerregistration/index/index.html +++ b/files/en-us/web/api/serviceworkerregistration/index/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.index")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerregistration/installing/index.html b/files/en-us/web/api/serviceworkerregistration/installing/index.html index d8a4a9c22eb745d..5ae4ce0516d376f 100644 --- a/files/en-us/web/api/serviceworkerregistration/installing/index.html +++ b/files/en-us/web/api/serviceworkerregistration/installing/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.installing")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerregistration/navigationpreload/index.html b/files/en-us/web/api/serviceworkerregistration/navigationpreload/index.html index 5c1a78e4eee73f4..7834b6dfa95acfa 100644 --- a/files/en-us/web/api/serviceworkerregistration/navigationpreload/index.html +++ b/files/en-us/web/api/serviceworkerregistration/navigationpreload/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.navigationPreload")}}

    diff --git a/files/en-us/web/api/serviceworkerregistration/onupdatefound/index.html b/files/en-us/web/api/serviceworkerregistration/onupdatefound/index.html index 1cb5ee03735a880..a6537f12bd03823 100644 --- a/files/en-us/web/api/serviceworkerregistration/onupdatefound/index.html +++ b/files/en-us/web/api/serviceworkerregistration/onupdatefound/index.html @@ -41,8 +41,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.onupdatefound")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerregistration/periodicsync/index.html b/files/en-us/web/api/serviceworkerregistration/periodicsync/index.html index c10d0556d111894..1ac53443939cf5d 100644 --- a/files/en-us/web/api/serviceworkerregistration/periodicsync/index.html +++ b/files/en-us/web/api/serviceworkerregistration/periodicsync/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.periodicSync")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerregistration/pushmanager/index.html b/files/en-us/web/api/serviceworkerregistration/pushmanager/index.html index 22119747397f36a..0e73fff36e48f7d 100644 --- a/files/en-us/web/api/serviceworkerregistration/pushmanager/index.html +++ b/files/en-us/web/api/serviceworkerregistration/pushmanager/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.pushManager")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerregistration/scope/index.html b/files/en-us/web/api/serviceworkerregistration/scope/index.html index 8221662393ac5ac..0574eb20f812d2b 100644 --- a/files/en-us/web/api/serviceworkerregistration/scope/index.html +++ b/files/en-us/web/api/serviceworkerregistration/scope/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.scope")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerregistration/shownotification/index.html b/files/en-us/web/api/serviceworkerregistration/shownotification/index.html index 28b48b4a3eaed8b..a7462acc71d9554 100644 --- a/files/en-us/web/api/serviceworkerregistration/shownotification/index.html +++ b/files/en-us/web/api/serviceworkerregistration/shownotification/index.html @@ -102,6 +102,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.showNotification")}}

    diff --git a/files/en-us/web/api/serviceworkerregistration/sync/index.html b/files/en-us/web/api/serviceworkerregistration/sync/index.html index 23ba9a5f4ca0677..ba32ce5f68aa93b 100644 --- a/files/en-us/web/api/serviceworkerregistration/sync/index.html +++ b/files/en-us/web/api/serviceworkerregistration/sync/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.sync")}}

    diff --git a/files/en-us/web/api/serviceworkerregistration/unregister/index.html b/files/en-us/web/api/serviceworkerregistration/unregister/index.html index fd51d4d94485cc6..56a1697dc9c7ec8 100644 --- a/files/en-us/web/api/serviceworkerregistration/unregister/index.html +++ b/files/en-us/web/api/serviceworkerregistration/unregister/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.unregister")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerregistration/update/index.html b/files/en-us/web/api/serviceworkerregistration/update/index.html index b6d9a35f6a49dba..e23c9611ddce977 100644 --- a/files/en-us/web/api/serviceworkerregistration/update/index.html +++ b/files/en-us/web/api/serviceworkerregistration/update/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.update")}}

    See also

    diff --git a/files/en-us/web/api/serviceworkerregistration/waiting/index.html b/files/en-us/web/api/serviceworkerregistration/waiting/index.html index f282d85208839fc..3d6d4a72413e57c 100644 --- a/files/en-us/web/api/serviceworkerregistration/waiting/index.html +++ b/files/en-us/web/api/serviceworkerregistration/waiting/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ServiceWorkerRegistration.waiting")}}

    See also

    diff --git a/files/en-us/web/api/shadowroot/delegatesfocus/index.html b/files/en-us/web/api/shadowroot/delegatesfocus/index.html index 62f18682c4a862e..568ea126147d008 100644 --- a/files/en-us/web/api/shadowroot/delegatesfocus/index.html +++ b/files/en-us/web/api/shadowroot/delegatesfocus/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ShadowRoot.delegatesFocus")}}

    diff --git a/files/en-us/web/api/shadowroot/host/index.html b/files/en-us/web/api/shadowroot/host/index.html index 4879fd0721169dc..bb8e7dc7a3c6f5d 100644 --- a/files/en-us/web/api/shadowroot/host/index.html +++ b/files/en-us/web/api/shadowroot/host/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ShadowRoot.host")}}

    diff --git a/files/en-us/web/api/shadowroot/index.html b/files/en-us/web/api/shadowroot/index.html index e24be955cd61ac5..92b4e76c599ef12 100644 --- a/files/en-us/web/api/shadowroot/index.html +++ b/files/en-us/web/api/shadowroot/index.html @@ -108,6 +108,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ShadowRoot")}}

    diff --git a/files/en-us/web/api/shadowroot/innerhtml/index.html b/files/en-us/web/api/shadowroot/innerhtml/index.html index 92368c980e9960a..0e03d59d37a4c6f 100644 --- a/files/en-us/web/api/shadowroot/innerhtml/index.html +++ b/files/en-us/web/api/shadowroot/innerhtml/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ShadowRoot.innerHTML")}}

    diff --git a/files/en-us/web/api/shadowroot/mode/index.html b/files/en-us/web/api/shadowroot/mode/index.html index b602a82a172d004..12f4c29edd54a8d 100644 --- a/files/en-us/web/api/shadowroot/mode/index.html +++ b/files/en-us/web/api/shadowroot/mode/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ShadowRoot.mode")}}

    diff --git a/files/en-us/web/api/sharedworker/index.html b/files/en-us/web/api/sharedworker/index.html index ee66169a878838c..2b4449cc56edae8 100644 --- a/files/en-us/web/api/sharedworker/index.html +++ b/files/en-us/web/api/sharedworker/index.html @@ -35,7 +35,6 @@

    Properties

    Returns a {{domxref("MessagePort")}} object used to communicate with and control the shared worker.
    -

    Methods

    Inherits methods from its parent, {{domxref("EventTarget")}}, and implements methods from {{domxref("AbstractWorker")}}.

    @@ -102,8 +101,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SharedWorker")}}

    See also

    diff --git a/files/en-us/web/api/sharedworker/port/index.html b/files/en-us/web/api/sharedworker/port/index.html index 89933847db34885..cc98bbe850ee425 100644 --- a/files/en-us/web/api/sharedworker/port/index.html +++ b/files/en-us/web/api/sharedworker/port/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SharedWorker.port")}}

    See also

    diff --git a/files/en-us/web/api/sharedworker/sharedworker/index.html b/files/en-us/web/api/sharedworker/sharedworker/index.html index ede19eb7209d331..eae62f5723429d6 100644 --- a/files/en-us/web/api/sharedworker/sharedworker/index.html +++ b/files/en-us/web/api/sharedworker/sharedworker/index.html @@ -94,8 +94,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SharedWorker.SharedWorker")}}

    See also

    diff --git a/files/en-us/web/api/sharedworkerglobalscope/applicationcache/index.html b/files/en-us/web/api/sharedworkerglobalscope/applicationcache/index.html index 9bb6062b6fa980a..0352f1bd7c1021c 100644 --- a/files/en-us/web/api/sharedworkerglobalscope/applicationcache/index.html +++ b/files/en-us/web/api/sharedworkerglobalscope/applicationcache/index.html @@ -36,8 +36,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.SharedWorkerGlobalScope.applicationCache")}}

    See also

    diff --git a/files/en-us/web/api/sharedworkerglobalscope/close/index.html b/files/en-us/web/api/sharedworkerglobalscope/close/index.html index c4e1745a27e6486..15624398d6000c6 100644 --- a/files/en-us/web/api/sharedworkerglobalscope/close/index.html +++ b/files/en-us/web/api/sharedworkerglobalscope/close/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SharedWorkerGlobalScope.close")}}

    General note: In newer browser versions, close() is available on SharedWorkerGlobalScope and {{domxref("DedicatedWorkerGlobalScope.close", "DedicatedWorkerGlobalScope")}}. In older browser versions, it is available on {{domxref("WorkerGlobalScope.close","WorkerGlobalScope")}}. This change was made to stop close() being available on service workers, as it isn't supposed to be used there and always throws an exception when called (see {{bug(1336043)}}).

    diff --git a/files/en-us/web/api/sharedworkerglobalscope/connect_event/index.html b/files/en-us/web/api/sharedworkerglobalscope/connect_event/index.html index 7ba9d6fb2034838..2a066f94654b9d1 100644 --- a/files/en-us/web/api/sharedworkerglobalscope/connect_event/index.html +++ b/files/en-us/web/api/sharedworkerglobalscope/connect_event/index.html @@ -86,8 +86,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SharedWorkerGlobalScope.connect_event")}}

    See also

    diff --git a/files/en-us/web/api/sharedworkerglobalscope/index.html b/files/en-us/web/api/sharedworkerglobalscope/index.html index b3ddf66bf88044b..71b2a7777f74770 100644 --- a/files/en-us/web/api/sharedworkerglobalscope/index.html +++ b/files/en-us/web/api/sharedworkerglobalscope/index.html @@ -115,8 +115,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SharedWorkerGlobalScope")}}

    See also

    diff --git a/files/en-us/web/api/sharedworkerglobalscope/name/index.html b/files/en-us/web/api/sharedworkerglobalscope/name/index.html index fcf646d5703165e..d92ae12ad380952 100644 --- a/files/en-us/web/api/sharedworkerglobalscope/name/index.html +++ b/files/en-us/web/api/sharedworkerglobalscope/name/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SharedWorkerGlobalScope.name")}}

    See also

    diff --git a/files/en-us/web/api/sharedworkerglobalscope/onconnect/index.html b/files/en-us/web/api/sharedworkerglobalscope/onconnect/index.html index 01790f410bc7447..d74f97ecfea29c0 100644 --- a/files/en-us/web/api/sharedworkerglobalscope/onconnect/index.html +++ b/files/en-us/web/api/sharedworkerglobalscope/onconnect/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SharedWorkerGlobalScope.onconnect")}}

    See also

    diff --git a/files/en-us/web/api/slottable/assignedslot/index.html b/files/en-us/web/api/slottable/assignedslot/index.html index 31d6284f42483e4..f0033830992ec0a 100644 --- a/files/en-us/web/api/slottable/assignedslot/index.html +++ b/files/en-us/web/api/slottable/assignedslot/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.Slottable.assignedSlot")}}

    diff --git a/files/en-us/web/api/slottable/index.html b/files/en-us/web/api/slottable/index.html index cfa1408e606bb54..7f1c902a9114ece 100644 --- a/files/en-us/web/api/slottable/index.html +++ b/files/en-us/web/api/slottable/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser Compatibility

    - -

    {{Compat("api.Slottable")}}

    diff --git a/files/en-us/web/api/sourcebuffer/abort/index.html b/files/en-us/web/api/sourcebuffer/abort/index.html index f852b74bfa739c3..fedbe2b3b692f5c 100644 --- a/files/en-us/web/api/sourcebuffer/abort/index.html +++ b/files/en-us/web/api/sourcebuffer/abort/index.html @@ -84,7 +84,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.abort")}}

    diff --git a/files/en-us/web/api/sourcebuffer/appendbuffer/index.html b/files/en-us/web/api/sourcebuffer/appendbuffer/index.html index fdc6fc39a9de3e4..13bf03ecc413980 100644 --- a/files/en-us/web/api/sourcebuffer/appendbuffer/index.html +++ b/files/en-us/web/api/sourcebuffer/appendbuffer/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.appendBuffer")}}

    diff --git a/files/en-us/web/api/sourcebuffer/appendbufferasync/index.html b/files/en-us/web/api/sourcebuffer/appendbufferasync/index.html index 93e96f4c85ae493..bd9008057dceefd 100644 --- a/files/en-us/web/api/sourcebuffer/appendbufferasync/index.html +++ b/files/en-us/web/api/sourcebuffer/appendbufferasync/index.html @@ -72,7 +72,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.appendBufferAsync")}}

    diff --git a/files/en-us/web/api/sourcebuffer/appendstream/index.html b/files/en-us/web/api/sourcebuffer/appendstream/index.html index 40d7df5f24c56fd..0eaf925efd6c885 100644 --- a/files/en-us/web/api/sourcebuffer/appendstream/index.html +++ b/files/en-us/web/api/sourcebuffer/appendstream/index.html @@ -47,7 +47,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.appendStream")}}

    diff --git a/files/en-us/web/api/sourcebuffer/appendwindowend/index.html b/files/en-us/web/api/sourcebuffer/appendwindowend/index.html index 602a8594dae8fa9..c826664af16f7d7 100644 --- a/files/en-us/web/api/sourcebuffer/appendwindowend/index.html +++ b/files/en-us/web/api/sourcebuffer/appendwindowend/index.html @@ -78,7 +78,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.appendWindowEnd")}}

    diff --git a/files/en-us/web/api/sourcebuffer/appendwindowstart/index.html b/files/en-us/web/api/sourcebuffer/appendwindowstart/index.html index 4f3831c6f0a5243..6add250250ff427 100644 --- a/files/en-us/web/api/sourcebuffer/appendwindowstart/index.html +++ b/files/en-us/web/api/sourcebuffer/appendwindowstart/index.html @@ -78,7 +78,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.appendWindowStart")}}

    diff --git a/files/en-us/web/api/sourcebuffer/audiotracks/index.html b/files/en-us/web/api/sourcebuffer/audiotracks/index.html index 959ef656b63d4fc..86d9d811f149b53 100644 --- a/files/en-us/web/api/sourcebuffer/audiotracks/index.html +++ b/files/en-us/web/api/sourcebuffer/audiotracks/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SourceBuffer.audioTracks")}}

    See also

    diff --git a/files/en-us/web/api/sourcebuffer/buffered/index.html b/files/en-us/web/api/sourcebuffer/buffered/index.html index 05c68cee089b326..10f1f08d542e8b6 100644 --- a/files/en-us/web/api/sourcebuffer/buffered/index.html +++ b/files/en-us/web/api/sourcebuffer/buffered/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.buffered")}}

    diff --git a/files/en-us/web/api/sourcebuffer/changetype/index.html b/files/en-us/web/api/sourcebuffer/changetype/index.html index 4f4c6977b92f311..7456f8c59d4af75 100644 --- a/files/en-us/web/api/sourcebuffer/changetype/index.html +++ b/files/en-us/web/api/sourcebuffer/changetype/index.html @@ -54,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.changeType")}}

    diff --git a/files/en-us/web/api/sourcebuffer/index.html b/files/en-us/web/api/sourcebuffer/index.html index 0c41e14c177d56b..5301bb13cd218a1 100644 --- a/files/en-us/web/api/sourcebuffer/index.html +++ b/files/en-us/web/api/sourcebuffer/index.html @@ -145,7 +145,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer")}}

    diff --git a/files/en-us/web/api/sourcebuffer/mode/index.html b/files/en-us/web/api/sourcebuffer/mode/index.html index 457b8f4a123dda8..83294ab0a5fc3a5 100644 --- a/files/en-us/web/api/sourcebuffer/mode/index.html +++ b/files/en-us/web/api/sourcebuffer/mode/index.html @@ -94,7 +94,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.mode")}}

    diff --git a/files/en-us/web/api/sourcebuffer/remove/index.html b/files/en-us/web/api/sourcebuffer/remove/index.html index 2070562f0bdf772..4a7c90fb18080a4 100644 --- a/files/en-us/web/api/sourcebuffer/remove/index.html +++ b/files/en-us/web/api/sourcebuffer/remove/index.html @@ -81,7 +81,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.remove")}}

    diff --git a/files/en-us/web/api/sourcebuffer/removeasync/index.html b/files/en-us/web/api/sourcebuffer/removeasync/index.html index 58c545ca9c02416..6d9c6134b4aa0bb 100644 --- a/files/en-us/web/api/sourcebuffer/removeasync/index.html +++ b/files/en-us/web/api/sourcebuffer/removeasync/index.html @@ -71,7 +71,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.removeAsync")}}

    diff --git a/files/en-us/web/api/sourcebuffer/texttracks/index.html b/files/en-us/web/api/sourcebuffer/texttracks/index.html index 97b307910647ad3..eb69bc7d3c505eb 100644 --- a/files/en-us/web/api/sourcebuffer/texttracks/index.html +++ b/files/en-us/web/api/sourcebuffer/texttracks/index.html @@ -50,7 +50,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.textTracks")}}

    diff --git a/files/en-us/web/api/sourcebuffer/timestampoffset/index.html b/files/en-us/web/api/sourcebuffer/timestampoffset/index.html index b23edce20454ae1..603d163ecbd1fb7 100644 --- a/files/en-us/web/api/sourcebuffer/timestampoffset/index.html +++ b/files/en-us/web/api/sourcebuffer/timestampoffset/index.html @@ -74,7 +74,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.timestampOffset")}}

    diff --git a/files/en-us/web/api/sourcebuffer/trackdefaults/index.html b/files/en-us/web/api/sourcebuffer/trackdefaults/index.html index 29ea5d5f0680fd4..25f9b5b39f98db7 100644 --- a/files/en-us/web/api/sourcebuffer/trackdefaults/index.html +++ b/files/en-us/web/api/sourcebuffer/trackdefaults/index.html @@ -55,7 +55,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.trackDefaults")}}

    diff --git a/files/en-us/web/api/sourcebuffer/updating/index.html b/files/en-us/web/api/sourcebuffer/updating/index.html index 03c0eb619ff2f6e..f62032ba1f43cf5 100644 --- a/files/en-us/web/api/sourcebuffer/updating/index.html +++ b/files/en-us/web/api/sourcebuffer/updating/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.updating")}}

    diff --git a/files/en-us/web/api/sourcebuffer/videotracks/index.html b/files/en-us/web/api/sourcebuffer/videotracks/index.html index 692cd527b410190..89b5a920c0e1733 100644 --- a/files/en-us/web/api/sourcebuffer/videotracks/index.html +++ b/files/en-us/web/api/sourcebuffer/videotracks/index.html @@ -50,7 +50,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBuffer.videoTracks")}}

    diff --git a/files/en-us/web/api/sourcebufferlist/index.html b/files/en-us/web/api/sourcebufferlist/index.html index 187aae5671f4972..66a44fba9a7597d 100644 --- a/files/en-us/web/api/sourcebufferlist/index.html +++ b/files/en-us/web/api/sourcebufferlist/index.html @@ -70,7 +70,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBufferList")}}

    diff --git a/files/en-us/web/api/sourcebufferlist/length/index.html b/files/en-us/web/api/sourcebufferlist/length/index.html index e61844c37e3bd5d..011f8df5150c437 100644 --- a/files/en-us/web/api/sourcebufferlist/length/index.html +++ b/files/en-us/web/api/sourcebufferlist/length/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SourceBufferList.length")}}

    See also

    diff --git a/files/en-us/web/api/sourcebufferlist/sourcebuffer/index.html b/files/en-us/web/api/sourcebufferlist/sourcebuffer/index.html index 7ec6b63d66a37f6..4f417d9f3228ec6 100644 --- a/files/en-us/web/api/sourcebufferlist/sourcebuffer/index.html +++ b/files/en-us/web/api/sourcebufferlist/sourcebuffer/index.html @@ -62,7 +62,6 @@

    Browser compatibility

    -

    {{Compat("api.SourceBufferList.SourceBuffer")}}

    diff --git a/files/en-us/web/api/speechgrammar/index.html b/files/en-us/web/api/speechgrammar/index.html index 65cf875e1d947e0..157a6d41356dd85 100644 --- a/files/en-us/web/api/speechgrammar/index.html +++ b/files/en-us/web/api/speechgrammar/index.html @@ -41,7 +41,6 @@

    Examples

    speechRecognitionList.addFromString(grammar, 1); recognition.grammars = speechRecognitionList; - console.log(speechRecognitionList[0].src); // should return the same as the contents of the grammar variable console.log(speechRecognitionList[0].weight); // should return 1 - the same as the weight set in line 4. @@ -67,7 +66,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechGrammar")}}

    diff --git a/files/en-us/web/api/speechgrammar/speechgrammar/index.html b/files/en-us/web/api/speechgrammar/speechgrammar/index.html index 7e794be75d98039..57f63fd86dbda4c 100644 --- a/files/en-us/web/api/speechgrammar/speechgrammar/index.html +++ b/files/en-us/web/api/speechgrammar/speechgrammar/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SpeechGrammar.SpeechGrammar")}}

    See also

    diff --git a/files/en-us/web/api/speechgrammar/src/index.html b/files/en-us/web/api/speechgrammar/src/index.html index 50d041e273372a9..7dab06feca7fff7 100644 --- a/files/en-us/web/api/speechgrammar/src/index.html +++ b/files/en-us/web/api/speechgrammar/src/index.html @@ -32,7 +32,6 @@

    Examples

    speechRecognitionList.addFromString(grammar, 1); recognition.grammars = speechRecognitionList; - console.log(speechRecognitionList[0].src); // should return the same as the contents of the grammar variable console.log(speechRecognitionList[0].weight); // should return 1 - the same as the weight set in line 4. @@ -58,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechGrammar.src")}}

    diff --git a/files/en-us/web/api/speechgrammar/weight/index.html b/files/en-us/web/api/speechgrammar/weight/index.html index bab0381c2db3a6a..a02db1c44ff3421 100644 --- a/files/en-us/web/api/speechgrammar/weight/index.html +++ b/files/en-us/web/api/speechgrammar/weight/index.html @@ -32,7 +32,6 @@

    Examples

    speechRecognitionList.addFromString(grammar, 1); recognition.grammars = speechRecognitionList; - console.log(speechRecognitionList[0].src); // should return the same as the contents of the grammar variable console.log(speechRecognitionList[0].weight); // should return 1 - the same as the weight set in line 4. @@ -56,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SpeechGrammar.weight")}}

    See also

    diff --git a/files/en-us/web/api/speechgrammarlist/addfromstring/index.html b/files/en-us/web/api/speechgrammarlist/addfromstring/index.html index d4fe38469ded0b3..87b2643fb4c737a 100644 --- a/files/en-us/web/api/speechgrammarlist/addfromstring/index.html +++ b/files/en-us/web/api/speechgrammarlist/addfromstring/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SpeechGrammarList.addFromString")}}

    Firefox OS permissions

    diff --git a/files/en-us/web/api/speechgrammarlist/addfromuri/index.html b/files/en-us/web/api/speechgrammarlist/addfromuri/index.html index b7648607694b85e..251fa8dd7bea524 100644 --- a/files/en-us/web/api/speechgrammarlist/addfromuri/index.html +++ b/files/en-us/web/api/speechgrammarlist/addfromuri/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SpeechGrammarList.addFromURI")}}

    Firefox OS permissions

    diff --git a/files/en-us/web/api/speechgrammarlist/index.html b/files/en-us/web/api/speechgrammarlist/index.html index 3bb03c98824661c..ac75a01dc6fe814 100644 --- a/files/en-us/web/api/speechgrammarlist/index.html +++ b/files/en-us/web/api/speechgrammarlist/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SpeechGrammarList")}}

    Firefox OS permissions

    diff --git a/files/en-us/web/api/speechgrammarlist/item/index.html b/files/en-us/web/api/speechgrammarlist/item/index.html index c8c16464870d312..97c628cea6fc871 100644 --- a/files/en-us/web/api/speechgrammarlist/item/index.html +++ b/files/en-us/web/api/speechgrammarlist/item/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SpeechGrammarList.item")}}

    Firefox OS permissions

    diff --git a/files/en-us/web/api/speechgrammarlist/length/index.html b/files/en-us/web/api/speechgrammarlist/length/index.html index e2a381a3d2e1e79..6b995ba4093e2d2 100644 --- a/files/en-us/web/api/speechgrammarlist/length/index.html +++ b/files/en-us/web/api/speechgrammarlist/length/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SpeechGrammarList.length")}}

    Firefox OS permissions

    diff --git a/files/en-us/web/api/speechgrammarlist/speechgrammarlist/index.html b/files/en-us/web/api/speechgrammarlist/speechgrammarlist/index.html index 6f5234473fcba47..a0552a0364157fd 100644 --- a/files/en-us/web/api/speechgrammarlist/speechgrammarlist/index.html +++ b/files/en-us/web/api/speechgrammarlist/speechgrammarlist/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SpeechGrammarList.SpeechGrammarList")}}

    Firefox OS permissions

    diff --git a/files/en-us/web/api/speechrecognition/abort/index.html b/files/en-us/web/api/speechrecognition/abort/index.html index c86dec377be21be..a56ce1648974c7c 100644 --- a/files/en-us/web/api/speechrecognition/abort/index.html +++ b/files/en-us/web/api/speechrecognition/abort/index.html @@ -76,7 +76,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.abort")}}

    diff --git a/files/en-us/web/api/speechrecognition/audioend_event/index.html b/files/en-us/web/api/speechrecognition/audioend_event/index.html index 3f53635f2fd923f..36940170212e3c7 100644 --- a/files/en-us/web/api/speechrecognition/audioend_event/index.html +++ b/files/en-us/web/api/speechrecognition/audioend_event/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SpeechRecognition.audioend_event")}}

    See also

    diff --git a/files/en-us/web/api/speechrecognition/audiostart_event/index.html b/files/en-us/web/api/speechrecognition/audiostart_event/index.html index 23aee5cc77a4a10..5b5301fed43b336 100644 --- a/files/en-us/web/api/speechrecognition/audiostart_event/index.html +++ b/files/en-us/web/api/speechrecognition/audiostart_event/index.html @@ -73,7 +73,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.audiostart_event")}}

    diff --git a/files/en-us/web/api/speechrecognition/continuous/index.html b/files/en-us/web/api/speechrecognition/continuous/index.html index b6c35b2e42f72e9..af5305f1ad3f945 100644 --- a/files/en-us/web/api/speechrecognition/continuous/index.html +++ b/files/en-us/web/api/speechrecognition/continuous/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.continuous")}}

    diff --git a/files/en-us/web/api/speechrecognition/end_event/index.html b/files/en-us/web/api/speechrecognition/end_event/index.html index fe93ccac06d8ee3..daf9c947f658906 100644 --- a/files/en-us/web/api/speechrecognition/end_event/index.html +++ b/files/en-us/web/api/speechrecognition/end_event/index.html @@ -70,7 +70,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.end_event")}}

    diff --git a/files/en-us/web/api/speechrecognition/error_event/index.html b/files/en-us/web/api/speechrecognition/error_event/index.html index 59e5ba871a99962..015d5511e24dd75 100644 --- a/files/en-us/web/api/speechrecognition/error_event/index.html +++ b/files/en-us/web/api/speechrecognition/error_event/index.html @@ -70,7 +70,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.error_event")}}

    diff --git a/files/en-us/web/api/speechrecognition/grammars/index.html b/files/en-us/web/api/speechrecognition/grammars/index.html index 7b98db9b22a7f60..299c0b16b6f364d 100644 --- a/files/en-us/web/api/speechrecognition/grammars/index.html +++ b/files/en-us/web/api/speechrecognition/grammars/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.grammars")}}

    diff --git a/files/en-us/web/api/speechrecognition/index.html b/files/en-us/web/api/speechrecognition/index.html index 64a702b544e6ba2..f4736a86be27467 100644 --- a/files/en-us/web/api/speechrecognition/index.html +++ b/files/en-us/web/api/speechrecognition/index.html @@ -45,7 +45,6 @@

    Properties

    Specifies the location of the speech recognition service used by the current SpeechRecognition to handle the actual recognition. The default is the user agent's default speech service.
    -

    Methods

    SpeechRecognition also inherits methods from its parent interface, {{domxref("EventTarget")}}.

    @@ -148,8 +147,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SpeechRecognition")}}

    See also

    diff --git a/files/en-us/web/api/speechrecognition/interimresults/index.html b/files/en-us/web/api/speechrecognition/interimresults/index.html index 2eec5b974591857..42bebd8e16640b4 100644 --- a/files/en-us/web/api/speechrecognition/interimresults/index.html +++ b/files/en-us/web/api/speechrecognition/interimresults/index.html @@ -64,7 +64,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.interimResults")}}

    diff --git a/files/en-us/web/api/speechrecognition/lang/index.html b/files/en-us/web/api/speechrecognition/lang/index.html index 780325b8e8c7f56..f52d6945b13882f 100644 --- a/files/en-us/web/api/speechrecognition/lang/index.html +++ b/files/en-us/web/api/speechrecognition/lang/index.html @@ -63,7 +63,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.lang")}}

    diff --git a/files/en-us/web/api/speechrecognition/maxalternatives/index.html b/files/en-us/web/api/speechrecognition/maxalternatives/index.html index 87ae9c3a0690b44..1b84db8c39af472 100644 --- a/files/en-us/web/api/speechrecognition/maxalternatives/index.html +++ b/files/en-us/web/api/speechrecognition/maxalternatives/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.maxAlternatives")}}

    diff --git a/files/en-us/web/api/speechrecognition/nomatch_event/index.html b/files/en-us/web/api/speechrecognition/nomatch_event/index.html index 35662cdb0a40ebc..f50e54f2b45fd51 100644 --- a/files/en-us/web/api/speechrecognition/nomatch_event/index.html +++ b/files/en-us/web/api/speechrecognition/nomatch_event/index.html @@ -70,7 +70,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.nomatch_event")}}

    diff --git a/files/en-us/web/api/speechrecognition/onaudioend/index.html b/files/en-us/web/api/speechrecognition/onaudioend/index.html index 7d2102fe8e98377..9de1a1224621618 100644 --- a/files/en-us/web/api/speechrecognition/onaudioend/index.html +++ b/files/en-us/web/api/speechrecognition/onaudioend/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.onaudioend")}}

    diff --git a/files/en-us/web/api/speechrecognition/onaudiostart/index.html b/files/en-us/web/api/speechrecognition/onaudiostart/index.html index 31af853e0402229..b50702c135a18db 100644 --- a/files/en-us/web/api/speechrecognition/onaudiostart/index.html +++ b/files/en-us/web/api/speechrecognition/onaudiostart/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.onaudiostart")}}

    diff --git a/files/en-us/web/api/speechrecognition/onend/index.html b/files/en-us/web/api/speechrecognition/onend/index.html index b333302e601f1a5..cbd89d6071d9418 100644 --- a/files/en-us/web/api/speechrecognition/onend/index.html +++ b/files/en-us/web/api/speechrecognition/onend/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.onend")}}

    diff --git a/files/en-us/web/api/speechrecognition/onerror/index.html b/files/en-us/web/api/speechrecognition/onerror/index.html index 5cb3b179b68525b..78efb91e8dc78ab 100644 --- a/files/en-us/web/api/speechrecognition/onerror/index.html +++ b/files/en-us/web/api/speechrecognition/onerror/index.html @@ -51,7 +51,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.onerror")}}

    diff --git a/files/en-us/web/api/speechrecognition/onnomatch/index.html b/files/en-us/web/api/speechrecognition/onnomatch/index.html index 4125bbcb293835e..af059175f6379ac 100644 --- a/files/en-us/web/api/speechrecognition/onnomatch/index.html +++ b/files/en-us/web/api/speechrecognition/onnomatch/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.onnomatch")}}

    diff --git a/files/en-us/web/api/speechrecognition/onresult/index.html b/files/en-us/web/api/speechrecognition/onresult/index.html index 67114d2574b2283..7d470bbe115deae 100644 --- a/files/en-us/web/api/speechrecognition/onresult/index.html +++ b/files/en-us/web/api/speechrecognition/onresult/index.html @@ -61,7 +61,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.onresult")}}

    diff --git a/files/en-us/web/api/speechrecognition/onsoundend/index.html b/files/en-us/web/api/speechrecognition/onsoundend/index.html index 782996d6d131bb9..964c58553cbb34a 100644 --- a/files/en-us/web/api/speechrecognition/onsoundend/index.html +++ b/files/en-us/web/api/speechrecognition/onsoundend/index.html @@ -49,7 +49,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.onsoundend")}}

    diff --git a/files/en-us/web/api/speechrecognition/onsoundstart/index.html b/files/en-us/web/api/speechrecognition/onsoundstart/index.html index 0944c68d60f9a9e..c6a16c193acde77 100644 --- a/files/en-us/web/api/speechrecognition/onsoundstart/index.html +++ b/files/en-us/web/api/speechrecognition/onsoundstart/index.html @@ -49,7 +49,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.onsoundstart")}}

    diff --git a/files/en-us/web/api/speechrecognition/onspeechend/index.html b/files/en-us/web/api/speechrecognition/onspeechend/index.html index 9ad395c77e77c3a..678c13fcf10b16d 100644 --- a/files/en-us/web/api/speechrecognition/onspeechend/index.html +++ b/files/en-us/web/api/speechrecognition/onspeechend/index.html @@ -49,7 +49,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.onspeechend")}}

    diff --git a/files/en-us/web/api/speechrecognition/onspeechstart/index.html b/files/en-us/web/api/speechrecognition/onspeechstart/index.html index 88af7bfbb1673af..9adb998956e0881 100644 --- a/files/en-us/web/api/speechrecognition/onspeechstart/index.html +++ b/files/en-us/web/api/speechrecognition/onspeechstart/index.html @@ -49,7 +49,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.onspeechstart")}}

    diff --git a/files/en-us/web/api/speechrecognition/onstart/index.html b/files/en-us/web/api/speechrecognition/onstart/index.html index 0be32a350ed2467..8fd46940e054705 100644 --- a/files/en-us/web/api/speechrecognition/onstart/index.html +++ b/files/en-us/web/api/speechrecognition/onstart/index.html @@ -49,7 +49,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.onstart")}}

    diff --git a/files/en-us/web/api/speechrecognition/result_event/index.html b/files/en-us/web/api/speechrecognition/result_event/index.html index bf7c4fb303fa9e8..6f26d2bfe1e52ae 100644 --- a/files/en-us/web/api/speechrecognition/result_event/index.html +++ b/files/en-us/web/api/speechrecognition/result_event/index.html @@ -75,7 +75,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.result_event")}}

    diff --git a/files/en-us/web/api/speechrecognition/serviceuri/index.html b/files/en-us/web/api/speechrecognition/serviceuri/index.html index 926db821c69d076..0a86c9cac0cd955 100644 --- a/files/en-us/web/api/speechrecognition/serviceuri/index.html +++ b/files/en-us/web/api/speechrecognition/serviceuri/index.html @@ -38,7 +38,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.serviceURI")}}

    diff --git a/files/en-us/web/api/speechrecognition/soundend_event/index.html b/files/en-us/web/api/speechrecognition/soundend_event/index.html index 89a54ef1f117a84..4ad9028cda893c8 100644 --- a/files/en-us/web/api/speechrecognition/soundend_event/index.html +++ b/files/en-us/web/api/speechrecognition/soundend_event/index.html @@ -70,7 +70,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.soundend_event")}}

    diff --git a/files/en-us/web/api/speechrecognition/soundstart_event/index.html b/files/en-us/web/api/speechrecognition/soundstart_event/index.html index b2b679f927c85f4..a994ca7a62ef92e 100644 --- a/files/en-us/web/api/speechrecognition/soundstart_event/index.html +++ b/files/en-us/web/api/speechrecognition/soundstart_event/index.html @@ -68,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.soundstart_event")}}

    diff --git a/files/en-us/web/api/speechrecognition/speechend_event/index.html b/files/en-us/web/api/speechrecognition/speechend_event/index.html index 22a401601833cad..06f6cbd446b783c 100644 --- a/files/en-us/web/api/speechrecognition/speechend_event/index.html +++ b/files/en-us/web/api/speechrecognition/speechend_event/index.html @@ -68,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.speechend_event")}}

    diff --git a/files/en-us/web/api/speechrecognition/speechrecognition/index.html b/files/en-us/web/api/speechrecognition/speechrecognition/index.html index 353c0ec2678a618..3aab399ecde03fd 100644 --- a/files/en-us/web/api/speechrecognition/speechrecognition/index.html +++ b/files/en-us/web/api/speechrecognition/speechrecognition/index.html @@ -60,7 +60,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.SpeechRecognition")}}

    diff --git a/files/en-us/web/api/speechrecognition/speechstart_event/index.html b/files/en-us/web/api/speechrecognition/speechstart_event/index.html index b16855bbdce7460..6f2335faff6d5a2 100644 --- a/files/en-us/web/api/speechrecognition/speechstart_event/index.html +++ b/files/en-us/web/api/speechrecognition/speechstart_event/index.html @@ -70,7 +70,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.speechstart_event")}}

    diff --git a/files/en-us/web/api/speechrecognition/start/index.html b/files/en-us/web/api/speechrecognition/start/index.html index a9eaab993aadaf9..1895f6cc297c153 100644 --- a/files/en-us/web/api/speechrecognition/start/index.html +++ b/files/en-us/web/api/speechrecognition/start/index.html @@ -76,7 +76,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.start")}}

    diff --git a/files/en-us/web/api/speechrecognition/start_event/index.html b/files/en-us/web/api/speechrecognition/start_event/index.html index 5c970d5fb0e7e97..87808efd44e6fd7 100644 --- a/files/en-us/web/api/speechrecognition/start_event/index.html +++ b/files/en-us/web/api/speechrecognition/start_event/index.html @@ -68,7 +68,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.start_event")}}

    diff --git a/files/en-us/web/api/speechrecognition/stop/index.html b/files/en-us/web/api/speechrecognition/stop/index.html index 7ff74f77c07845c..665a6e60aa735ad 100644 --- a/files/en-us/web/api/speechrecognition/stop/index.html +++ b/files/en-us/web/api/speechrecognition/stop/index.html @@ -76,7 +76,6 @@

    Browser compatibility

    -

    {{Compat("api.SpeechRecognition.stop")}}

    diff --git a/files/en-us/web/api/speechrecognitionalternative/confidence/index.html b/files/en-us/web/api/speechrecognitionalternative/confidence/index.html index d3a864ccc989a25..edbcd50327c6e34 100644 --- a/files/en-us/web/api/speechrecognitionalternative/confidence/index.html +++ b/files/en-us/web/api/speechrecognitionalternative/confidence/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.SpeechRecognitionAlternative.confidence")}}

      diff --git a/files/en-us/web/api/speechrecognitionalternative/index.html b/files/en-us/web/api/speechrecognitionalternative/index.html index 7827f4db3ac66f7..501b5f7355df37c 100644 --- a/files/en-us/web/api/speechrecognitionalternative/index.html +++ b/files/en-us/web/api/speechrecognitionalternative/index.html @@ -63,7 +63,6 @@

      Browser compatibility

      -

      {{Compat("api.SpeechRecognitionAlternative")}}

      diff --git a/files/en-us/web/api/speechrecognitionalternative/transcript/index.html b/files/en-us/web/api/speechrecognitionalternative/transcript/index.html index 3d0216d441b9b8c..40fa7b3561651cf 100644 --- a/files/en-us/web/api/speechrecognitionalternative/transcript/index.html +++ b/files/en-us/web/api/speechrecognitionalternative/transcript/index.html @@ -63,8 +63,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.SpeechRecognitionAlternative.transcript")}}

        diff --git a/files/en-us/web/api/speechrecognitionerror/error/index.html b/files/en-us/web/api/speechrecognitionerror/error/index.html index 0c252c6b7dfb3b5..485a93a922d08e9 100644 --- a/files/en-us/web/api/speechrecognitionerror/error/index.html +++ b/files/en-us/web/api/speechrecognitionerror/error/index.html @@ -59,8 +59,6 @@

        Examples

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionError.error")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechrecognitionerror/index.html b/files/en-us/web/api/speechrecognitionerror/index.html index d05af54b6a9c26d..cf364421a4e36ba 100644 --- a/files/en-us/web/api/speechrecognitionerror/index.html +++ b/files/en-us/web/api/speechrecognitionerror/index.html @@ -43,7 +43,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechRecognitionError")}}

        diff --git a/files/en-us/web/api/speechrecognitionerror/message/index.html b/files/en-us/web/api/speechrecognitionerror/message/index.html index ed8c6c47e04f3db..01201c247eabc99 100644 --- a/files/en-us/web/api/speechrecognitionerror/message/index.html +++ b/files/en-us/web/api/speechrecognitionerror/message/index.html @@ -40,8 +40,6 @@

        Examples

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionError.message")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechrecognitionerrorevent/error/index.html b/files/en-us/web/api/speechrecognitionerrorevent/error/index.html index ec4e8099537019f..330c6e74f952072 100644 --- a/files/en-us/web/api/speechrecognitionerrorevent/error/index.html +++ b/files/en-us/web/api/speechrecognitionerrorevent/error/index.html @@ -72,8 +72,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionErrorEvent.error")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechrecognitionerrorevent/index.html b/files/en-us/web/api/speechrecognitionerrorevent/index.html index 32d989e07c80248..03092ac7cfbeec1 100644 --- a/files/en-us/web/api/speechrecognitionerrorevent/index.html +++ b/files/en-us/web/api/speechrecognitionerrorevent/index.html @@ -47,7 +47,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechRecognitionErrorEvent")}}

        diff --git a/files/en-us/web/api/speechrecognitionerrorevent/message/index.html b/files/en-us/web/api/speechrecognitionerrorevent/message/index.html index 55ee07b089e8d2b..7d01d58cf70db66 100644 --- a/files/en-us/web/api/speechrecognitionerrorevent/message/index.html +++ b/files/en-us/web/api/speechrecognitionerrorevent/message/index.html @@ -53,8 +53,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionErrorEvent.message")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechrecognitionevent/emma/index.html b/files/en-us/web/api/speechrecognitionevent/emma/index.html index d09cf0b22293fd3..2d4ecaf7057eaa5 100644 --- a/files/en-us/web/api/speechrecognitionevent/emma/index.html +++ b/files/en-us/web/api/speechrecognitionevent/emma/index.html @@ -40,8 +40,6 @@

        Examples

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionEvent.emma")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechrecognitionevent/index.html b/files/en-us/web/api/speechrecognitionevent/index.html index 18697ce883a81a3..610cb7359ff4336 100644 --- a/files/en-us/web/api/speechrecognitionevent/index.html +++ b/files/en-us/web/api/speechrecognitionevent/index.html @@ -69,7 +69,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechRecognitionEvent")}}

        diff --git a/files/en-us/web/api/speechrecognitionevent/interpretation/index.html b/files/en-us/web/api/speechrecognitionevent/interpretation/index.html index df73fa484ca6cf9..5f432363598a9b8 100644 --- a/files/en-us/web/api/speechrecognitionevent/interpretation/index.html +++ b/files/en-us/web/api/speechrecognitionevent/interpretation/index.html @@ -38,8 +38,6 @@

        Examples

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionEvent.interpretation")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechrecognitionevent/resultindex/index.html b/files/en-us/web/api/speechrecognitionevent/resultindex/index.html index cab14599e5fb3e9..cbedffe3a573071 100644 --- a/files/en-us/web/api/speechrecognitionevent/resultindex/index.html +++ b/files/en-us/web/api/speechrecognitionevent/resultindex/index.html @@ -55,8 +55,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionEvent.resultIndex")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechrecognitionevent/results/index.html b/files/en-us/web/api/speechrecognitionevent/results/index.html index 8bcc1acce4b4328..59a8e9f8ad823a5 100644 --- a/files/en-us/web/api/speechrecognitionevent/results/index.html +++ b/files/en-us/web/api/speechrecognitionevent/results/index.html @@ -64,8 +64,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionEvent.results")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechrecognitionresult/index.html b/files/en-us/web/api/speechrecognitionresult/index.html index 585cfd049f3dab8..b98ead58fa36e1e 100644 --- a/files/en-us/web/api/speechrecognitionresult/index.html +++ b/files/en-us/web/api/speechrecognitionresult/index.html @@ -70,7 +70,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechRecognitionResult")}}

        diff --git a/files/en-us/web/api/speechrecognitionresult/isfinal/index.html b/files/en-us/web/api/speechrecognitionresult/isfinal/index.html index 3600567e16a0f52..622f3b0b5a3734a 100644 --- a/files/en-us/web/api/speechrecognitionresult/isfinal/index.html +++ b/files/en-us/web/api/speechrecognitionresult/isfinal/index.html @@ -61,8 +61,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionResult.isFinal")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechrecognitionresult/item/index.html b/files/en-us/web/api/speechrecognitionresult/item/index.html index 284e2c5b569f7d6..4e1a2ab35c94f20 100644 --- a/files/en-us/web/api/speechrecognitionresult/item/index.html +++ b/files/en-us/web/api/speechrecognitionresult/item/index.html @@ -62,8 +62,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionResult.item")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechrecognitionresult/length/index.html b/files/en-us/web/api/speechrecognitionresult/length/index.html index 27bbaf58fb0d03e..59761ebafa6b0c0 100644 --- a/files/en-us/web/api/speechrecognitionresult/length/index.html +++ b/files/en-us/web/api/speechrecognitionresult/length/index.html @@ -65,8 +65,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionResult.length")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechrecognitionresultlist/index.html b/files/en-us/web/api/speechrecognitionresultlist/index.html index 4d487d37fafc70d..d1e548dd92a1dec 100644 --- a/files/en-us/web/api/speechrecognitionresultlist/index.html +++ b/files/en-us/web/api/speechrecognitionresultlist/index.html @@ -68,7 +68,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechRecognitionResultList")}}

        diff --git a/files/en-us/web/api/speechrecognitionresultlist/item/index.html b/files/en-us/web/api/speechrecognitionresultlist/item/index.html index 1a2ea813a9982f1..9cdb2f6c1a4c38d 100644 --- a/files/en-us/web/api/speechrecognitionresultlist/item/index.html +++ b/files/en-us/web/api/speechrecognitionresultlist/item/index.html @@ -62,8 +62,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionResultList.item")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechrecognitionresultlist/length/index.html b/files/en-us/web/api/speechrecognitionresultlist/length/index.html index f72c61bc110056a..551a19b55f1852b 100644 --- a/files/en-us/web/api/speechrecognitionresultlist/length/index.html +++ b/files/en-us/web/api/speechrecognitionresultlist/length/index.html @@ -63,8 +63,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechRecognitionResultList.length")}}

        Firefox OS permissions

        diff --git a/files/en-us/web/api/speechsynthesis/cancel/index.html b/files/en-us/web/api/speechsynthesis/cancel/index.html index 5983b6020bb128f..47c5dfcc5e9fd26 100644 --- a/files/en-us/web/api/speechsynthesis/cancel/index.html +++ b/files/en-us/web/api/speechsynthesis/cancel/index.html @@ -64,7 +64,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesis.cancel")}}

        diff --git a/files/en-us/web/api/speechsynthesis/getvoices/index.html b/files/en-us/web/api/speechsynthesis/getvoices/index.html index f45952e43b8b4b1..c4cf0a2040124cc 100644 --- a/files/en-us/web/api/speechsynthesis/getvoices/index.html +++ b/files/en-us/web/api/speechsynthesis/getvoices/index.html @@ -91,7 +91,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesis.getVoices")}}

        diff --git a/files/en-us/web/api/speechsynthesis/index.html b/files/en-us/web/api/speechsynthesis/index.html index 636e4ca7717c15c..b6eae5a18e040af 100644 --- a/files/en-us/web/api/speechsynthesis/index.html +++ b/files/en-us/web/api/speechsynthesis/index.html @@ -28,7 +28,6 @@

        Properties

        A {{domxref("Boolean")}} that returns true if an utterance is currently in the process of being spoken — even if SpeechSynthesis is in a paused state.
        -

        Methods

        SpeechSynthesis also inherits methods from its parent interface, {{domxref("EventTarget")}}.

        @@ -140,7 +139,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesis")}}

        diff --git a/files/en-us/web/api/speechsynthesis/onvoiceschanged/index.html b/files/en-us/web/api/speechsynthesis/onvoiceschanged/index.html index c33adf8cb33b1da..8d2f3d189158a75 100644 --- a/files/en-us/web/api/speechsynthesis/onvoiceschanged/index.html +++ b/files/en-us/web/api/speechsynthesis/onvoiceschanged/index.html @@ -72,7 +72,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesis.onvoiceschanged")}}

        diff --git a/files/en-us/web/api/speechsynthesis/pause/index.html b/files/en-us/web/api/speechsynthesis/pause/index.html index 7e530eb12ccf123..f3fdcd551b4f510 100644 --- a/files/en-us/web/api/speechsynthesis/pause/index.html +++ b/files/en-us/web/api/speechsynthesis/pause/index.html @@ -62,7 +62,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesis.pause")}}

        diff --git a/files/en-us/web/api/speechsynthesis/paused/index.html b/files/en-us/web/api/speechsynthesis/paused/index.html index bfec1445eddaee4..0e17dc634547909 100644 --- a/files/en-us/web/api/speechsynthesis/paused/index.html +++ b/files/en-us/web/api/speechsynthesis/paused/index.html @@ -57,7 +57,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesis.paused")}}

        diff --git a/files/en-us/web/api/speechsynthesis/pending/index.html b/files/en-us/web/api/speechsynthesis/pending/index.html index 5621c6fbba03b2a..6213ed635b2a149 100644 --- a/files/en-us/web/api/speechsynthesis/pending/index.html +++ b/files/en-us/web/api/speechsynthesis/pending/index.html @@ -59,7 +59,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesis.pending")}}

        diff --git a/files/en-us/web/api/speechsynthesis/resume/index.html b/files/en-us/web/api/speechsynthesis/resume/index.html index 96014dadb40ef19..69a9e56e60cf993 100644 --- a/files/en-us/web/api/speechsynthesis/resume/index.html +++ b/files/en-us/web/api/speechsynthesis/resume/index.html @@ -64,7 +64,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesis.resume")}}

        diff --git a/files/en-us/web/api/speechsynthesis/speak/index.html b/files/en-us/web/api/speechsynthesis/speak/index.html index c5084c06c50bd61..238ca07253ff1ae 100644 --- a/files/en-us/web/api/speechsynthesis/speak/index.html +++ b/files/en-us/web/api/speechsynthesis/speak/index.html @@ -75,7 +75,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesis.speak")}}

        diff --git a/files/en-us/web/api/speechsynthesis/speaking/index.html b/files/en-us/web/api/speechsynthesis/speaking/index.html index 6872c377c046b80..22dee3a9d725552 100644 --- a/files/en-us/web/api/speechsynthesis/speaking/index.html +++ b/files/en-us/web/api/speechsynthesis/speaking/index.html @@ -59,7 +59,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesis.speaking")}}

        diff --git a/files/en-us/web/api/speechsynthesis/voiceschanged_event/index.html b/files/en-us/web/api/speechsynthesis/voiceschanged_event/index.html index 06f773cfa596ff2..ba8571821c3b7cd 100644 --- a/files/en-us/web/api/speechsynthesis/voiceschanged_event/index.html +++ b/files/en-us/web/api/speechsynthesis/voiceschanged_event/index.html @@ -83,7 +83,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesis.voiceschanged_event")}}

        diff --git a/files/en-us/web/api/speechsynthesiserrorevent/error/index.html b/files/en-us/web/api/speechsynthesiserrorevent/error/index.html index 22af10ca20c51c8..084caa8e72afeeb 100644 --- a/files/en-us/web/api/speechsynthesiserrorevent/error/index.html +++ b/files/en-us/web/api/speechsynthesiserrorevent/error/index.html @@ -103,7 +103,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisErrorEvent.error")}}

        diff --git a/files/en-us/web/api/speechsynthesiserrorevent/index.html b/files/en-us/web/api/speechsynthesiserrorevent/index.html index 86c2e9f70852b56..44f2112ad6c3768 100644 --- a/files/en-us/web/api/speechsynthesiserrorevent/index.html +++ b/files/en-us/web/api/speechsynthesiserrorevent/index.html @@ -81,7 +81,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisErrorEvent")}}

        diff --git a/files/en-us/web/api/speechsynthesisevent/charindex/index.html b/files/en-us/web/api/speechsynthesisevent/charindex/index.html index 247469714ee7fd6..e290496786eccee 100644 --- a/files/en-us/web/api/speechsynthesisevent/charindex/index.html +++ b/files/en-us/web/api/speechsynthesisevent/charindex/index.html @@ -54,7 +54,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisEvent.charIndex")}}

        diff --git a/files/en-us/web/api/speechsynthesisevent/elapsedtime/index.html b/files/en-us/web/api/speechsynthesisevent/elapsedtime/index.html index b8f7cd15b518c09..9abc0ef42145fef 100644 --- a/files/en-us/web/api/speechsynthesisevent/elapsedtime/index.html +++ b/files/en-us/web/api/speechsynthesisevent/elapsedtime/index.html @@ -52,7 +52,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisEvent.elapsedTime")}}

        diff --git a/files/en-us/web/api/speechsynthesisevent/index.html b/files/en-us/web/api/speechsynthesisevent/index.html index 3c8a861bff9f775..1d0c1bf579d7f7b 100644 --- a/files/en-us/web/api/speechsynthesisevent/index.html +++ b/files/en-us/web/api/speechsynthesisevent/index.html @@ -67,7 +67,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisEvent")}}

        diff --git a/files/en-us/web/api/speechsynthesisevent/name/index.html b/files/en-us/web/api/speechsynthesisevent/name/index.html index 3bab6d5cfdc1c2f..2a7a28ff8d99854 100644 --- a/files/en-us/web/api/speechsynthesisevent/name/index.html +++ b/files/en-us/web/api/speechsynthesisevent/name/index.html @@ -52,7 +52,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisEvent.name")}}

        diff --git a/files/en-us/web/api/speechsynthesisevent/utterance/index.html b/files/en-us/web/api/speechsynthesisevent/utterance/index.html index 97c017087a6d237..e365f927a862fc9 100644 --- a/files/en-us/web/api/speechsynthesisevent/utterance/index.html +++ b/files/en-us/web/api/speechsynthesisevent/utterance/index.html @@ -54,7 +54,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisEvent.utterance")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/boundary_event/index.html b/files/en-us/web/api/speechsynthesisutterance/boundary_event/index.html index 21e997b4b33574a..51e402b25c91b35 100644 --- a/files/en-us/web/api/speechsynthesisutterance/boundary_event/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/boundary_event/index.html @@ -68,7 +68,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.boundary_event")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/end_event/index.html b/files/en-us/web/api/speechsynthesisutterance/end_event/index.html index abfea09e4eb2a15..a58da68f3d0e1c9 100644 --- a/files/en-us/web/api/speechsynthesisutterance/end_event/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/end_event/index.html @@ -66,8 +66,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechSynthesisUtterance.end_event")}}

        See also

        diff --git a/files/en-us/web/api/speechsynthesisutterance/error_event/index.html b/files/en-us/web/api/speechsynthesisutterance/error_event/index.html index 8d9323f7339b120..581c9b028cb308f 100644 --- a/files/en-us/web/api/speechsynthesisutterance/error_event/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/error_event/index.html @@ -68,7 +68,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.error_event")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/index.html b/files/en-us/web/api/speechsynthesisutterance/index.html index e597baf421d0f2c..b8704e13cb689d6 100644 --- a/files/en-us/web/api/speechsynthesisutterance/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/index.html @@ -119,7 +119,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/lang/index.html b/files/en-us/web/api/speechsynthesisutterance/lang/index.html index 0f1c481cdc170fe..00e43a54ad5e361 100644 --- a/files/en-us/web/api/speechsynthesisutterance/lang/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/lang/index.html @@ -76,7 +76,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.lang")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/mark_event/index.html b/files/en-us/web/api/speechsynthesisutterance/mark_event/index.html index 582d25bf192d50a..437292deb6f7b3c 100644 --- a/files/en-us/web/api/speechsynthesisutterance/mark_event/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/mark_event/index.html @@ -68,7 +68,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.mark_event")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/onboundary/index.html b/files/en-us/web/api/speechsynthesisutterance/onboundary/index.html index 5224cdf0aee2553..6f2f6814e9127d0 100644 --- a/files/en-us/web/api/speechsynthesisutterance/onboundary/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/onboundary/index.html @@ -74,7 +74,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.onboundary")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/onend/index.html b/files/en-us/web/api/speechsynthesisutterance/onend/index.html index f477b4c00c160f5..9f17231cdc4759c 100644 --- a/files/en-us/web/api/speechsynthesisutterance/onend/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/onend/index.html @@ -74,7 +74,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.onend")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/onerror/index.html b/files/en-us/web/api/speechsynthesisutterance/onerror/index.html index c7277e46f7cb069..2404455b31777b1 100644 --- a/files/en-us/web/api/speechsynthesisutterance/onerror/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/onerror/index.html @@ -73,7 +73,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.onerror")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/onmark/index.html b/files/en-us/web/api/speechsynthesisutterance/onmark/index.html index 4b8e600f4667672..57ccfc13f34fc45 100644 --- a/files/en-us/web/api/speechsynthesisutterance/onmark/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/onmark/index.html @@ -74,7 +74,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.onmark")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/onpause/index.html b/files/en-us/web/api/speechsynthesisutterance/onpause/index.html index d45868490b2e5e0..225ae67824ae8b1 100644 --- a/files/en-us/web/api/speechsynthesisutterance/onpause/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/onpause/index.html @@ -76,7 +76,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.onpause")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/onresume/index.html b/files/en-us/web/api/speechsynthesisutterance/onresume/index.html index 3ca1cdb6817a350..a33dfb63815446d 100644 --- a/files/en-us/web/api/speechsynthesisutterance/onresume/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/onresume/index.html @@ -76,7 +76,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.onresume")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/onstart/index.html b/files/en-us/web/api/speechsynthesisutterance/onstart/index.html index badf1daf93d6d23..282c897d4140323 100644 --- a/files/en-us/web/api/speechsynthesisutterance/onstart/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/onstart/index.html @@ -76,7 +76,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.onstart")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/pause_event/index.html b/files/en-us/web/api/speechsynthesisutterance/pause_event/index.html index 93733e4d7c8db2a..019eb2143b6a788 100644 --- a/files/en-us/web/api/speechsynthesisutterance/pause_event/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/pause_event/index.html @@ -66,8 +66,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechSynthesisUtterance.pause_event")}}

        See also

        diff --git a/files/en-us/web/api/speechsynthesisutterance/pitch/index.html b/files/en-us/web/api/speechsynthesisutterance/pitch/index.html index 1672eb37de05c7e..6e822e73c9e6bf2 100644 --- a/files/en-us/web/api/speechsynthesisutterance/pitch/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/pitch/index.html @@ -76,7 +76,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.pitch")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/rate/index.html b/files/en-us/web/api/speechsynthesisutterance/rate/index.html index f1407fa5f186e1d..880a6d62cc55258 100644 --- a/files/en-us/web/api/speechsynthesisutterance/rate/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/rate/index.html @@ -78,7 +78,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.rate")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/resume_event/index.html b/files/en-us/web/api/speechsynthesisutterance/resume_event/index.html index b268efb023a1eb9..1cce6d538212fd1 100644 --- a/files/en-us/web/api/speechsynthesisutterance/resume_event/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/resume_event/index.html @@ -66,7 +66,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.resume_event")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/speechsynthesisutterance/index.html b/files/en-us/web/api/speechsynthesisutterance/speechsynthesisutterance/index.html index 93e349886d469ca..595454115a2a6a5 100644 --- a/files/en-us/web/api/speechsynthesisutterance/speechsynthesisutterance/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/speechsynthesisutterance/index.html @@ -75,7 +75,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.SpeechSynthesisUtterance")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/start_event/index.html b/files/en-us/web/api/speechsynthesisutterance/start_event/index.html index 0f5df8e1776376a..dc1b34960334327 100644 --- a/files/en-us/web/api/speechsynthesisutterance/start_event/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/start_event/index.html @@ -68,7 +68,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.start_event")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/text/index.html b/files/en-us/web/api/speechsynthesisutterance/text/index.html index 77d3b4914c08ca1..4cbe305dd735781 100644 --- a/files/en-us/web/api/speechsynthesisutterance/text/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/text/index.html @@ -76,7 +76,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.text")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/voice/index.html b/files/en-us/web/api/speechsynthesisutterance/voice/index.html index 38c03f81a16b0ac..cf37d1392df0884 100644 --- a/files/en-us/web/api/speechsynthesisutterance/voice/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/voice/index.html @@ -75,7 +75,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.voice")}}

        diff --git a/files/en-us/web/api/speechsynthesisutterance/volume/index.html b/files/en-us/web/api/speechsynthesisutterance/volume/index.html index 0375ad32f837e02..8c4d5fc26cf1746 100644 --- a/files/en-us/web/api/speechsynthesisutterance/volume/index.html +++ b/files/en-us/web/api/speechsynthesisutterance/volume/index.html @@ -78,7 +78,6 @@

        Browser compatibility

        -

        {{Compat("api.SpeechSynthesisUtterance.volume")}}

        diff --git a/files/en-us/web/api/speechsynthesisvoice/default/index.html b/files/en-us/web/api/speechsynthesisvoice/default/index.html index bbc9a1da4d40d36..4401fa7218bcf89 100644 --- a/files/en-us/web/api/speechsynthesisvoice/default/index.html +++ b/files/en-us/web/api/speechsynthesisvoice/default/index.html @@ -63,8 +63,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechSynthesisVoice.default")}}

        See also

        diff --git a/files/en-us/web/api/speechsynthesisvoice/index.html b/files/en-us/web/api/speechsynthesisvoice/index.html index 8a447cfbe574ff6..35b1475c6bbd363 100644 --- a/files/en-us/web/api/speechsynthesisvoice/index.html +++ b/files/en-us/web/api/speechsynthesisvoice/index.html @@ -98,8 +98,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechSynthesisVoice")}}

        See also

        diff --git a/files/en-us/web/api/speechsynthesisvoice/lang/index.html b/files/en-us/web/api/speechsynthesisvoice/lang/index.html index 0bd27316f4e8e43..353874e06c043c5 100644 --- a/files/en-us/web/api/speechsynthesisvoice/lang/index.html +++ b/files/en-us/web/api/speechsynthesisvoice/lang/index.html @@ -59,8 +59,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechSynthesisVoice.lang")}}

        See also

        diff --git a/files/en-us/web/api/speechsynthesisvoice/localservice/index.html b/files/en-us/web/api/speechsynthesisvoice/localservice/index.html index d57a041a8de8e06..9f6a33df9315aec 100644 --- a/files/en-us/web/api/speechsynthesisvoice/localservice/index.html +++ b/files/en-us/web/api/speechsynthesisvoice/localservice/index.html @@ -63,8 +63,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechSynthesisVoice.localService")}}

        See also

        diff --git a/files/en-us/web/api/speechsynthesisvoice/name/index.html b/files/en-us/web/api/speechsynthesisvoice/name/index.html index 60946685c8a9333..7f3d1a31aa19dd9 100644 --- a/files/en-us/web/api/speechsynthesisvoice/name/index.html +++ b/files/en-us/web/api/speechsynthesisvoice/name/index.html @@ -59,8 +59,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechSynthesisVoice.name")}}

        See also

        diff --git a/files/en-us/web/api/speechsynthesisvoice/voiceuri/index.html b/files/en-us/web/api/speechsynthesisvoice/voiceuri/index.html index faab13cbfab52e8..c885b67456c6ad4 100644 --- a/files/en-us/web/api/speechsynthesisvoice/voiceuri/index.html +++ b/files/en-us/web/api/speechsynthesisvoice/voiceuri/index.html @@ -62,8 +62,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SpeechSynthesisVoice.voiceURI")}}

        See also

        diff --git a/files/en-us/web/api/staticrange/collapsed/index.html b/files/en-us/web/api/staticrange/collapsed/index.html index 25bfa8a1c28ad2d..6072832026700b9 100644 --- a/files/en-us/web/api/staticrange/collapsed/index.html +++ b/files/en-us/web/api/staticrange/collapsed/index.html @@ -51,6 +51,5 @@

        Browser compatibility

        -

        {{Compat("api.StaticRange.collapsed")}}

        diff --git a/files/en-us/web/api/staticrange/endcontainer/index.html b/files/en-us/web/api/staticrange/endcontainer/index.html index 44d518f2c5558be..4b508b5fc4e018e 100644 --- a/files/en-us/web/api/staticrange/endcontainer/index.html +++ b/files/en-us/web/api/staticrange/endcontainer/index.html @@ -50,6 +50,5 @@

        Browser compatibility

        -

        {{Compat("api.StaticRange.endContainer")}}

        diff --git a/files/en-us/web/api/staticrange/endoffset/index.html b/files/en-us/web/api/staticrange/endoffset/index.html index f5e753a53888877..1be7d791e333836 100644 --- a/files/en-us/web/api/staticrange/endoffset/index.html +++ b/files/en-us/web/api/staticrange/endoffset/index.html @@ -53,6 +53,5 @@

        Browser compatibility

        -

        {{Compat("api.StaticRange.endOffset")}}

        diff --git a/files/en-us/web/api/staticrange/index.html b/files/en-us/web/api/staticrange/index.html index 025b5e61f0963c8..bbcd41911bdc04e 100644 --- a/files/en-us/web/api/staticrange/index.html +++ b/files/en-us/web/api/staticrange/index.html @@ -81,7 +81,6 @@

        Browser compatibility

        -

        {{Compat("api.StaticRange")}}

        See also

        diff --git a/files/en-us/web/api/staticrange/startcontainer/index.html b/files/en-us/web/api/staticrange/startcontainer/index.html index b67fdce66345ddb..22001d168370b32 100644 --- a/files/en-us/web/api/staticrange/startcontainer/index.html +++ b/files/en-us/web/api/staticrange/startcontainer/index.html @@ -53,6 +53,5 @@

        Browser compatibility

        -

        {{Compat("api.StaticRange.startContainer")}}

        diff --git a/files/en-us/web/api/staticrange/startoffset/index.html b/files/en-us/web/api/staticrange/startoffset/index.html index 998b43952c4bbe3..a4d946ada3edf5d 100644 --- a/files/en-us/web/api/staticrange/startoffset/index.html +++ b/files/en-us/web/api/staticrange/startoffset/index.html @@ -51,6 +51,5 @@

        Browser compatibility

        -

        {{Compat("api.StaticRange.startOffset")}}

        diff --git a/files/en-us/web/api/staticrange/staticrange/index.html b/files/en-us/web/api/staticrange/staticrange/index.html index 48d91bb25323027..0c9e13ddc0aa8d1 100644 --- a/files/en-us/web/api/staticrange/staticrange/index.html +++ b/files/en-us/web/api/staticrange/staticrange/index.html @@ -70,6 +70,5 @@

        Browser compatibility

        -

        {{Compat("api.StaticRange.StaticRange")}}

        diff --git a/files/en-us/web/api/staticrange/torange/index.html b/files/en-us/web/api/staticrange/torange/index.html index 3e3b2d208e64c01..39c9db4e47356cd 100644 --- a/files/en-us/web/api/staticrange/torange/index.html +++ b/files/en-us/web/api/staticrange/torange/index.html @@ -47,6 +47,5 @@

        Browser compatibility

        -

        {{Compat("api.StaticRange.toRange")}}

        diff --git a/files/en-us/web/api/stereopannernode/index.html b/files/en-us/web/api/stereopannernode/index.html index 367cbcd210f3391..aa48167b53040b5 100644 --- a/files/en-us/web/api/stereopannernode/index.html +++ b/files/en-us/web/api/stereopannernode/index.html @@ -89,7 +89,6 @@

        Browser compatibility

        -

        {{Compat("api.StereoPannerNode")}}

        diff --git a/files/en-us/web/api/stereopannernode/pan/index.html b/files/en-us/web/api/stereopannernode/pan/index.html index 84f85af7c1ad0fd..5cf4718043a7067 100644 --- a/files/en-us/web/api/stereopannernode/pan/index.html +++ b/files/en-us/web/api/stereopannernode/pan/index.html @@ -55,7 +55,6 @@

        Browser compatibility

        -

        {{Compat("api.StereoPannerNode.pan")}}

        diff --git a/files/en-us/web/api/stereopannernode/stereopannernode/index.html b/files/en-us/web/api/stereopannernode/stereopannernode/index.html index ec64badcdc49147..58e08f10f7478d6 100644 --- a/files/en-us/web/api/stereopannernode/stereopannernode/index.html +++ b/files/en-us/web/api/stereopannernode/stereopannernode/index.html @@ -58,6 +58,5 @@

        Browser Compatibility

        -

        {{Compat("api.StereoPannerNode.StereoPannerNode")}}

        diff --git a/files/en-us/web/api/storage/clear/index.html b/files/en-us/web/api/storage/clear/index.html index 5a7ff2be0d15d59..8a07da7049d5f76 100644 --- a/files/en-us/web/api/storage/clear/index.html +++ b/files/en-us/web/api/storage/clear/index.html @@ -57,8 +57,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Storage.clear")}}

        See also

        diff --git a/files/en-us/web/api/storage/getitem/index.html b/files/en-us/web/api/storage/getitem/index.html index ee30a44c78fdc3c..9382622e984c15c 100644 --- a/files/en-us/web/api/storage/getitem/index.html +++ b/files/en-us/web/api/storage/getitem/index.html @@ -69,8 +69,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Storage.getItem")}}

        See also

        diff --git a/files/en-us/web/api/storage/index.html b/files/en-us/web/api/storage/index.html index b6733921eadb9cc..9861e66d48fa4ff 100644 --- a/files/en-us/web/api/storage/index.html +++ b/files/en-us/web/api/storage/index.html @@ -95,8 +95,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Storage")}}

        See also

        diff --git a/files/en-us/web/api/storage/key/index.html b/files/en-us/web/api/storage/key/index.html index 0af7ed8de9a78c5..1e819fc9e04cf95 100644 --- a/files/en-us/web/api/storage/key/index.html +++ b/files/en-us/web/api/storage/key/index.html @@ -66,8 +66,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Storage.key")}}

        See also

        diff --git a/files/en-us/web/api/storage/length/index.html b/files/en-us/web/api/storage/length/index.html index 46c1db902d4a3b1..9f9b9e7c2d663ed 100644 --- a/files/en-us/web/api/storage/length/index.html +++ b/files/en-us/web/api/storage/length/index.html @@ -56,8 +56,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Storage.length")}}

        See also

        diff --git a/files/en-us/web/api/storage/removeitem/index.html b/files/en-us/web/api/storage/removeitem/index.html index 62473dc7503cc09..50240ba26ba6542 100644 --- a/files/en-us/web/api/storage/removeitem/index.html +++ b/files/en-us/web/api/storage/removeitem/index.html @@ -76,8 +76,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Storage.removeItem")}}

        See also

        diff --git a/files/en-us/web/api/storage/setitem/index.html b/files/en-us/web/api/storage/setitem/index.html index 06059b20a6618af..a9fd45ffa0365f8 100644 --- a/files/en-us/web/api/storage/setitem/index.html +++ b/files/en-us/web/api/storage/setitem/index.html @@ -66,8 +66,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Storage.setItem")}}

        See also

        diff --git a/files/en-us/web/api/storage_access_api/index.html b/files/en-us/web/api/storage_access_api/index.html index 92503bc062a36b4..81dc7e18e649b37 100644 --- a/files/en-us/web/api/storage_access_api/index.html +++ b/files/en-us/web/api/storage_access_api/index.html @@ -81,8 +81,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Document.hasStorageAccess")}}

        {{Compat("api.Document.requestStorageAccess")}}

        diff --git a/files/en-us/web/api/storage_api/index.html b/files/en-us/web/api/storage_api/index.html index b903cc3364dc4d5..c0949425eeef283 100644 --- a/files/en-us/web/api/storage_api/index.html +++ b/files/en-us/web/api/storage_api/index.html @@ -110,7 +110,6 @@

        StorageManager

        -

        {{Compat("api.StorageManager")}}

        diff --git a/files/en-us/web/api/storageestimate/index.html b/files/en-us/web/api/storageestimate/index.html index d658f7f6c20e9f2..e89c6b3dc45153a 100644 --- a/files/en-us/web/api/storageestimate/index.html +++ b/files/en-us/web/api/storageestimate/index.html @@ -49,8 +49,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StorageEstimate")}}

        See also

        diff --git a/files/en-us/web/api/storageestimate/quota/index.html b/files/en-us/web/api/storageestimate/quota/index.html index b5ccc86181371fb..be9952c11112de6 100644 --- a/files/en-us/web/api/storageestimate/quota/index.html +++ b/files/en-us/web/api/storageestimate/quota/index.html @@ -48,8 +48,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StorageEstimate.quota")}}

        See also

        diff --git a/files/en-us/web/api/storageestimate/usage/index.html b/files/en-us/web/api/storageestimate/usage/index.html index 6ff43c50e305bde..35e8950da3d76a5 100644 --- a/files/en-us/web/api/storageestimate/usage/index.html +++ b/files/en-us/web/api/storageestimate/usage/index.html @@ -48,8 +48,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StorageEstimate.usage")}}

        See also

        diff --git a/files/en-us/web/api/storageevent/index.html b/files/en-us/web/api/storageevent/index.html index 22ebe92d20ab9ac..80b38610b7a51d8 100644 --- a/files/en-us/web/api/storageevent/index.html +++ b/files/en-us/web/api/storageevent/index.html @@ -117,6 +117,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StorageEvent")}}

        diff --git a/files/en-us/web/api/storagemanager/estimate/index.html b/files/en-us/web/api/storagemanager/estimate/index.html index 11d82d648c5be86..7905c09ec6991cc 100644 --- a/files/en-us/web/api/storagemanager/estimate/index.html +++ b/files/en-us/web/api/storagemanager/estimate/index.html @@ -88,8 +88,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StorageManager.estimate")}}

        See also

        diff --git a/files/en-us/web/api/storagemanager/index.html b/files/en-us/web/api/storagemanager/index.html index cc2a013cd5c2dd9..43cb5f9a4d779ac 100644 --- a/files/en-us/web/api/storagemanager/index.html +++ b/files/en-us/web/api/storagemanager/index.html @@ -47,6 +47,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StorageManager")}}

        diff --git a/files/en-us/web/api/storagemanager/persist/index.html b/files/en-us/web/api/storagemanager/persist/index.html index e22f0f4b291fe89..ac73cc48ee16536 100644 --- a/files/en-us/web/api/storagemanager/persist/index.html +++ b/files/en-us/web/api/storagemanager/persist/index.html @@ -53,6 +53,4 @@

        Specifications

        Browser Compatibility

        - -

        {{Compat("api.StorageManager.persist")}}

        diff --git a/files/en-us/web/api/storagemanager/persisted/index.html b/files/en-us/web/api/storagemanager/persisted/index.html index 0ecbd905ebf0231..70e88dd18b53b1b 100644 --- a/files/en-us/web/api/storagemanager/persisted/index.html +++ b/files/en-us/web/api/storagemanager/persisted/index.html @@ -53,6 +53,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StorageManager.persisted")}}

        diff --git a/files/en-us/web/api/storagequota/index.html b/files/en-us/web/api/storagequota/index.html index 7d7193055bb0e0f..f72230fe93fe345 100644 --- a/files/en-us/web/api/storagequota/index.html +++ b/files/en-us/web/api/storagequota/index.html @@ -48,6 +48,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StorageQuota")}}

        diff --git a/files/en-us/web/api/storagequota/queryinfo/index.html b/files/en-us/web/api/storagequota/queryinfo/index.html index b1a0e9fb3c2a228..5702b7e77cdc82a 100644 --- a/files/en-us/web/api/storagequota/queryinfo/index.html +++ b/files/en-us/web/api/storagequota/queryinfo/index.html @@ -44,6 +44,5 @@

        Browser compatibility

        -

        {{Compat("api.StorageQuota.queryInfo")}}

        diff --git a/files/en-us/web/api/storagequota/requestpersistentquota/index.html b/files/en-us/web/api/storagequota/requestpersistentquota/index.html index b96051cf89a66f7..74f1ce96e38768c 100644 --- a/files/en-us/web/api/storagequota/requestpersistentquota/index.html +++ b/files/en-us/web/api/storagequota/requestpersistentquota/index.html @@ -44,6 +44,5 @@

        Browser compatibility

        -

        {{Compat("api.StorageQuota.requestPersistentQuota")}}

        diff --git a/files/en-us/web/api/storagequota/supportedtypes/index.html b/files/en-us/web/api/storagequota/supportedtypes/index.html index 4eb9cde5e58c69b..1bb645fd31efd9d 100644 --- a/files/en-us/web/api/storagequota/supportedtypes/index.html +++ b/files/en-us/web/api/storagequota/supportedtypes/index.html @@ -40,6 +40,5 @@

        Browser compatibility

        -

        {{Compat("api.StorageQuota.supportedTypes")}}

        diff --git a/files/en-us/web/api/stylepropertymap/append/index.html b/files/en-us/web/api/stylepropertymap/append/index.html index 22b493397a00b0a..3075fca095c09ae 100644 --- a/files/en-us/web/api/stylepropertymap/append/index.html +++ b/files/en-us/web/api/stylepropertymap/append/index.html @@ -61,6 +61,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMap.append")}}

        diff --git a/files/en-us/web/api/stylepropertymap/clear/index.html b/files/en-us/web/api/stylepropertymap/clear/index.html index 12ed5cfcfa98985..ceb778395c269b0 100644 --- a/files/en-us/web/api/stylepropertymap/clear/index.html +++ b/files/en-us/web/api/stylepropertymap/clear/index.html @@ -56,6 +56,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMap.clear")}}

        diff --git a/files/en-us/web/api/stylepropertymap/delete/index.html b/files/en-us/web/api/stylepropertymap/delete/index.html index e8b393ed5776658..e1d1ae51fb2626e 100644 --- a/files/en-us/web/api/stylepropertymap/delete/index.html +++ b/files/en-us/web/api/stylepropertymap/delete/index.html @@ -59,6 +59,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMap.delete")}}

        diff --git a/files/en-us/web/api/stylepropertymap/index.html b/files/en-us/web/api/stylepropertymap/index.html index 7b468a0ed61111e..b4c5502cbc09e57 100644 --- a/files/en-us/web/api/stylepropertymap/index.html +++ b/files/en-us/web/api/stylepropertymap/index.html @@ -54,6 +54,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMap")}}

        diff --git a/files/en-us/web/api/stylepropertymap/set/index.html b/files/en-us/web/api/stylepropertymap/set/index.html index 768f41c8876e105..6e2deb890b57d1a 100644 --- a/files/en-us/web/api/stylepropertymap/set/index.html +++ b/files/en-us/web/api/stylepropertymap/set/index.html @@ -61,6 +61,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMap.set")}}

        diff --git a/files/en-us/web/api/stylepropertymapreadonly/entries/index.html b/files/en-us/web/api/stylepropertymapreadonly/entries/index.html index e3f643b56f5b0cd..3c5959d74550639 100644 --- a/files/en-us/web/api/stylepropertymapreadonly/entries/index.html +++ b/files/en-us/web/api/stylepropertymapreadonly/entries/index.html @@ -63,6 +63,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMapReadOnly.entries")}}

        diff --git a/files/en-us/web/api/stylepropertymapreadonly/foreach/index.html b/files/en-us/web/api/stylepropertymapreadonly/foreach/index.html index e0e6f1103e9b938..68ed52ce586844d 100644 --- a/files/en-us/web/api/stylepropertymapreadonly/foreach/index.html +++ b/files/en-us/web/api/stylepropertymapreadonly/foreach/index.html @@ -80,6 +80,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMapReadOnly.forEach")}}

        diff --git a/files/en-us/web/api/stylepropertymapreadonly/get/index.html b/files/en-us/web/api/stylepropertymapreadonly/get/index.html index 7d0df0164c67477..7e4ab42d7dfab8d 100644 --- a/files/en-us/web/api/stylepropertymapreadonly/get/index.html +++ b/files/en-us/web/api/stylepropertymapreadonly/get/index.html @@ -99,8 +99,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMapReadOnly.get")}}

        See Also

        diff --git a/files/en-us/web/api/stylepropertymapreadonly/getall/index.html b/files/en-us/web/api/stylepropertymapreadonly/getall/index.html index 2e997a83da3ecb2..ee825d10b300065 100644 --- a/files/en-us/web/api/stylepropertymapreadonly/getall/index.html +++ b/files/en-us/web/api/stylepropertymapreadonly/getall/index.html @@ -65,6 +65,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMapReadOnly.getAll")}}

        diff --git a/files/en-us/web/api/stylepropertymapreadonly/has/index.html b/files/en-us/web/api/stylepropertymapreadonly/has/index.html index 43d462af260b539..0be9e6e3236dbe0 100644 --- a/files/en-us/web/api/stylepropertymapreadonly/has/index.html +++ b/files/en-us/web/api/stylepropertymapreadonly/has/index.html @@ -62,6 +62,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMapReadOnly.has")}}

        diff --git a/files/en-us/web/api/stylepropertymapreadonly/index.html b/files/en-us/web/api/stylepropertymapreadonly/index.html index 2fae3d69ae3b9b5..656b1e1b646412b 100644 --- a/files/en-us/web/api/stylepropertymapreadonly/index.html +++ b/files/en-us/web/api/stylepropertymapreadonly/index.html @@ -104,6 +104,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMapReadOnly")}}

        diff --git a/files/en-us/web/api/stylepropertymapreadonly/keys/index.html b/files/en-us/web/api/stylepropertymapreadonly/keys/index.html index 9b9da00a438110e..6553bcb84aab431 100644 --- a/files/en-us/web/api/stylepropertymapreadonly/keys/index.html +++ b/files/en-us/web/api/stylepropertymapreadonly/keys/index.html @@ -61,6 +61,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMapReadOnly.keys")}}

        diff --git a/files/en-us/web/api/stylepropertymapreadonly/size/index.html b/files/en-us/web/api/stylepropertymapreadonly/size/index.html index 027f21414000c3f..5db8f2ae9318590 100644 --- a/files/en-us/web/api/stylepropertymapreadonly/size/index.html +++ b/files/en-us/web/api/stylepropertymapreadonly/size/index.html @@ -57,6 +57,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMapReadOnly.size")}}

        diff --git a/files/en-us/web/api/stylepropertymapreadonly/values/index.html b/files/en-us/web/api/stylepropertymapreadonly/values/index.html index 41e0f4bac47703c..c057a61d3d71231 100644 --- a/files/en-us/web/api/stylepropertymapreadonly/values/index.html +++ b/files/en-us/web/api/stylepropertymapreadonly/values/index.html @@ -61,6 +61,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StylePropertyMapReadOnly.values")}}

        diff --git a/files/en-us/web/api/stylesheet/disabled/index.html b/files/en-us/web/api/stylesheet/disabled/index.html index ab2dc478023c95e..05e88286a7ca123 100644 --- a/files/en-us/web/api/stylesheet/disabled/index.html +++ b/files/en-us/web/api/stylesheet/disabled/index.html @@ -52,6 +52,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StyleSheet.disabled")}}

        diff --git a/files/en-us/web/api/stylesheet/href/index.html b/files/en-us/web/api/stylesheet/href/index.html index 96113ca843e7242..d9c294a08cfbe18 100644 --- a/files/en-us/web/api/stylesheet/href/index.html +++ b/files/en-us/web/api/stylesheet/href/index.html @@ -69,6 +69,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StyleSheet.href")}}

        diff --git a/files/en-us/web/api/stylesheet/index.html b/files/en-us/web/api/stylesheet/index.html index 3b0b2c649e7f9cf..1474a308ea4679f 100644 --- a/files/en-us/web/api/stylesheet/index.html +++ b/files/en-us/web/api/stylesheet/index.html @@ -57,8 +57,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StyleSheet")}}

        See also

        diff --git a/files/en-us/web/api/stylesheet/media/index.html b/files/en-us/web/api/stylesheet/media/index.html index 19fe1c892ca8fac..1606d2a0f903d16 100644 --- a/files/en-us/web/api/stylesheet/media/index.html +++ b/files/en-us/web/api/stylesheet/media/index.html @@ -69,6 +69,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StyleSheet.media")}}

        diff --git a/files/en-us/web/api/stylesheet/ownernode/index.html b/files/en-us/web/api/stylesheet/ownernode/index.html index 69d80b1f68add88..a0b72c4c26dad33 100644 --- a/files/en-us/web/api/stylesheet/ownernode/index.html +++ b/files/en-us/web/api/stylesheet/ownernode/index.html @@ -57,6 +57,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StyleSheet.ownerNode")}}

        diff --git a/files/en-us/web/api/stylesheet/parentstylesheet/index.html b/files/en-us/web/api/stylesheet/parentstylesheet/index.html index c59533924c1a51a..688f016c076bf3e 100644 --- a/files/en-us/web/api/stylesheet/parentstylesheet/index.html +++ b/files/en-us/web/api/stylesheet/parentstylesheet/index.html @@ -51,6 +51,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StyleSheet.parentStyleSheet")}}

        diff --git a/files/en-us/web/api/stylesheet/title/index.html b/files/en-us/web/api/stylesheet/title/index.html index 2bf9c70a170b97a..93dd54d2eced15e 100644 --- a/files/en-us/web/api/stylesheet/title/index.html +++ b/files/en-us/web/api/stylesheet/title/index.html @@ -35,6 +35,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StyleSheet.title")}}

        diff --git a/files/en-us/web/api/stylesheet/type/index.html b/files/en-us/web/api/stylesheet/type/index.html index 0bcc065219fe4e7..474252115de7995 100644 --- a/files/en-us/web/api/stylesheet/type/index.html +++ b/files/en-us/web/api/stylesheet/type/index.html @@ -43,6 +43,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StyleSheet.type")}}

        diff --git a/files/en-us/web/api/stylesheetlist/index.html b/files/en-us/web/api/stylesheetlist/index.html index 4722cd1f129a9fc..6bdf5a6f6654a4f 100644 --- a/files/en-us/web/api/stylesheetlist/index.html +++ b/files/en-us/web/api/stylesheetlist/index.html @@ -57,6 +57,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.StyleSheetList")}}

        diff --git a/files/en-us/web/api/subtlecrypto/decrypt/index.html b/files/en-us/web/api/subtlecrypto/decrypt/index.html index 6243683edd37ac1..85cc5bdf8d32c89 100644 --- a/files/en-us/web/api/subtlecrypto/decrypt/index.html +++ b/files/en-us/web/api/subtlecrypto/decrypt/index.html @@ -141,8 +141,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto.decrypt")}}

        See also

        diff --git a/files/en-us/web/api/subtlecrypto/derivebits/index.html b/files/en-us/web/api/subtlecrypto/derivebits/index.html index 0ec86a90c53a8e9..37b541df6ff9a8b 100644 --- a/files/en-us/web/api/subtlecrypto/derivebits/index.html +++ b/files/en-us/web/api/subtlecrypto/derivebits/index.html @@ -201,8 +201,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto.deriveBits")}}

        See also

        diff --git a/files/en-us/web/api/subtlecrypto/derivekey/index.html b/files/en-us/web/api/subtlecrypto/derivekey/index.html index 98736fc0e3dcc70..1afa19e455b4fdc 100644 --- a/files/en-us/web/api/subtlecrypto/derivekey/index.html +++ b/files/en-us/web/api/subtlecrypto/derivekey/index.html @@ -242,8 +242,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto.deriveKey")}}

        See also

        diff --git a/files/en-us/web/api/subtlecrypto/digest/index.html b/files/en-us/web/api/subtlecrypto/digest/index.html index 341463b6150b029..43ba37838dc6615 100644 --- a/files/en-us/web/api/subtlecrypto/digest/index.html +++ b/files/en-us/web/api/subtlecrypto/digest/index.html @@ -127,8 +127,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto.digest")}}

        diff --git a/files/en-us/web/api/subtlecrypto/encrypt/index.html b/files/en-us/web/api/subtlecrypto/encrypt/index.html index e1a1a5aee400a21..517ff7fcbc704da 100644 --- a/files/en-us/web/api/subtlecrypto/encrypt/index.html +++ b/files/en-us/web/api/subtlecrypto/encrypt/index.html @@ -235,8 +235,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto.encrypt")}}

        See also

        diff --git a/files/en-us/web/api/subtlecrypto/exportkey/index.html b/files/en-us/web/api/subtlecrypto/exportkey/index.html index 7511e56a583b09b..67489100b92e02f 100644 --- a/files/en-us/web/api/subtlecrypto/exportkey/index.html +++ b/files/en-us/web/api/subtlecrypto/exportkey/index.html @@ -262,8 +262,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto.exportKey")}}

        See also

        diff --git a/files/en-us/web/api/subtlecrypto/generatekey/index.html b/files/en-us/web/api/subtlecrypto/generatekey/index.html index 1547d765a602c10..b6280b5cff068f3 100644 --- a/files/en-us/web/api/subtlecrypto/generatekey/index.html +++ b/files/en-us/web/api/subtlecrypto/generatekey/index.html @@ -142,8 +142,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto.generateKey")}}

        See also

        diff --git a/files/en-us/web/api/subtlecrypto/importkey/index.html b/files/en-us/web/api/subtlecrypto/importkey/index.html index efb824e23071987..051fd0d2bead18e 100644 --- a/files/en-us/web/api/subtlecrypto/importkey/index.html +++ b/files/en-us/web/api/subtlecrypto/importkey/index.html @@ -349,8 +349,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto.importKey")}}

        See also

        diff --git a/files/en-us/web/api/subtlecrypto/index.html b/files/en-us/web/api/subtlecrypto/index.html index 5160569bfc0aedb..16645330130bca1 100644 --- a/files/en-us/web/api/subtlecrypto/index.html +++ b/files/en-us/web/api/subtlecrypto/index.html @@ -280,8 +280,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto")}}

        See also

        diff --git a/files/en-us/web/api/subtlecrypto/sign/index.html b/files/en-us/web/api/subtlecrypto/sign/index.html index 4f1ae6dd83e71f8..7ef6c9f1b8a890a 100644 --- a/files/en-us/web/api/subtlecrypto/sign/index.html +++ b/files/en-us/web/api/subtlecrypto/sign/index.html @@ -204,8 +204,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto.sign")}}

        See also

        diff --git a/files/en-us/web/api/subtlecrypto/unwrapkey/index.html b/files/en-us/web/api/subtlecrypto/unwrapkey/index.html index 2c776e4af3d1550..cb2cfe37d353557 100644 --- a/files/en-us/web/api/subtlecrypto/unwrapkey/index.html +++ b/files/en-us/web/api/subtlecrypto/unwrapkey/index.html @@ -402,8 +402,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto.unwrapKey")}}

        See also

        diff --git a/files/en-us/web/api/subtlecrypto/verify/index.html b/files/en-us/web/api/subtlecrypto/verify/index.html index 9ae657cd5a2beec..326870040c4ae52 100644 --- a/files/en-us/web/api/subtlecrypto/verify/index.html +++ b/files/en-us/web/api/subtlecrypto/verify/index.html @@ -228,8 +228,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto.verify")}}

        See also

        diff --git a/files/en-us/web/api/subtlecrypto/wrapkey/index.html b/files/en-us/web/api/subtlecrypto/wrapkey/index.html index e35263c394932cc..d57b2268ab15f21 100644 --- a/files/en-us/web/api/subtlecrypto/wrapkey/index.html +++ b/files/en-us/web/api/subtlecrypto/wrapkey/index.html @@ -451,8 +451,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SubtleCrypto.wrapKey")}}

        See also

        diff --git a/files/en-us/web/api/svgaelement/index.html b/files/en-us/web/api/svgaelement/index.html index 84e434199d44de3..0bb2cedc81bb10e 100644 --- a/files/en-us/web/api/svgaelement/index.html +++ b/files/en-us/web/api/svgaelement/index.html @@ -84,8 +84,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAElement")}}

        See also

        diff --git a/files/en-us/web/api/svgaelement/target/index.html b/files/en-us/web/api/svgaelement/target/index.html index 6b177790490c0e7..4deb69db5584def 100644 --- a/files/en-us/web/api/svgaelement/target/index.html +++ b/files/en-us/web/api/svgaelement/target/index.html @@ -54,8 +54,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAElement.target")}}

        See also

        diff --git a/files/en-us/web/api/svgaltglyphdefelement/index.html b/files/en-us/web/api/svgaltglyphdefelement/index.html index 72218bb6b58d70b..9262e5ea9fd37d9 100644 --- a/files/en-us/web/api/svgaltglyphdefelement/index.html +++ b/files/en-us/web/api/svgaltglyphdefelement/index.html @@ -45,8 +45,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAltGlyphDefElement")}}

        See also

        diff --git a/files/en-us/web/api/svgaltglyphelement/format/index.html b/files/en-us/web/api/svgaltglyphelement/format/index.html index 9897a480cb2cd3a..6f5912ec15e4992 100644 --- a/files/en-us/web/api/svgaltglyphelement/format/index.html +++ b/files/en-us/web/api/svgaltglyphelement/format/index.html @@ -93,8 +93,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAltGlyphElement.format")}}

        See Also

        diff --git a/files/en-us/web/api/svgaltglyphelement/glyphref/index.html b/files/en-us/web/api/svgaltglyphelement/glyphref/index.html index b18614379983969..abbe82ea006f8b5 100644 --- a/files/en-us/web/api/svgaltglyphelement/glyphref/index.html +++ b/files/en-us/web/api/svgaltglyphelement/glyphref/index.html @@ -49,8 +49,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAltGlyphElement.glyphRef")}}

        See Also

        diff --git a/files/en-us/web/api/svgaltglyphelement/index.html b/files/en-us/web/api/svgaltglyphelement/index.html index e04e3b3d7024bb5..14cbfac98954cb5 100644 --- a/files/en-us/web/api/svgaltglyphelement/index.html +++ b/files/en-us/web/api/svgaltglyphelement/index.html @@ -47,8 +47,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAltGlyphElement")}}

        See Also

        diff --git a/files/en-us/web/api/svgaltglyphitemelement/index.html b/files/en-us/web/api/svgaltglyphitemelement/index.html index 9cf15dfda7ff764..03b1e368fb697c1 100644 --- a/files/en-us/web/api/svgaltglyphitemelement/index.html +++ b/files/en-us/web/api/svgaltglyphitemelement/index.html @@ -45,8 +45,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAltGlyphItemElement")}}

        See also

        diff --git a/files/en-us/web/api/svgangle/index.html b/files/en-us/web/api/svgangle/index.html index a94d392cd34c12e..b67bfe8d8b8a8c7 100644 --- a/files/en-us/web/api/svgangle/index.html +++ b/files/en-us/web/api/svgangle/index.html @@ -108,6 +108,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAngle")}}

        diff --git a/files/en-us/web/api/svganimatecolorelement/index.html b/files/en-us/web/api/svganimatecolorelement/index.html index 544c4698d7dc46a..5c581b60ef98e80 100644 --- a/files/en-us/web/api/svganimatecolorelement/index.html +++ b/files/en-us/web/api/svganimatecolorelement/index.html @@ -42,6 +42,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimateColorElement")}}

        diff --git a/files/en-us/web/api/svganimatedangle/index.html b/files/en-us/web/api/svganimatedangle/index.html index 90f9e2435523492..9d09b416765202e 100644 --- a/files/en-us/web/api/svganimatedangle/index.html +++ b/files/en-us/web/api/svganimatedangle/index.html @@ -73,6 +73,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedAngle")}}

        diff --git a/files/en-us/web/api/svganimatedboolean/index.html b/files/en-us/web/api/svganimatedboolean/index.html index 16ed6b0e6d9ece3..7a4962e681bbb91 100644 --- a/files/en-us/web/api/svganimatedboolean/index.html +++ b/files/en-us/web/api/svganimatedboolean/index.html @@ -72,6 +72,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedBoolean")}}

        diff --git a/files/en-us/web/api/svganimatedenumeration/index.html b/files/en-us/web/api/svganimatedenumeration/index.html index 0273b6f3b15f3f8..3ed4ce5c70fede7 100644 --- a/files/en-us/web/api/svganimatedenumeration/index.html +++ b/files/en-us/web/api/svganimatedenumeration/index.html @@ -73,6 +73,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedEnumeration")}}

        diff --git a/files/en-us/web/api/svganimatedlengthlist/index.html b/files/en-us/web/api/svganimatedlengthlist/index.html index 8fb85d6a676a54b..43a28e610a43b9f 100644 --- a/files/en-us/web/api/svganimatedlengthlist/index.html +++ b/files/en-us/web/api/svganimatedlengthlist/index.html @@ -73,6 +73,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedLengthList")}}

        diff --git a/files/en-us/web/api/svganimatednumber/index.html b/files/en-us/web/api/svganimatednumber/index.html index f26602965d237bf..01c0289a6648274 100644 --- a/files/en-us/web/api/svganimatednumber/index.html +++ b/files/en-us/web/api/svganimatednumber/index.html @@ -72,6 +72,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedNumber")}}

        diff --git a/files/en-us/web/api/svganimatednumberlist/index.html b/files/en-us/web/api/svganimatednumberlist/index.html index 96b0f2d99c58bf7..5b29720dbcbffc0 100644 --- a/files/en-us/web/api/svganimatednumberlist/index.html +++ b/files/en-us/web/api/svganimatednumberlist/index.html @@ -59,6 +59,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedNumberList")}}

        diff --git a/files/en-us/web/api/svganimatedpoints/index.html b/files/en-us/web/api/svganimatedpoints/index.html index f6aa945f9b3b1ed..32def311afead2d 100644 --- a/files/en-us/web/api/svganimatedpoints/index.html +++ b/files/en-us/web/api/svganimatedpoints/index.html @@ -74,6 +74,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedPoints")}}

        diff --git a/files/en-us/web/api/svganimatedpreserveaspectratio/index.html b/files/en-us/web/api/svganimatedpreserveaspectratio/index.html index f8a46c612a39251..00c066299cd89b1 100644 --- a/files/en-us/web/api/svganimatedpreserveaspectratio/index.html +++ b/files/en-us/web/api/svganimatedpreserveaspectratio/index.html @@ -57,6 +57,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedPreserveAspectRatio")}}

        diff --git a/files/en-us/web/api/svganimatedrect/index.html b/files/en-us/web/api/svganimatedrect/index.html index e2c0b1e85ccd9c0..a431fac04d58357 100644 --- a/files/en-us/web/api/svganimatedrect/index.html +++ b/files/en-us/web/api/svganimatedrect/index.html @@ -71,6 +71,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedRect")}}

        diff --git a/files/en-us/web/api/svganimatedstring/animval/index.html b/files/en-us/web/api/svganimatedstring/animval/index.html index feea07bd8e3e88c..de2d48f42bd9f15 100644 --- a/files/en-us/web/api/svganimatedstring/animval/index.html +++ b/files/en-us/web/api/svganimatedstring/animval/index.html @@ -38,6 +38,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedString.animVal")}}

        diff --git a/files/en-us/web/api/svganimatedstring/baseval/index.html b/files/en-us/web/api/svganimatedstring/baseval/index.html index e19beb1e743b9c7..1fc64436093bd75 100644 --- a/files/en-us/web/api/svganimatedstring/baseval/index.html +++ b/files/en-us/web/api/svganimatedstring/baseval/index.html @@ -30,6 +30,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedString.baseVal")}}

        diff --git a/files/en-us/web/api/svganimatedstring/index.html b/files/en-us/web/api/svganimatedstring/index.html index d2682103fc0b0f1..967586ef2eff1a7 100644 --- a/files/en-us/web/api/svganimatedstring/index.html +++ b/files/en-us/web/api/svganimatedstring/index.html @@ -52,6 +52,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedString")}}

        diff --git a/files/en-us/web/api/svganimatedtransformlist/index.html b/files/en-us/web/api/svganimatedtransformlist/index.html index 94f1dc06f6eeb06..4eed0b1ce601dd0 100644 --- a/files/en-us/web/api/svganimatedtransformlist/index.html +++ b/files/en-us/web/api/svganimatedtransformlist/index.html @@ -72,6 +72,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGAnimatedTransformList")}}

        diff --git a/files/en-us/web/api/svganimateelement/index.html b/files/en-us/web/api/svganimateelement/index.html index da4d9d829cf77e6..d1dc47c56957aed 100644 --- a/files/en-us/web/api/svganimateelement/index.html +++ b/files/en-us/web/api/svganimateelement/index.html @@ -46,6 +46,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimateElement")}}

        diff --git a/files/en-us/web/api/svganimatemotionelement/index.html b/files/en-us/web/api/svganimatemotionelement/index.html index 097365741fbca96..598021632eaa173 100644 --- a/files/en-us/web/api/svganimatemotionelement/index.html +++ b/files/en-us/web/api/svganimatemotionelement/index.html @@ -45,6 +45,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimateMotionElement")}}

        diff --git a/files/en-us/web/api/svganimatetransformelement/index.html b/files/en-us/web/api/svganimatetransformelement/index.html index 1988d0b0696f435..af536cb489fe94c 100644 --- a/files/en-us/web/api/svganimatetransformelement/index.html +++ b/files/en-us/web/api/svganimatetransformelement/index.html @@ -48,8 +48,6 @@

        Browser compatibility

         

        - -

        {{Compat("api.SVGAnimateTransformElement")}}

         

        diff --git a/files/en-us/web/api/svganimationelement/beginevent_event/index.html b/files/en-us/web/api/svganimationelement/beginevent_event/index.html index 645ec0c20540f85..5629cc73d34ffdb 100644 --- a/files/en-us/web/api/svganimationelement/beginevent_event/index.html +++ b/files/en-us/web/api/svganimationelement/beginevent_event/index.html @@ -66,7 +66,6 @@

        Animated circle

        let animateElem = document.querySelector('animateMotion'); let list = document.querySelector('ul'); - animateElem.addEventListener('beginEvent', () => { let listItem = document.createElement('li'); listItem.textContent = 'beginEvent fired'; @@ -113,8 +112,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimationElement.beginEvent_event")}}

        See also

        diff --git a/files/en-us/web/api/svganimationelement/endevent_event/index.html b/files/en-us/web/api/svganimationelement/endevent_event/index.html index 90cf65bf2e4e71d..3725b4586ba0a23 100644 --- a/files/en-us/web/api/svganimationelement/endevent_event/index.html +++ b/files/en-us/web/api/svganimationelement/endevent_event/index.html @@ -127,8 +127,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimationElement.endEvent_event")}}

        See also

        diff --git a/files/en-us/web/api/svganimationelement/index.html b/files/en-us/web/api/svganimationelement/index.html index 37d23c861e89068..4362fb9f3733cc1 100644 --- a/files/en-us/web/api/svganimationelement/index.html +++ b/files/en-us/web/api/svganimationelement/index.html @@ -88,6 +88,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimationElement")}}

        diff --git a/files/en-us/web/api/svganimationelement/onbegin/index.html b/files/en-us/web/api/svganimationelement/onbegin/index.html index 05eae318a8b3f3f..083a8691493e7fd 100644 --- a/files/en-us/web/api/svganimationelement/onbegin/index.html +++ b/files/en-us/web/api/svganimationelement/onbegin/index.html @@ -39,6 +39,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimationElement.onbegin")}}

        diff --git a/files/en-us/web/api/svganimationelement/onend/index.html b/files/en-us/web/api/svganimationelement/onend/index.html index d000cbd8ffe8539..18e3235c7949c6a 100644 --- a/files/en-us/web/api/svganimationelement/onend/index.html +++ b/files/en-us/web/api/svganimationelement/onend/index.html @@ -39,6 +39,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimationElement.onend")}}

        diff --git a/files/en-us/web/api/svganimationelement/onrepeat/index.html b/files/en-us/web/api/svganimationelement/onrepeat/index.html index c6aa5ea45cbfdc9..4aa831e72f21a45 100644 --- a/files/en-us/web/api/svganimationelement/onrepeat/index.html +++ b/files/en-us/web/api/svganimationelement/onrepeat/index.html @@ -39,6 +39,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimationElement.onrepeat")}}

        diff --git a/files/en-us/web/api/svganimationelement/repeatevent_event/index.html b/files/en-us/web/api/svganimationelement/repeatevent_event/index.html index e7f684e7d9bc991..dd930da8c37bd0f 100644 --- a/files/en-us/web/api/svganimationelement/repeatevent_event/index.html +++ b/files/en-us/web/api/svganimationelement/repeatevent_event/index.html @@ -114,8 +114,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimationElement.repeatEvent_event")}}

        See also

        diff --git a/files/en-us/web/api/svganimationelement/targetelement/index.html b/files/en-us/web/api/svganimationelement/targetelement/index.html index ff0cee4572800f9..2a266bfbe783830 100644 --- a/files/en-us/web/api/svganimationelement/targetelement/index.html +++ b/files/en-us/web/api/svganimationelement/targetelement/index.html @@ -43,6 +43,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGAnimationElement.targetElement")}}

        diff --git a/files/en-us/web/api/svgcircleelement/cx/index.html b/files/en-us/web/api/svgcircleelement/cx/index.html index e2d5dbb32948100..1a1d717481ac04f 100644 --- a/files/en-us/web/api/svgcircleelement/cx/index.html +++ b/files/en-us/web/api/svgcircleelement/cx/index.html @@ -62,8 +62,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGCircleElement.cx")}}

        See also

        diff --git a/files/en-us/web/api/svgcircleelement/cy/index.html b/files/en-us/web/api/svgcircleelement/cy/index.html index acb9e253a537239..940ccb539220011 100644 --- a/files/en-us/web/api/svgcircleelement/cy/index.html +++ b/files/en-us/web/api/svgcircleelement/cy/index.html @@ -62,8 +62,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGCircleElement.cy")}}

        See also

        diff --git a/files/en-us/web/api/svgcircleelement/index.html b/files/en-us/web/api/svgcircleelement/index.html index 1688b4dada3c8cb..077cfeef2a8254c 100644 --- a/files/en-us/web/api/svgcircleelement/index.html +++ b/files/en-us/web/api/svgcircleelement/index.html @@ -90,8 +90,6 @@

        Specifications

        Browser Compatibility

        - -

        {{Compat("api.SVGCircleElement")}}

        See also

        diff --git a/files/en-us/web/api/svgcircleelement/r/index.html b/files/en-us/web/api/svgcircleelement/r/index.html index 1e43ccaf520c590..b3f193b15756d24 100644 --- a/files/en-us/web/api/svgcircleelement/r/index.html +++ b/files/en-us/web/api/svgcircleelement/r/index.html @@ -62,8 +62,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGCircleElement.r")}}

        See also

        diff --git a/files/en-us/web/api/svgclippathelement/index.html b/files/en-us/web/api/svgclippathelement/index.html index 773b4627408314a..57efa7c9d194bae 100644 --- a/files/en-us/web/api/svgclippathelement/index.html +++ b/files/en-us/web/api/svgclippathelement/index.html @@ -51,8 +51,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGClipPathElement")}}

        See also

        diff --git a/files/en-us/web/api/svgcolorprofileelement/index.html b/files/en-us/web/api/svgcolorprofileelement/index.html index 236449a1121973f..95919a4db30f445 100644 --- a/files/en-us/web/api/svgcolorprofileelement/index.html +++ b/files/en-us/web/api/svgcolorprofileelement/index.html @@ -47,8 +47,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGColorProfileElement")}}

        See also

        diff --git a/files/en-us/web/api/svgcomponenttransferfunctionelement/index.html b/files/en-us/web/api/svgcomponenttransferfunctionelement/index.html index df97e26f5a2ae5a..a3b176af5539908 100644 --- a/files/en-us/web/api/svgcomponenttransferfunctionelement/index.html +++ b/files/en-us/web/api/svgcomponenttransferfunctionelement/index.html @@ -105,8 +105,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGComponentTransferFunctionElement")}}

        See also

        diff --git a/files/en-us/web/api/svgcursorelement/index.html b/files/en-us/web/api/svgcursorelement/index.html index 4c14d3e888db5d0..1737e3c22ce62eb 100644 --- a/files/en-us/web/api/svgcursorelement/index.html +++ b/files/en-us/web/api/svgcursorelement/index.html @@ -48,8 +48,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGCursorElement")}}

        See also

        diff --git a/files/en-us/web/api/svgdefselement/index.html b/files/en-us/web/api/svgdefselement/index.html index fd3c41e91329086..4803defb9af77dc 100644 --- a/files/en-us/web/api/svgdefselement/index.html +++ b/files/en-us/web/api/svgdefselement/index.html @@ -46,6 +46,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGDefsElement")}}

        diff --git a/files/en-us/web/api/svgdescelement/index.html b/files/en-us/web/api/svgdescelement/index.html index 5e24fa2164a13bc..448ab2fe2e98604 100644 --- a/files/en-us/web/api/svgdescelement/index.html +++ b/files/en-us/web/api/svgdescelement/index.html @@ -46,8 +46,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGDescElement")}}

        See also

        diff --git a/files/en-us/web/api/svgelement/abort_event/index.html b/files/en-us/web/api/svgelement/abort_event/index.html index ccb2a7239a29c20..5a670165cb12c02 100644 --- a/files/en-us/web/api/svgelement/abort_event/index.html +++ b/files/en-us/web/api/svgelement/abort_event/index.html @@ -47,6 +47,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGElement.abort_event")}}

        diff --git a/files/en-us/web/api/svgelement/error_event/index.html b/files/en-us/web/api/svgelement/error_event/index.html index 50693b10be7cfbe..f2d8f4bb8ecb1da 100644 --- a/files/en-us/web/api/svgelement/error_event/index.html +++ b/files/en-us/web/api/svgelement/error_event/index.html @@ -60,6 +60,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGElement.error_event")}}

        diff --git a/files/en-us/web/api/svgelement/index.html b/files/en-us/web/api/svgelement/index.html index 38526ef0b9d47b7..2368be2b5e441bf 100644 --- a/files/en-us/web/api/svgelement/index.html +++ b/files/en-us/web/api/svgelement/index.html @@ -84,8 +84,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGElement")}}

        See also

        diff --git a/files/en-us/web/api/svgelement/load_event/index.html b/files/en-us/web/api/svgelement/load_event/index.html index 2fb0cf40258a3f3..79d2b3b3d6ae9ca 100644 --- a/files/en-us/web/api/svgelement/load_event/index.html +++ b/files/en-us/web/api/svgelement/load_event/index.html @@ -58,6 +58,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGElement.load_event")}}

        diff --git a/files/en-us/web/api/svgelement/resize_event/index.html b/files/en-us/web/api/svgelement/resize_event/index.html index 8e5205f97f53175..c7e6e525ca043f2 100644 --- a/files/en-us/web/api/svgelement/resize_event/index.html +++ b/files/en-us/web/api/svgelement/resize_event/index.html @@ -60,6 +60,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGElement.resize_event")}}

        diff --git a/files/en-us/web/api/svgelement/scroll_event/index.html b/files/en-us/web/api/svgelement/scroll_event/index.html index ffd265d2b8ad3ba..c4b1bb36b617096 100644 --- a/files/en-us/web/api/svgelement/scroll_event/index.html +++ b/files/en-us/web/api/svgelement/scroll_event/index.html @@ -58,6 +58,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGElement.scroll_event")}}

        diff --git a/files/en-us/web/api/svgelement/unload_event/index.html b/files/en-us/web/api/svgelement/unload_event/index.html index 401f966d87eed5d..b66d2c6935acf57 100644 --- a/files/en-us/web/api/svgelement/unload_event/index.html +++ b/files/en-us/web/api/svgelement/unload_event/index.html @@ -58,6 +58,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGElement.unload_event")}}

        diff --git a/files/en-us/web/api/svgellipseelement/index.html b/files/en-us/web/api/svgellipseelement/index.html index 71a6a5d1576d49d..dbb4fcbe8c19269 100644 --- a/files/en-us/web/api/svgellipseelement/index.html +++ b/files/en-us/web/api/svgellipseelement/index.html @@ -83,8 +83,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGEllipseElement")}}

        See also

        diff --git a/files/en-us/web/api/svgexternalresourcesrequired/index.html b/files/en-us/web/api/svgexternalresourcesrequired/index.html index bf5541e232dc89c..059b01462ce2d71 100644 --- a/files/en-us/web/api/svgexternalresourcesrequired/index.html +++ b/files/en-us/web/api/svgexternalresourcesrequired/index.html @@ -52,8 +52,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGExternalResourcesRequired")}}

        See also

        diff --git a/files/en-us/web/api/svgfeblendelement/index.html b/files/en-us/web/api/svgfeblendelement/index.html index 5f38f043debe18f..fdcdf8912a6efba 100644 --- a/files/en-us/web/api/svgfeblendelement/index.html +++ b/files/en-us/web/api/svgfeblendelement/index.html @@ -97,8 +97,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEBlendElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfecolormatrixelement/index.html b/files/en-us/web/api/svgfecolormatrixelement/index.html index d76f10cd7c92269..da3526c798b7efb 100644 --- a/files/en-us/web/api/svgfecolormatrixelement/index.html +++ b/files/en-us/web/api/svgfecolormatrixelement/index.html @@ -94,8 +94,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEColorMatrixElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfecomponenttransferelement/index.html b/files/en-us/web/api/svgfecomponenttransferelement/index.html index 6f7e672106c1317..c38e5a1f1e32cde 100644 --- a/files/en-us/web/api/svgfecomponenttransferelement/index.html +++ b/files/en-us/web/api/svgfecomponenttransferelement/index.html @@ -51,8 +51,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEComponentTransferElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfecompositeelement/index.html b/files/en-us/web/api/svgfecompositeelement/index.html index fcea1dd11d98edd..4fa99d8cea2efe3 100644 --- a/files/en-us/web/api/svgfecompositeelement/index.html +++ b/files/en-us/web/api/svgfecompositeelement/index.html @@ -102,8 +102,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFECompositeElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfeconvolvematrixelement/index.html b/files/en-us/web/api/svgfeconvolvematrixelement/index.html index dbf3951ee98a14d..387bef3e586690f 100644 --- a/files/en-us/web/api/svgfeconvolvematrixelement/index.html +++ b/files/en-us/web/api/svgfeconvolvematrixelement/index.html @@ -105,8 +105,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEConvolveMatrixElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfediffuselightingelement/index.html b/files/en-us/web/api/svgfediffuselightingelement/index.html index 7de234362a0f5c3..3eee5ccf519c717 100644 --- a/files/en-us/web/api/svgfediffuselightingelement/index.html +++ b/files/en-us/web/api/svgfediffuselightingelement/index.html @@ -59,8 +59,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEDiffuseLightingElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfedisplacementmapelement/index.html b/files/en-us/web/api/svgfedisplacementmapelement/index.html index 6aa0aad347c8c43..e5dc2c175568658 100644 --- a/files/en-us/web/api/svgfedisplacementmapelement/index.html +++ b/files/en-us/web/api/svgfedisplacementmapelement/index.html @@ -96,8 +96,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEDisplacementMapElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfedistantlightelement/index.html b/files/en-us/web/api/svgfedistantlightelement/index.html index 2b3649a3a98f778..efba7c68fdcbb07 100644 --- a/files/en-us/web/api/svgfedistantlightelement/index.html +++ b/files/en-us/web/api/svgfedistantlightelement/index.html @@ -53,8 +53,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEDistantLightElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfedropshadowelement/index.html b/files/en-us/web/api/svgfedropshadowelement/index.html index fdf86c5eb9f2c95..aa8a499dc94200c 100644 --- a/files/en-us/web/api/svgfedropshadowelement/index.html +++ b/files/en-us/web/api/svgfedropshadowelement/index.html @@ -59,8 +59,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEDropShadowElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfefloodelement/index.html b/files/en-us/web/api/svgfefloodelement/index.html index ab109e3f94b6888..97f357ca7eca6c8 100644 --- a/files/en-us/web/api/svgfefloodelement/index.html +++ b/files/en-us/web/api/svgfefloodelement/index.html @@ -46,8 +46,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEFloodElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfefuncaelement/index.html b/files/en-us/web/api/svgfefuncaelement/index.html index 7098c97b2c32fd2..9c57d6a7aa9500f 100644 --- a/files/en-us/web/api/svgfefuncaelement/index.html +++ b/files/en-us/web/api/svgfefuncaelement/index.html @@ -46,8 +46,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEFuncAElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfefuncbelement/index.html b/files/en-us/web/api/svgfefuncbelement/index.html index 57c1c7e4a7cd41d..02c6c3657fd7d97 100644 --- a/files/en-us/web/api/svgfefuncbelement/index.html +++ b/files/en-us/web/api/svgfefuncbelement/index.html @@ -46,8 +46,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEFuncBElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfefuncgelement/index.html b/files/en-us/web/api/svgfefuncgelement/index.html index e1d58a66f2514f5..3793ea26e326c8d 100644 --- a/files/en-us/web/api/svgfefuncgelement/index.html +++ b/files/en-us/web/api/svgfefuncgelement/index.html @@ -46,8 +46,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEFuncGElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfefuncrelement/index.html b/files/en-us/web/api/svgfefuncrelement/index.html index 4d4733e7ccb9cb2..4de2483f07a0c2b 100644 --- a/files/en-us/web/api/svgfefuncrelement/index.html +++ b/files/en-us/web/api/svgfefuncrelement/index.html @@ -46,8 +46,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEFuncRElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfegaussianblurelement/index.html b/files/en-us/web/api/svgfegaussianblurelement/index.html index 45befa513f161f5..bcac3ce87544788 100644 --- a/files/en-us/web/api/svgfegaussianblurelement/index.html +++ b/files/en-us/web/api/svgfegaussianblurelement/index.html @@ -94,8 +94,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEGaussianBlurElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfeimageelement/index.html b/files/en-us/web/api/svgfeimageelement/index.html index a9cb784d9fd522e..8bd0a29875bda93 100644 --- a/files/en-us/web/api/svgfeimageelement/index.html +++ b/files/en-us/web/api/svgfeimageelement/index.html @@ -53,8 +53,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEImageElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfemergeelement/index.html b/files/en-us/web/api/svgfemergeelement/index.html index ec1c06a18b3ddf4..9a3da3a44b4c5fc 100644 --- a/files/en-us/web/api/svgfemergeelement/index.html +++ b/files/en-us/web/api/svgfemergeelement/index.html @@ -46,8 +46,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEMergeElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfemergenodeelement/index.html b/files/en-us/web/api/svgfemergenodeelement/index.html index d0cc9e11f0de942..827fa14f5ea7cb5 100644 --- a/files/en-us/web/api/svgfemergenodeelement/index.html +++ b/files/en-us/web/api/svgfemergenodeelement/index.html @@ -51,8 +51,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEMergeNodeElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfemorphologyelement/index.html b/files/en-us/web/api/svgfemorphologyelement/index.html index c7e175b05e9e447..128e77b5138b942 100644 --- a/files/en-us/web/api/svgfemorphologyelement/index.html +++ b/files/en-us/web/api/svgfemorphologyelement/index.html @@ -84,8 +84,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEMorphologyElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfeoffsetelement/index.html b/files/en-us/web/api/svgfeoffsetelement/index.html index 3692dea57e7bf19..08786f14dde748f 100644 --- a/files/en-us/web/api/svgfeoffsetelement/index.html +++ b/files/en-us/web/api/svgfeoffsetelement/index.html @@ -55,8 +55,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEOffsetElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfepointlightelement/index.html b/files/en-us/web/api/svgfepointlightelement/index.html index ec65606020c6c05..7b20f0c01542390 100644 --- a/files/en-us/web/api/svgfepointlightelement/index.html +++ b/files/en-us/web/api/svgfepointlightelement/index.html @@ -55,8 +55,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFEPointLightElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfespecularlightingelement/index.html b/files/en-us/web/api/svgfespecularlightingelement/index.html index b95160b735d53e0..abb58801d93d26a 100644 --- a/files/en-us/web/api/svgfespecularlightingelement/index.html +++ b/files/en-us/web/api/svgfespecularlightingelement/index.html @@ -61,8 +61,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFESpecularLightingElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfespotlightelement/index.html b/files/en-us/web/api/svgfespotlightelement/index.html index 0a9ce47894318c9..75e575fa31cfff2 100644 --- a/files/en-us/web/api/svgfespotlightelement/index.html +++ b/files/en-us/web/api/svgfespotlightelement/index.html @@ -65,8 +65,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFESpotLightElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfetileelement/index.html b/files/en-us/web/api/svgfetileelement/index.html index c5726698ef159f2..b157bc31ca1b8a2 100644 --- a/files/en-us/web/api/svgfetileelement/index.html +++ b/files/en-us/web/api/svgfetileelement/index.html @@ -51,8 +51,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFETileElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfeturbulenceelement/index.html b/files/en-us/web/api/svgfeturbulenceelement/index.html index d4e8b0d6a594c0b..27fe86ee82bb00c 100644 --- a/files/en-us/web/api/svgfeturbulenceelement/index.html +++ b/files/en-us/web/api/svgfeturbulenceelement/index.html @@ -117,8 +117,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFETurbulenceElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfilterelement/index.html b/files/en-us/web/api/svgfilterelement/index.html index 9a6d4f3839cb818..a58ff04720164a6 100644 --- a/files/en-us/web/api/svgfilterelement/index.html +++ b/files/en-us/web/api/svgfilterelement/index.html @@ -66,8 +66,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFilterElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfilterprimitivestandardattributes/index.html b/files/en-us/web/api/svgfilterprimitivestandardattributes/index.html index 23a987a5d013916..024c499341e5d51 100644 --- a/files/en-us/web/api/svgfilterprimitivestandardattributes/index.html +++ b/files/en-us/web/api/svgfilterprimitivestandardattributes/index.html @@ -57,8 +57,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFilterPrimitiveStandardAttributes")}}

        See also

        diff --git a/files/en-us/web/api/svgfontelement/index.html b/files/en-us/web/api/svgfontelement/index.html index 8942a647fd26c50..ae81c66a365f465 100644 --- a/files/en-us/web/api/svgfontelement/index.html +++ b/files/en-us/web/api/svgfontelement/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFontElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfontfaceelement/index.html b/files/en-us/web/api/svgfontfaceelement/index.html index 695af5c70ebd9ca..a628a28564d2702 100644 --- a/files/en-us/web/api/svgfontfaceelement/index.html +++ b/files/en-us/web/api/svgfontfaceelement/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFontFaceElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfontfaceformatelement/index.html b/files/en-us/web/api/svgfontfaceformatelement/index.html index f3aa432148e526e..a1095e5220130fb 100644 --- a/files/en-us/web/api/svgfontfaceformatelement/index.html +++ b/files/en-us/web/api/svgfontfaceformatelement/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFontFaceFormatElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfontfacenameelement/index.html b/files/en-us/web/api/svgfontfacenameelement/index.html index 63fae87acd03bef..49d74a0fda7e300 100644 --- a/files/en-us/web/api/svgfontfacenameelement/index.html +++ b/files/en-us/web/api/svgfontfacenameelement/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFontFaceNameElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfontfacesrcelement/index.html b/files/en-us/web/api/svgfontfacesrcelement/index.html index 67d9f4f7dcfc203..0b2b82549d34358 100644 --- a/files/en-us/web/api/svgfontfacesrcelement/index.html +++ b/files/en-us/web/api/svgfontfacesrcelement/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFontFaceSrcElement")}}

        See also

        diff --git a/files/en-us/web/api/svgfontfaceurielement/index.html b/files/en-us/web/api/svgfontfaceurielement/index.html index 7f45fab0927c5a3..4c3612b98302b25 100644 --- a/files/en-us/web/api/svgfontfaceurielement/index.html +++ b/files/en-us/web/api/svgfontfaceurielement/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGFontFaceUriElement")}}

        See also

        diff --git a/files/en-us/web/api/svgforeignobjectelement/index.html b/files/en-us/web/api/svgforeignobjectelement/index.html index 9862d68baef6800..4eedaada15c8a81 100644 --- a/files/en-us/web/api/svgforeignobjectelement/index.html +++ b/files/en-us/web/api/svgforeignobjectelement/index.html @@ -57,8 +57,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGForeignObjectElement")}}

        See also

        diff --git a/files/en-us/web/api/svggelement/index.html b/files/en-us/web/api/svggelement/index.html index f4cd999634c94e7..5f3c5b010c86cad 100644 --- a/files/en-us/web/api/svggelement/index.html +++ b/files/en-us/web/api/svggelement/index.html @@ -46,6 +46,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGElement")}}

        diff --git a/files/en-us/web/api/svggeometryelement/getpointatlength/index.html b/files/en-us/web/api/svggeometryelement/getpointatlength/index.html index ad6910196124f2c..dfe729b43ed7ed8 100644 --- a/files/en-us/web/api/svggeometryelement/getpointatlength/index.html +++ b/files/en-us/web/api/svggeometryelement/getpointatlength/index.html @@ -55,6 +55,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGeometryElement.getPointAtLength")}}

        diff --git a/files/en-us/web/api/svggeometryelement/gettotallength/index.html b/files/en-us/web/api/svggeometryelement/gettotallength/index.html index 9ba6e865109c175..83359ac63dd764b 100644 --- a/files/en-us/web/api/svggeometryelement/gettotallength/index.html +++ b/files/en-us/web/api/svggeometryelement/gettotallength/index.html @@ -46,6 +46,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGeometryElement.getTotalLength")}}

        diff --git a/files/en-us/web/api/svggeometryelement/index.html b/files/en-us/web/api/svggeometryelement/index.html index 00f898ba53d5864..ddd5ca06e421f33 100644 --- a/files/en-us/web/api/svggeometryelement/index.html +++ b/files/en-us/web/api/svggeometryelement/index.html @@ -62,6 +62,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGeometryElement")}}

        diff --git a/files/en-us/web/api/svggeometryelement/ispointinfill/index.html b/files/en-us/web/api/svggeometryelement/ispointinfill/index.html index 657a7cc89615524..3e10b86c03bccd6 100644 --- a/files/en-us/web/api/svggeometryelement/ispointinfill/index.html +++ b/files/en-us/web/api/svggeometryelement/ispointinfill/index.html @@ -75,6 +75,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGeometryElement.isPointInFill")}}

        diff --git a/files/en-us/web/api/svggeometryelement/ispointinstroke/index.html b/files/en-us/web/api/svggeometryelement/ispointinstroke/index.html index 89dc9923eac6379..e8ee50fc098ed78 100644 --- a/files/en-us/web/api/svggeometryelement/ispointinstroke/index.html +++ b/files/en-us/web/api/svggeometryelement/ispointinstroke/index.html @@ -79,6 +79,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGeometryElement.isPointInStroke")}}

        diff --git a/files/en-us/web/api/svggeometryelement/pathlength/index.html b/files/en-us/web/api/svggeometryelement/pathlength/index.html index 26388eb9355a50e..ce050df049ee714 100644 --- a/files/en-us/web/api/svggeometryelement/pathlength/index.html +++ b/files/en-us/web/api/svggeometryelement/pathlength/index.html @@ -42,6 +42,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGeometryElement.pathLength")}}

        diff --git a/files/en-us/web/api/svgglyphelement/index.html b/files/en-us/web/api/svgglyphelement/index.html index 2a27c61ec45e950..14d997452336660 100644 --- a/files/en-us/web/api/svgglyphelement/index.html +++ b/files/en-us/web/api/svgglyphelement/index.html @@ -47,8 +47,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGlyphElement")}}

        See also

        diff --git a/files/en-us/web/api/svgglyphrefelement/index.html b/files/en-us/web/api/svgglyphrefelement/index.html index 2daa3213486b19e..be06fce3bbcc383 100644 --- a/files/en-us/web/api/svgglyphrefelement/index.html +++ b/files/en-us/web/api/svgglyphrefelement/index.html @@ -56,8 +56,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGlyphRefElement")}}

        See also

        diff --git a/files/en-us/web/api/svggradientelement/index.html b/files/en-us/web/api/svggradientelement/index.html index df4ce2fabe1e1ca..847e2ff77a55904 100644 --- a/files/en-us/web/api/svggradientelement/index.html +++ b/files/en-us/web/api/svggradientelement/index.html @@ -87,6 +87,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGradientElement")}}

        diff --git a/files/en-us/web/api/svggraphicselement/copy_event/index.html b/files/en-us/web/api/svggraphicselement/copy_event/index.html index 7bf1a402e4a0c5e..1e21f598f194340 100644 --- a/files/en-us/web/api/svggraphicselement/copy_event/index.html +++ b/files/en-us/web/api/svggraphicselement/copy_event/index.html @@ -99,8 +99,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGraphicsElement.copy_event")}}

        See also

        diff --git a/files/en-us/web/api/svggraphicselement/cut_event/index.html b/files/en-us/web/api/svggraphicselement/cut_event/index.html index 63931a29c97f4a2..6736aefb490255d 100644 --- a/files/en-us/web/api/svggraphicselement/cut_event/index.html +++ b/files/en-us/web/api/svggraphicselement/cut_event/index.html @@ -70,8 +70,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGraphicsElement.cut_event")}}

        See also

        diff --git a/files/en-us/web/api/svggraphicselement/index.html b/files/en-us/web/api/svggraphicselement/index.html index a62f5172b88e33e..6873e545a8f3843 100644 --- a/files/en-us/web/api/svggraphicselement/index.html +++ b/files/en-us/web/api/svggraphicselement/index.html @@ -61,6 +61,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGraphicsElement")}}

        diff --git a/files/en-us/web/api/svggraphicselement/paste_event/index.html b/files/en-us/web/api/svggraphicselement/paste_event/index.html index 167f350a57d0b8a..ba4003f89ab2e0e 100644 --- a/files/en-us/web/api/svggraphicselement/paste_event/index.html +++ b/files/en-us/web/api/svggraphicselement/paste_event/index.html @@ -100,8 +100,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGGraphicsElement.paste_event")}}

        See also

        diff --git a/files/en-us/web/api/svghkernelement/index.html b/files/en-us/web/api/svghkernelement/index.html index 47ddf023bf3a1fc..375e4052b91af5f 100644 --- a/files/en-us/web/api/svghkernelement/index.html +++ b/files/en-us/web/api/svghkernelement/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGHKernElement")}}

        See also

        diff --git a/files/en-us/web/api/svgimageelement/decode/index.html b/files/en-us/web/api/svgimageelement/decode/index.html index 5092596ef2c2977..da4431071d8f7a2 100644 --- a/files/en-us/web/api/svgimageelement/decode/index.html +++ b/files/en-us/web/api/svgimageelement/decode/index.html @@ -58,8 +58,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGImageElement.decode")}}

        See also

        diff --git a/files/en-us/web/api/svgimageelement/decoding/index.html b/files/en-us/web/api/svgimageelement/decoding/index.html index f446d3b63cb8eed..3d5fcbfa249d038 100644 --- a/files/en-us/web/api/svgimageelement/decoding/index.html +++ b/files/en-us/web/api/svgimageelement/decoding/index.html @@ -60,8 +60,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGImageElement.decoding")}}

        See also

        diff --git a/files/en-us/web/api/svgimageelement/height/index.html b/files/en-us/web/api/svgimageelement/height/index.html index 3c923fd3f1c3fd5..a8d1e05023aec1d 100644 --- a/files/en-us/web/api/svgimageelement/height/index.html +++ b/files/en-us/web/api/svgimageelement/height/index.html @@ -43,6 +43,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGImageElement.height")}}

        diff --git a/files/en-us/web/api/svgimageelement/index.html b/files/en-us/web/api/svgimageelement/index.html index 0922b2aca360fec..2c56425317cc5c5 100644 --- a/files/en-us/web/api/svgimageelement/index.html +++ b/files/en-us/web/api/svgimageelement/index.html @@ -73,8 +73,6 @@

        Browser compatibility

         

        - -

        {{Compat("api.SVGImageElement")}}

         

        diff --git a/files/en-us/web/api/svgimageelement/preserveaspectratio/index.html b/files/en-us/web/api/svgimageelement/preserveaspectratio/index.html index 45e70bf19a6ee3e..0af01f2eac3d0fa 100644 --- a/files/en-us/web/api/svgimageelement/preserveaspectratio/index.html +++ b/files/en-us/web/api/svgimageelement/preserveaspectratio/index.html @@ -48,6 +48,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGImageElement.preserveAspectRatio")}}

        diff --git a/files/en-us/web/api/svgimageelement/width/index.html b/files/en-us/web/api/svgimageelement/width/index.html index 5cbbb54950acd65..a06daad9a896f43 100644 --- a/files/en-us/web/api/svgimageelement/width/index.html +++ b/files/en-us/web/api/svgimageelement/width/index.html @@ -43,6 +43,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGImageElement.width")}}

        diff --git a/files/en-us/web/api/svgimageelement/x/index.html b/files/en-us/web/api/svgimageelement/x/index.html index df28c6e7cc4854d..9a71c3386b9bec4 100644 --- a/files/en-us/web/api/svgimageelement/x/index.html +++ b/files/en-us/web/api/svgimageelement/x/index.html @@ -43,6 +43,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGImageElement.x")}}

        diff --git a/files/en-us/web/api/svgimageelement/y/index.html b/files/en-us/web/api/svgimageelement/y/index.html index 69af3f6a655cae7..f3d947e9ef2fd6f 100644 --- a/files/en-us/web/api/svgimageelement/y/index.html +++ b/files/en-us/web/api/svgimageelement/y/index.html @@ -43,6 +43,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGImageElement.y")}}

        diff --git a/files/en-us/web/api/svglength/index.html b/files/en-us/web/api/svglength/index.html index 98d628c5d6f8987..031e90277198529 100644 --- a/files/en-us/web/api/svglength/index.html +++ b/files/en-us/web/api/svglength/index.html @@ -89,7 +89,6 @@

        Example

        ", valueInSpecifiedUnits " + val.unitType + ": " + val.valueInSpecifiedUnits + ", valueAsString: " + val.valueAsString); - // convert x = 20pt to inches and read out in pixel and inch units val.convertToSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_IN); console.log("value: " + val.value + @@ -267,6 +266,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGLength")}}

        diff --git a/files/en-us/web/api/svglengthlist/index.html b/files/en-us/web/api/svglengthlist/index.html index 59595ce7bb1e5f5..3ea42e8094b7f35 100644 --- a/files/en-us/web/api/svglengthlist/index.html +++ b/files/en-us/web/api/svglengthlist/index.html @@ -192,6 +192,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGLengthList")}}

        diff --git a/files/en-us/web/api/svglineargradientelement/index.html b/files/en-us/web/api/svglineargradientelement/index.html index aaaf2ff1454f08b..91f5b43e4058719 100644 --- a/files/en-us/web/api/svglineargradientelement/index.html +++ b/files/en-us/web/api/svglineargradientelement/index.html @@ -57,6 +57,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGLinearGradientElement")}}

        diff --git a/files/en-us/web/api/svglineelement/index.html b/files/en-us/web/api/svglineelement/index.html index 105cc29bb959b0d..21f89e5a0f6bb78 100644 --- a/files/en-us/web/api/svglineelement/index.html +++ b/files/en-us/web/api/svglineelement/index.html @@ -57,8 +57,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGLineElement")}}

        See also

        diff --git a/files/en-us/web/api/svgmaskelement/index.html b/files/en-us/web/api/svgmaskelement/index.html index 3503195989376aa..cd28e73487967e5 100644 --- a/files/en-us/web/api/svgmaskelement/index.html +++ b/files/en-us/web/api/svgmaskelement/index.html @@ -61,8 +61,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGMaskElement")}}

        See also

        diff --git a/files/en-us/web/api/svgmatrix/index.html b/files/en-us/web/api/svgmatrix/index.html index 702fe8c7fc721d5..8cfedc54a07f212 100644 --- a/files/en-us/web/api/svgmatrix/index.html +++ b/files/en-us/web/api/svgmatrix/index.html @@ -95,6 +95,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGMatrix")}}

        diff --git a/files/en-us/web/api/svgmetadataelement/index.html b/files/en-us/web/api/svgmetadataelement/index.html index d1fbf7944eee704..de9d472bbad2f21 100644 --- a/files/en-us/web/api/svgmetadataelement/index.html +++ b/files/en-us/web/api/svgmetadataelement/index.html @@ -46,6 +46,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGMetadataElement")}}

        diff --git a/files/en-us/web/api/svgmissingglyphelement/index.html b/files/en-us/web/api/svgmissingglyphelement/index.html index 1541d1a83fd958a..45e513ed0853bb8 100644 --- a/files/en-us/web/api/svgmissingglyphelement/index.html +++ b/files/en-us/web/api/svgmissingglyphelement/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGMissingGlyphElement")}}

        See also

        diff --git a/files/en-us/web/api/svgmpathelement/index.html b/files/en-us/web/api/svgmpathelement/index.html index e424856f2ba81f8..cd1904d9e62df4f 100644 --- a/files/en-us/web/api/svgmpathelement/index.html +++ b/files/en-us/web/api/svgmpathelement/index.html @@ -46,6 +46,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGMPathElement")}}

        diff --git a/files/en-us/web/api/svgnumber/index.html b/files/en-us/web/api/svgnumber/index.html index 186c1f55e07c451..faa86c02faee1fa 100644 --- a/files/en-us/web/api/svgnumber/index.html +++ b/files/en-us/web/api/svgnumber/index.html @@ -51,6 +51,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGNumber")}}

        diff --git a/files/en-us/web/api/svgnumberlist/index.html b/files/en-us/web/api/svgnumberlist/index.html index 079c0de42fb0cb9..ce659c51c873326 100644 --- a/files/en-us/web/api/svgnumberlist/index.html +++ b/files/en-us/web/api/svgnumberlist/index.html @@ -195,6 +195,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGNumberList")}}

        diff --git a/files/en-us/web/api/svgpathelement/getpointatlength/index.html b/files/en-us/web/api/svgpathelement/getpointatlength/index.html index 58a9c56225091c9..e6a606fdc0960ac 100644 --- a/files/en-us/web/api/svgpathelement/getpointatlength/index.html +++ b/files/en-us/web/api/svgpathelement/getpointatlength/index.html @@ -52,8 +52,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGPathElement.getPointAtLength")}}

        See also

        diff --git a/files/en-us/web/api/svgpathelement/gettotallength/index.html b/files/en-us/web/api/svgpathelement/gettotallength/index.html index c3b55442ddc94fe..404627fed4e728f 100644 --- a/files/en-us/web/api/svgpathelement/gettotallength/index.html +++ b/files/en-us/web/api/svgpathelement/gettotallength/index.html @@ -47,8 +47,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGPathElement.getTotalLength")}}

        See also

        diff --git a/files/en-us/web/api/svgpathelement/index.html b/files/en-us/web/api/svgpathelement/index.html index 699bc06993ee70c..7f9df33fa49523c 100644 --- a/files/en-us/web/api/svgpathelement/index.html +++ b/files/en-us/web/api/svgpathelement/index.html @@ -114,8 +114,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGPathElement")}}

        See also

        diff --git a/files/en-us/web/api/svgpathelement/pathlength/index.html b/files/en-us/web/api/svgpathelement/pathlength/index.html index 7a3954550211254..3c65cbc32dc0429 100644 --- a/files/en-us/web/api/svgpathelement/pathlength/index.html +++ b/files/en-us/web/api/svgpathelement/pathlength/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGPathElement.pathLength")}}

        See also

        diff --git a/files/en-us/web/api/svgpatternelement/index.html b/files/en-us/web/api/svgpatternelement/index.html index e1b7ef85f68a474..bf9346430d63283 100644 --- a/files/en-us/web/api/svgpatternelement/index.html +++ b/files/en-us/web/api/svgpatternelement/index.html @@ -63,6 +63,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGPatternElement")}}

        diff --git a/files/en-us/web/api/svgpoint/index.html b/files/en-us/web/api/svgpoint/index.html index f10265a248358b9..e16bb3c900caaa5 100644 --- a/files/en-us/web/api/svgpoint/index.html +++ b/files/en-us/web/api/svgpoint/index.html @@ -32,6 +32,4 @@

        Example

        Browser compatibility

        - -

        {{Compat("api.SVGPoint")}}

        diff --git a/files/en-us/web/api/svgpolygonelement/index.html b/files/en-us/web/api/svgpolygonelement/index.html index 9def7b49f170fa0..3e9c57e4d04ae74 100644 --- a/files/en-us/web/api/svgpolygonelement/index.html +++ b/files/en-us/web/api/svgpolygonelement/index.html @@ -46,8 +46,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGPolygonElement")}}

        See also

        diff --git a/files/en-us/web/api/svgpolylineelement/index.html b/files/en-us/web/api/svgpolylineelement/index.html index 203c213523e2ff3..0b0d6ed1342fd1c 100644 --- a/files/en-us/web/api/svgpolylineelement/index.html +++ b/files/en-us/web/api/svgpolylineelement/index.html @@ -46,8 +46,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGPolylineElement")}}

        See also

        diff --git a/files/en-us/web/api/svgpreserveaspectratio/index.html b/files/en-us/web/api/svgpreserveaspectratio/index.html index 1a13681f70a129e..5413bbfe1a59ff8 100644 --- a/files/en-us/web/api/svgpreserveaspectratio/index.html +++ b/files/en-us/web/api/svgpreserveaspectratio/index.html @@ -182,6 +182,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGPreserveAspectRatio")}}

        diff --git a/files/en-us/web/api/svgradialgradientelement/index.html b/files/en-us/web/api/svgradialgradientelement/index.html index 0128f642596a7ab..42bdd5cfa1ee071 100644 --- a/files/en-us/web/api/svgradialgradientelement/index.html +++ b/files/en-us/web/api/svgradialgradientelement/index.html @@ -58,6 +58,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGRadialGradientElement")}}

        diff --git a/files/en-us/web/api/svgrect/index.html b/files/en-us/web/api/svgrect/index.html index 6c74a3991ffa881..dab918e13afeb9f 100644 --- a/files/en-us/web/api/svgrect/index.html +++ b/files/en-us/web/api/svgrect/index.html @@ -56,6 +56,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGRect")}}

        diff --git a/files/en-us/web/api/svgrectelement/index.html b/files/en-us/web/api/svgrectelement/index.html index 0f23f8189ceac75..889aa722ec75a0c 100644 --- a/files/en-us/web/api/svgrectelement/index.html +++ b/files/en-us/web/api/svgrectelement/index.html @@ -90,8 +90,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGRectElement")}}

        See also

        diff --git a/files/en-us/web/api/svgrenderingintent/index.html b/files/en-us/web/api/svgrenderingintent/index.html index 1a6984eea9232ff..e5bf7006dd1fb01 100644 --- a/files/en-us/web/api/svgrenderingintent/index.html +++ b/files/en-us/web/api/svgrenderingintent/index.html @@ -87,8 +87,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGRenderingIntent")}}

        See also

        diff --git a/files/en-us/web/api/svgscriptelement/index.html b/files/en-us/web/api/svgscriptelement/index.html index 512c061d8febdf7..29824708bd8436f 100644 --- a/files/en-us/web/api/svgscriptelement/index.html +++ b/files/en-us/web/api/svgscriptelement/index.html @@ -51,6 +51,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGScriptElement")}}

        diff --git a/files/en-us/web/api/svgsetelement/index.html b/files/en-us/web/api/svgsetelement/index.html index db1f02bed44250e..025b245ab4783c4 100644 --- a/files/en-us/web/api/svgsetelement/index.html +++ b/files/en-us/web/api/svgsetelement/index.html @@ -46,6 +46,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGSetElement")}}

        diff --git a/files/en-us/web/api/svgsolidcolorelement/index.html b/files/en-us/web/api/svgsolidcolorelement/index.html index 30aab0c83bc7eab..7e6f0881d7e5fa4 100644 --- a/files/en-us/web/api/svgsolidcolorelement/index.html +++ b/files/en-us/web/api/svgsolidcolorelement/index.html @@ -25,6 +25,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGSolidcolorElement")}}

        diff --git a/files/en-us/web/api/svgstopelement/index.html b/files/en-us/web/api/svgstopelement/index.html index d7a9a71162e6ef2..e8ecf5742dbdab3 100644 --- a/files/en-us/web/api/svgstopelement/index.html +++ b/files/en-us/web/api/svgstopelement/index.html @@ -53,6 +53,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGStopElement")}}

        diff --git a/files/en-us/web/api/svgstringlist/index.html b/files/en-us/web/api/svgstringlist/index.html index bb68a405387285f..ca777dfc6eae064 100644 --- a/files/en-us/web/api/svgstringlist/index.html +++ b/files/en-us/web/api/svgstringlist/index.html @@ -186,6 +186,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGStringList")}}

        diff --git a/files/en-us/web/api/svgstylable/index.html b/files/en-us/web/api/svgstylable/index.html index 2b007d201355f03..018ef965b2e8d18 100644 --- a/files/en-us/web/api/svgstylable/index.html +++ b/files/en-us/web/api/svgstylable/index.html @@ -11,7 +11,6 @@ ---
        {{obsolete_header}}{{APIRef("SVG")}}
        -

        The SVGStylable interface is implemented on all objects corresponding to SVG elements that can have {{ SVGAttr("style") }}, {{SVGAttr("class")}} and presentation attributes specified on them.

        Interface overview

        @@ -91,6 +90,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGStylable")}}

        diff --git a/files/en-us/web/api/svgstyleelement/index.html b/files/en-us/web/api/svgstyleelement/index.html index f198c9663ba876b..ea37ab477e6c203 100644 --- a/files/en-us/web/api/svgstyleelement/index.html +++ b/files/en-us/web/api/svgstyleelement/index.html @@ -65,6 +65,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGStyleElement")}}

        diff --git a/files/en-us/web/api/svgsvgelement/index.html b/files/en-us/web/api/svgsvgelement/index.html index 9156b5b705a2950..0409c4414b81b14 100644 --- a/files/en-us/web/api/svgsvgelement/index.html +++ b/files/en-us/web/api/svgsvgelement/index.html @@ -168,8 +168,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGSVGElement")}}

        See also

        diff --git a/files/en-us/web/api/svgswitchelement/index.html b/files/en-us/web/api/svgswitchelement/index.html index d297f0011465260..aa2569103d5886a 100644 --- a/files/en-us/web/api/svgswitchelement/index.html +++ b/files/en-us/web/api/svgswitchelement/index.html @@ -46,6 +46,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGSwitchElement")}}

        diff --git a/files/en-us/web/api/svgsymbolelement/index.html b/files/en-us/web/api/svgsymbolelement/index.html index 42ca6cb87eac62e..edc8bebcea9fa06 100644 --- a/files/en-us/web/api/svgsymbolelement/index.html +++ b/files/en-us/web/api/svgsymbolelement/index.html @@ -48,6 +48,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGSymbolElement")}}

        diff --git a/files/en-us/web/api/svgtests/index.html b/files/en-us/web/api/svgtests/index.html index 77db7ec50e48fd4..156440ee88493c9 100644 --- a/files/en-us/web/api/svgtests/index.html +++ b/files/en-us/web/api/svgtests/index.html @@ -54,6 +54,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGTests")}}

        diff --git a/files/en-us/web/api/svgtextcontentelement/index.html b/files/en-us/web/api/svgtextcontentelement/index.html index c4c86ba05ac9e6b..c7e40d55a24e324 100644 --- a/files/en-us/web/api/svgtextcontentelement/index.html +++ b/files/en-us/web/api/svgtextcontentelement/index.html @@ -105,6 +105,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGTextContentElement")}}

        diff --git a/files/en-us/web/api/svgtextelement/index.html b/files/en-us/web/api/svgtextelement/index.html index ee8220dff69ef4f..b4d79d61c4ffb51 100644 --- a/files/en-us/web/api/svgtextelement/index.html +++ b/files/en-us/web/api/svgtextelement/index.html @@ -48,7 +48,6 @@

        Browser compatibility

        -

        {{Compat("api.SVGTextElement")}}

        diff --git a/files/en-us/web/api/svgtextpathelement/index.html b/files/en-us/web/api/svgtextpathelement/index.html index 5e0835bd0fed709..66f4b802b6c909b 100644 --- a/files/en-us/web/api/svgtextpathelement/index.html +++ b/files/en-us/web/api/svgtextpathelement/index.html @@ -111,8 +111,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGTextPathElement")}}

        See also

        diff --git a/files/en-us/web/api/svgtextpositioningelement/index.html b/files/en-us/web/api/svgtextpositioningelement/index.html index 9d2204f706c9260..6a3b116e1e28f4d 100644 --- a/files/en-us/web/api/svgtextpositioningelement/index.html +++ b/files/en-us/web/api/svgtextpositioningelement/index.html @@ -59,6 +59,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGTextPositioningElement")}}

        diff --git a/files/en-us/web/api/svgtitleelement/index.html b/files/en-us/web/api/svgtitleelement/index.html index a3ae125774acdb7..acfaa38c1052617 100644 --- a/files/en-us/web/api/svgtitleelement/index.html +++ b/files/en-us/web/api/svgtitleelement/index.html @@ -48,6 +48,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGTitleElement")}}

        diff --git a/files/en-us/web/api/svgtransform/index.html b/files/en-us/web/api/svgtransform/index.html index 7541db0407c2b74..57cfc563df984f4 100644 --- a/files/en-us/web/api/svgtransform/index.html +++ b/files/en-us/web/api/svgtransform/index.html @@ -250,6 +250,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGTransform")}}

        diff --git a/files/en-us/web/api/svgtransformable/index.html b/files/en-us/web/api/svgtransformable/index.html index e32ffd9aafb09c0..305ac0e4801197c 100644 --- a/files/en-us/web/api/svgtransformable/index.html +++ b/files/en-us/web/api/svgtransformable/index.html @@ -11,7 +11,6 @@ ---
        {{obsolete_header}}{{APIRef("SVG")}}
        -

        Interface SVGTransformable contains properties and methods that apply to all elements which have attribute {{ SVGAttr("transform") }}.

        Interface overview

        @@ -66,6 +65,4 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGTransformable")}}

        diff --git a/files/en-us/web/api/svgtransformlist/index.html b/files/en-us/web/api/svgtransformlist/index.html index 74fc556e87ee4bf..b383da60360e92a 100644 --- a/files/en-us/web/api/svgtransformlist/index.html +++ b/files/en-us/web/api/svgtransformlist/index.html @@ -283,6 +283,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGTransformList")}}

        diff --git a/files/en-us/web/api/svgtrefelement/index.html b/files/en-us/web/api/svgtrefelement/index.html index 85badd1843fb41d..fa656417516e940 100644 --- a/files/en-us/web/api/svgtrefelement/index.html +++ b/files/en-us/web/api/svgtrefelement/index.html @@ -44,8 +44,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGTRefElement")}}

        See also

        diff --git a/files/en-us/web/api/svgtspanelement/index.html b/files/en-us/web/api/svgtspanelement/index.html index 45f132f2b63af7d..31d1b759dc56d9a 100644 --- a/files/en-us/web/api/svgtspanelement/index.html +++ b/files/en-us/web/api/svgtspanelement/index.html @@ -46,8 +46,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGTSpanElement")}}

        See also

        diff --git a/files/en-us/web/api/svgunittypes/index.html b/files/en-us/web/api/svgunittypes/index.html index f654ffe752910ac..75848ff783c6728 100644 --- a/files/en-us/web/api/svgunittypes/index.html +++ b/files/en-us/web/api/svgunittypes/index.html @@ -73,6 +73,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGUnitTypes")}}

        diff --git a/files/en-us/web/api/svgurireference/index.html b/files/en-us/web/api/svgurireference/index.html index e2eec8703e87cde..8bbe49c9e9340af 100644 --- a/files/en-us/web/api/svgurireference/index.html +++ b/files/en-us/web/api/svgurireference/index.html @@ -54,6 +54,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGURIReference")}}

        diff --git a/files/en-us/web/api/svguseelement/index.html b/files/en-us/web/api/svguseelement/index.html index b352dd501c5cfe1..758d9a23b48879f 100644 --- a/files/en-us/web/api/svguseelement/index.html +++ b/files/en-us/web/api/svguseelement/index.html @@ -65,8 +65,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGUseElement")}}

        See also

        diff --git a/files/en-us/web/api/svgviewelement/index.html b/files/en-us/web/api/svgviewelement/index.html index 146666c6092dc42..ddc49100f75d402 100644 --- a/files/en-us/web/api/svgviewelement/index.html +++ b/files/en-us/web/api/svgviewelement/index.html @@ -49,8 +49,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGViewElement")}}

        See also

        diff --git a/files/en-us/web/api/svgvkernelement/index.html b/files/en-us/web/api/svgvkernelement/index.html index 09e28d4568cfd63..9262d92c0b84d7d 100644 --- a/files/en-us/web/api/svgvkernelement/index.html +++ b/files/en-us/web/api/svgvkernelement/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SVGVKernElement")}}

        See also

        diff --git a/files/en-us/web/api/svgzoomandpan/index.html b/files/en-us/web/api/svgzoomandpan/index.html index 5d85e40cb365306..03491b249556e39 100644 --- a/files/en-us/web/api/svgzoomandpan/index.html +++ b/files/en-us/web/api/svgzoomandpan/index.html @@ -54,8 +54,6 @@

        Methods

        Browser compatibility

        - -

        {{Compat("api.SVGZoomAndPan")}}

        See also

        diff --git a/files/en-us/web/api/syncevent/index.html b/files/en-us/web/api/syncevent/index.html index 4a55102c84ea5dd..afa4bcfdc3f4892 100644 --- a/files/en-us/web/api/syncevent/index.html +++ b/files/en-us/web/api/syncevent/index.html @@ -48,6 +48,5 @@

        Browser compatibility

        -

        {{Compat("api.SyncEvent")}}

        diff --git a/files/en-us/web/api/syncevent/lastchance/index.html b/files/en-us/web/api/syncevent/lastchance/index.html index a2e5646cfd2da2c..0902c3817eef174 100644 --- a/files/en-us/web/api/syncevent/lastchance/index.html +++ b/files/en-us/web/api/syncevent/lastchance/index.html @@ -38,6 +38,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SyncEvent.lastChance")}}

        diff --git a/files/en-us/web/api/syncevent/registration/index.html b/files/en-us/web/api/syncevent/registration/index.html index 6710c209444309c..0a64b9608e8269c 100644 --- a/files/en-us/web/api/syncevent/registration/index.html +++ b/files/en-us/web/api/syncevent/registration/index.html @@ -22,6 +22,5 @@

        Browser compatibility

        -

        {{Compat("api.SyncEvent.registration")}}

        diff --git a/files/en-us/web/api/syncevent/syncevent/index.html b/files/en-us/web/api/syncevent/syncevent/index.html index 68f0e5326c9887d..69b012bb7e402f5 100644 --- a/files/en-us/web/api/syncevent/syncevent/index.html +++ b/files/en-us/web/api/syncevent/syncevent/index.html @@ -36,6 +36,5 @@

        Browser compatibility

        -

        {{Compat("api.SyncEvent.SyncEvent")}}

        diff --git a/files/en-us/web/api/syncevent/tag/index.html b/files/en-us/web/api/syncevent/tag/index.html index f765490cec23ec6..1c0ffc3340ba9fb 100644 --- a/files/en-us/web/api/syncevent/tag/index.html +++ b/files/en-us/web/api/syncevent/tag/index.html @@ -42,6 +42,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.SyncEvent.tag")}}

        diff --git a/files/en-us/web/api/syncmanager/gettags/index.html b/files/en-us/web/api/syncmanager/gettags/index.html index 1a57c3a8513029e..6516a23119df368 100644 --- a/files/en-us/web/api/syncmanager/gettags/index.html +++ b/files/en-us/web/api/syncmanager/gettags/index.html @@ -28,6 +28,4 @@

        Parameters

        Browser compatibility

        - -

        {{Compat("api.SyncManager.getTags")}}

        diff --git a/files/en-us/web/api/syncmanager/index.html b/files/en-us/web/api/syncmanager/index.html index 369070f9c59f04b..8f611f4c45501cb 100644 --- a/files/en-us/web/api/syncmanager/index.html +++ b/files/en-us/web/api/syncmanager/index.html @@ -47,6 +47,5 @@

        Bro
        -

        {{Compat("api.SyncManager")}}

        diff --git a/files/en-us/web/api/syncmanager/register/index.html b/files/en-us/web/api/syncmanager/register/index.html index 0e22645c6aa7785..9a1119ab5860fb4 100644 --- a/files/en-us/web/api/syncmanager/register/index.html +++ b/files/en-us/web/api/syncmanager/register/index.html @@ -43,6 +43,5 @@

        Browser compatibility

        -

        {{Compat("api.SyncManager.register")}}

        diff --git a/files/en-us/web/api/taskattributiontiming/containerid/index.html b/files/en-us/web/api/taskattributiontiming/containerid/index.html index b0cb9383b25629e..169315a8a3c1f54 100644 --- a/files/en-us/web/api/taskattributiontiming/containerid/index.html +++ b/files/en-us/web/api/taskattributiontiming/containerid/index.html @@ -42,6 +42,5 @@

        Browser Compatibility

        -

        {{Compat("api.TaskAttributionTiming.containerId")}}

        diff --git a/files/en-us/web/api/taskattributiontiming/containername/index.html b/files/en-us/web/api/taskattributiontiming/containername/index.html index 19dccf4df195f09..0b3f389362217aa 100644 --- a/files/en-us/web/api/taskattributiontiming/containername/index.html +++ b/files/en-us/web/api/taskattributiontiming/containername/index.html @@ -42,6 +42,5 @@

        Browser compatibility

        -

        {{Compat("api.TaskAttributionTiming.containerName")}}

        diff --git a/files/en-us/web/api/taskattributiontiming/containersrc/index.html b/files/en-us/web/api/taskattributiontiming/containersrc/index.html index 3126e7adfe639fd..563dceca1f01d2f 100644 --- a/files/en-us/web/api/taskattributiontiming/containersrc/index.html +++ b/files/en-us/web/api/taskattributiontiming/containersrc/index.html @@ -42,6 +42,5 @@

        Browser compatibility

        -

        {{Compat("api.TaskAttributionTiming.containerSrc")}}

        diff --git a/files/en-us/web/api/taskattributiontiming/containertype/index.html b/files/en-us/web/api/taskattributiontiming/containertype/index.html index 4351d7cc36436ce..829b50717fb2faf 100644 --- a/files/en-us/web/api/taskattributiontiming/containertype/index.html +++ b/files/en-us/web/api/taskattributiontiming/containertype/index.html @@ -42,6 +42,5 @@

        Browser Compatibility

        -

        {{Compat("api.TaskAttributionTiming.containerType")}}

        diff --git a/files/en-us/web/api/taskattributiontiming/index.html b/files/en-us/web/api/taskattributiontiming/index.html index b15cb248cf83d9a..d55d5cdeb0f77a3 100644 --- a/files/en-us/web/api/taskattributiontiming/index.html +++ b/files/en-us/web/api/taskattributiontiming/index.html @@ -49,6 +49,5 @@

        Browser compatibility

        -

        {{Compat("api.TaskAttributionTiming")}}

        diff --git a/files/en-us/web/api/text/assignedslot/index.html b/files/en-us/web/api/text/assignedslot/index.html index 0ca32a042ae1621..2c89f76b8824967 100644 --- a/files/en-us/web/api/text/assignedslot/index.html +++ b/files/en-us/web/api/text/assignedslot/index.html @@ -42,6 +42,5 @@

        Browser Compatibility

        -

        {{Compat("api.Text.assignedSlot")}}

        diff --git a/files/en-us/web/api/text/index.html b/files/en-us/web/api/text/index.html index 92966a471130e2b..5e7b70af2a3cc2f 100644 --- a/files/en-us/web/api/text/index.html +++ b/files/en-us/web/api/text/index.html @@ -52,7 +52,6 @@

        Methods

        Inherits methods from its parent, {{domxref("CharacterData")}}.

        -
        {{domxref("Text.replaceWholeText")}} {{obsolete_inline}}
        Replaces the text of the current node and all logically adjacent nodes with the specified text.
        @@ -103,8 +102,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Text")}}

        See also

        diff --git a/files/en-us/web/api/text/iselementcontentwhitespace/index.html b/files/en-us/web/api/text/iselementcontentwhitespace/index.html index 3d1eb443f7e05f4..532966a2c67bb0d 100644 --- a/files/en-us/web/api/text/iselementcontentwhitespace/index.html +++ b/files/en-us/web/api/text/iselementcontentwhitespace/index.html @@ -38,8 +38,6 @@

        Example

        Browser compatibility

        - -

        {{Compat("api.Text.isElementContentWhitespace")}}

        See also

        diff --git a/files/en-us/web/api/text/replacewholetext/index.html b/files/en-us/web/api/text/replacewholetext/index.html index e6bafff5c7dbf1c..89602c28ff5e93b 100644 --- a/files/en-us/web/api/text/replacewholetext/index.html +++ b/files/en-us/web/api/text/replacewholetext/index.html @@ -45,8 +45,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Text.replaceWholeText")}}

        See also

        diff --git a/files/en-us/web/api/text/splittext/index.html b/files/en-us/web/api/text/splittext/index.html index c5cb321ee14788e..67d8a05660b7ac6 100644 --- a/files/en-us/web/api/text/splittext/index.html +++ b/files/en-us/web/api/text/splittext/index.html @@ -104,8 +104,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Text.splitText")}}

        See also

        diff --git a/files/en-us/web/api/text/text/index.html b/files/en-us/web/api/text/text/index.html index b94d43b8de12ee1..a9f30b2c4ebe3ea 100644 --- a/files/en-us/web/api/text/text/index.html +++ b/files/en-us/web/api/text/text/index.html @@ -42,8 +42,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Text.Text")}}

        See also

        diff --git a/files/en-us/web/api/text/wholetext/index.html b/files/en-us/web/api/text/wholetext/index.html index 012c00e4ea3da89..70c465c77d63f1a 100644 --- a/files/en-us/web/api/text/wholetext/index.html +++ b/files/en-us/web/api/text/wholetext/index.html @@ -90,8 +90,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.Text.wholeText")}}

        See also

        diff --git a/files/en-us/web/api/textdecoder/decode/index.html b/files/en-us/web/api/textdecoder/decode/index.html index da04d6bee908a47..f04ed5dded17cf6 100644 --- a/files/en-us/web/api/textdecoder/decode/index.html +++ b/files/en-us/web/api/textdecoder/decode/index.html @@ -77,7 +77,6 @@

        Browser compatibility

        -

        {{Compat("api.TextDecoder.decode")}}

        diff --git a/files/en-us/web/api/textdecoder/encoding/index.html b/files/en-us/web/api/textdecoder/encoding/index.html index ebdd992edf9c5d0..44f11d4c17f4a51 100644 --- a/files/en-us/web/api/textdecoder/encoding/index.html +++ b/files/en-us/web/api/textdecoder/encoding/index.html @@ -51,7 +51,6 @@

        Browser compatibility

        -

        {{Compat("api.TextDecoder.encoding")}}

        diff --git a/files/en-us/web/api/textdecoder/index.html b/files/en-us/web/api/textdecoder/index.html index 6078ad63843885a..371b71b5803ab0e 100644 --- a/files/en-us/web/api/textdecoder/index.html +++ b/files/en-us/web/api/textdecoder/index.html @@ -98,7 +98,6 @@

        Browser compatibility

        -

        {{Compat("api.TextDecoder")}}

        diff --git a/files/en-us/web/api/textdecoder/textdecoder/index.html b/files/en-us/web/api/textdecoder/textdecoder/index.html index 7487a707984426c..266f634bbffc4c0 100644 --- a/files/en-us/web/api/textdecoder/textdecoder/index.html +++ b/files/en-us/web/api/textdecoder/textdecoder/index.html @@ -247,7 +247,6 @@

        Browser compatibility

        -

        {{Compat("api.TextDecoder.TextDecoder")}}

        diff --git a/files/en-us/web/api/textencoder/encode/index.html b/files/en-us/web/api/textencoder/encode/index.html index c7696a35e30d3ca..7d5e50eff32b7c9 100644 --- a/files/en-us/web/api/textencoder/encode/index.html +++ b/files/en-us/web/api/textencoder/encode/index.html @@ -66,7 +66,6 @@

        Browser compatibility

        -

        {{Compat("api.TextEncoder.encode")}}

        diff --git a/files/en-us/web/api/textencoder/encodeinto/index.html b/files/en-us/web/api/textencoder/encodeinto/index.html index 2c9475b09de9e4a..b68d6abdb138f8f 100644 --- a/files/en-us/web/api/textencoder/encodeinto/index.html +++ b/files/en-us/web/api/textencoder/encodeinto/index.html @@ -244,7 +244,6 @@

        Browser compatibility

        -

        {{Compat("api.TextEncoder.encodeInto")}}

        diff --git a/files/en-us/web/api/textencoder/encoding/index.html b/files/en-us/web/api/textencoder/encoding/index.html index aa2602f508c94f5..5bbe59d3b849c59 100644 --- a/files/en-us/web/api/textencoder/encoding/index.html +++ b/files/en-us/web/api/textencoder/encoding/index.html @@ -42,7 +42,6 @@

        Browser compatibility

        -

        {{Compat("api.TextEncoder.encoding")}}

        diff --git a/files/en-us/web/api/textencoder/index.html b/files/en-us/web/api/textencoder/index.html index 6680c70f7a52c27..f9a54eadc2a8ee9 100644 --- a/files/en-us/web/api/textencoder/index.html +++ b/files/en-us/web/api/textencoder/index.html @@ -142,7 +142,6 @@

        Browser compatibility

        -

        {{Compat("api.TextEncoder")}}

        diff --git a/files/en-us/web/api/textencoder/textencoder/index.html b/files/en-us/web/api/textencoder/textencoder/index.html index dd018229ef96ea4..627172fc6edd2a6 100644 --- a/files/en-us/web/api/textencoder/textencoder/index.html +++ b/files/en-us/web/api/textencoder/textencoder/index.html @@ -60,7 +60,6 @@

        Browser compatibility

        -

        {{Compat("api.TextEncoder.TextEncoder")}}

        diff --git a/files/en-us/web/api/textmetrics/actualboundingboxascent/index.html b/files/en-us/web/api/textmetrics/actualboundingboxascent/index.html index d810ba58af40588..6964e265d961035 100644 --- a/files/en-us/web/api/textmetrics/actualboundingboxascent/index.html +++ b/files/en-us/web/api/textmetrics/actualboundingboxascent/index.html @@ -36,8 +36,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.TextMetrics.actualBoundingBoxAscent")}}

        See also

        diff --git a/files/en-us/web/api/textmetrics/actualboundingboxdescent/index.html b/files/en-us/web/api/textmetrics/actualboundingboxdescent/index.html index 7c4ec3b79c6e3ff..267f71e555ab467 100644 --- a/files/en-us/web/api/textmetrics/actualboundingboxdescent/index.html +++ b/files/en-us/web/api/textmetrics/actualboundingboxdescent/index.html @@ -36,8 +36,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.TextMetrics.actualBoundingBoxDescent")}}

        See also

        diff --git a/files/en-us/web/api/textmetrics/actualboundingboxleft/index.html b/files/en-us/web/api/textmetrics/actualboundingboxleft/index.html index 14eee789df69e75..c0f3aa7d104fd7e 100644 --- a/files/en-us/web/api/textmetrics/actualboundingboxleft/index.html +++ b/files/en-us/web/api/textmetrics/actualboundingboxleft/index.html @@ -36,8 +36,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.TextMetrics.actualBoundingBoxLeft")}}

        See also

        diff --git a/files/en-us/web/api/textmetrics/actualboundingboxright/index.html b/files/en-us/web/api/textmetrics/actualboundingboxright/index.html index 1d7103ca7a1f3bb..db23063e4404784 100644 --- a/files/en-us/web/api/textmetrics/actualboundingboxright/index.html +++ b/files/en-us/web/api/textmetrics/actualboundingboxright/index.html @@ -36,8 +36,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.TextMetrics.actualBoundingBoxRight")}}

        See also

        diff --git a/files/en-us/web/api/textmetrics/alphabeticbaseline/index.html b/files/en-us/web/api/textmetrics/alphabeticbaseline/index.html index cf0efa1c7df99e0..3964ba80c6e521d 100644 --- a/files/en-us/web/api/textmetrics/alphabeticbaseline/index.html +++ b/files/en-us/web/api/textmetrics/alphabeticbaseline/index.html @@ -36,8 +36,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.TextMetrics.alphabeticBaseline")}}

        See also

        diff --git a/files/en-us/web/api/textmetrics/emheightascent/index.html b/files/en-us/web/api/textmetrics/emheightascent/index.html index 6eeae9ba1c79dff..a80cb701746446e 100644 --- a/files/en-us/web/api/textmetrics/emheightascent/index.html +++ b/files/en-us/web/api/textmetrics/emheightascent/index.html @@ -36,8 +36,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.TextMetrics.emHeightAscent")}}

        See also

        diff --git a/files/en-us/web/api/textmetrics/emheightdescent/index.html b/files/en-us/web/api/textmetrics/emheightdescent/index.html index 554c7abd2192746..dbe7b83e9c9f1ef 100644 --- a/files/en-us/web/api/textmetrics/emheightdescent/index.html +++ b/files/en-us/web/api/textmetrics/emheightdescent/index.html @@ -36,8 +36,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.TextMetrics.emHeightDescent")}}

        See also

        diff --git a/files/en-us/web/api/textmetrics/fontboundingboxascent/index.html b/files/en-us/web/api/textmetrics/fontboundingboxascent/index.html index 67e2ffabbd35957..9d18b1eb0eb905b 100644 --- a/files/en-us/web/api/textmetrics/fontboundingboxascent/index.html +++ b/files/en-us/web/api/textmetrics/fontboundingboxascent/index.html @@ -36,8 +36,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.TextMetrics.fontBoundingBoxAscent")}}

        See also

        diff --git a/files/en-us/web/api/textmetrics/fontboundingboxdescent/index.html b/files/en-us/web/api/textmetrics/fontboundingboxdescent/index.html index 46466ead9cbfe87..2a0b1ef374a27a7 100644 --- a/files/en-us/web/api/textmetrics/fontboundingboxdescent/index.html +++ b/files/en-us/web/api/textmetrics/fontboundingboxdescent/index.html @@ -36,8 +36,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.TextMetrics.fontBoundingBoxDescent")}}

        See also

        diff --git a/files/en-us/web/api/textmetrics/hangingbaseline/index.html b/files/en-us/web/api/textmetrics/hangingbaseline/index.html index 3f6890f7f18ca8a..01e8b281fea44bb 100644 --- a/files/en-us/web/api/textmetrics/hangingbaseline/index.html +++ b/files/en-us/web/api/textmetrics/hangingbaseline/index.html @@ -36,8 +36,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.TextMetrics.hangingBaseline")}}

        See also

        diff --git a/files/en-us/web/api/textmetrics/ideographicbaseline/index.html b/files/en-us/web/api/textmetrics/ideographicbaseline/index.html index 59dd817db4f4893..e59815ebdfec49b 100644 --- a/files/en-us/web/api/textmetrics/ideographicbaseline/index.html +++ b/files/en-us/web/api/textmetrics/ideographicbaseline/index.html @@ -36,8 +36,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.TextMetrics.ideographicBaseline")}}

        See also

        diff --git a/files/en-us/web/api/textmetrics/index.html b/files/en-us/web/api/textmetrics/index.html index 2728c11850e75c8..c3c647c964463b7 100644 --- a/files/en-us/web/api/textmetrics/index.html +++ b/files/en-us/web/api/textmetrics/index.html @@ -123,7 +123,6 @@

        Browser compatibility

        -

        {{Compat("api.TextMetrics")}}

        diff --git a/files/en-us/web/api/textmetrics/width/index.html b/files/en-us/web/api/textmetrics/width/index.html index 454d4f284243895..22991e52885bfa6 100644 --- a/files/en-us/web/api/textmetrics/width/index.html +++ b/files/en-us/web/api/textmetrics/width/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.TextMetrics.width")}}

        See also

        diff --git a/files/en-us/web/api/textrange/index.html b/files/en-us/web/api/textrange/index.html index ece7f20c197cf8a..f12fb22c83d5fd1 100644 --- a/files/en-us/web/api/textrange/index.html +++ b/files/en-us/web/api/textrange/index.html @@ -132,8 +132,6 @@

        selection Compatibility

        Browser compatibility

        - -

    diff --git a/files/en-us/web/api/texttrack/index.html b/files/en-us/web/api/texttrack/index.html index cd22e498dfe3da0..9ff4d6439bf6a95 100644 --- a/files/en-us/web/api/texttrack/index.html +++ b/files/en-us/web/api/texttrack/index.html @@ -84,8 +84,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TextTrack")}}

    See also

    diff --git a/files/en-us/web/api/texttrack/mode/index.html b/files/en-us/web/api/texttrack/mode/index.html index 9a57b7b5c1bc7d9..a1844ad79bd69db 100644 --- a/files/en-us/web/api/texttrack/mode/index.html +++ b/files/en-us/web/api/texttrack/mode/index.html @@ -92,7 +92,6 @@

    Browser compatibility

    -

    {{Compat("api.TextTrack.mode")}}

    diff --git a/files/en-us/web/api/texttrackcue/index.html b/files/en-us/web/api/texttrackcue/index.html index dd70c43b803d7d7..e4f64f7dafb64be 100644 --- a/files/en-us/web/api/texttrackcue/index.html +++ b/files/en-us/web/api/texttrackcue/index.html @@ -71,6 +71,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TextTrackCue")}}

    diff --git a/files/en-us/web/api/texttracklist/addtrack_event/index.html b/files/en-us/web/api/texttracklist/addtrack_event/index.html index e0710e6af803370..5803ad75d410387 100644 --- a/files/en-us/web/api/texttracklist/addtrack_event/index.html +++ b/files/en-us/web/api/texttracklist/addtrack_event/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TextTrackList.addTrack_event")}}

    See also

    diff --git a/files/en-us/web/api/texttracklist/change_event/index.html b/files/en-us/web/api/texttracklist/change_event/index.html index 69933b39093a198..7a313a1293f63dc 100644 --- a/files/en-us/web/api/texttracklist/change_event/index.html +++ b/files/en-us/web/api/texttracklist/change_event/index.html @@ -67,8 +67,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TextTrackList.change_event")}}

    See also

    diff --git a/files/en-us/web/api/texttracklist/gettrackbyid/index.html b/files/en-us/web/api/texttracklist/gettrackbyid/index.html index fc589d03c932070..14d5767306667f2 100644 --- a/files/en-us/web/api/texttracklist/gettrackbyid/index.html +++ b/files/en-us/web/api/texttracklist/gettrackbyid/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TextTrackList.getTrackById")}}

    diff --git a/files/en-us/web/api/texttracklist/index.html b/files/en-us/web/api/texttracklist/index.html index c0ab45896267453..fdeaaf45bea14ac 100644 --- a/files/en-us/web/api/texttracklist/index.html +++ b/files/en-us/web/api/texttracklist/index.html @@ -108,6 +108,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TextTrackList")}}

    diff --git a/files/en-us/web/api/texttracklist/length/index.html b/files/en-us/web/api/texttracklist/length/index.html index e18c74281ae2b7b..edfa3c81826b9e3 100644 --- a/files/en-us/web/api/texttracklist/length/index.html +++ b/files/en-us/web/api/texttracklist/length/index.html @@ -60,6 +60,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TextTrackList.length")}}

    diff --git a/files/en-us/web/api/texttracklist/onaddtrack/index.html b/files/en-us/web/api/texttracklist/onaddtrack/index.html index a312837de253d43..64d79158cd6217e 100644 --- a/files/en-us/web/api/texttracklist/onaddtrack/index.html +++ b/files/en-us/web/api/texttracklist/onaddtrack/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TextTrackList.onaddtrack")}}

     

    diff --git a/files/en-us/web/api/texttracklist/onchange/index.html b/files/en-us/web/api/texttracklist/onchange/index.html index 4db72ff98483900..f4d1f33aaba5552 100644 --- a/files/en-us/web/api/texttracklist/onchange/index.html +++ b/files/en-us/web/api/texttracklist/onchange/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TextTrackList.onchange")}}

    diff --git a/files/en-us/web/api/texttracklist/onremovetrack/index.html b/files/en-us/web/api/texttracklist/onremovetrack/index.html index 65cdce034db2424..dfe1e6dfa3ca04c 100644 --- a/files/en-us/web/api/texttracklist/onremovetrack/index.html +++ b/files/en-us/web/api/texttracklist/onremovetrack/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TextTrackList.onremovetrack")}}

    diff --git a/files/en-us/web/api/texttracklist/removetrack_event/index.html b/files/en-us/web/api/texttracklist/removetrack_event/index.html index 287513df76bdbcf..988d3c9e15095fe 100644 --- a/files/en-us/web/api/texttracklist/removetrack_event/index.html +++ b/files/en-us/web/api/texttracklist/removetrack_event/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TextTrackList.removeTrack_event")}}

    See also

    diff --git a/files/en-us/web/api/timeranges/end/index.html b/files/en-us/web/api/timeranges/end/index.html index 8118fa7c88e1dcd..1ea096714a6669c 100644 --- a/files/en-us/web/api/timeranges/end/index.html +++ b/files/en-us/web/api/timeranges/end/index.html @@ -74,6 +74,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TimeRanges.end")}}

    diff --git a/files/en-us/web/api/timeranges/index.html b/files/en-us/web/api/timeranges/index.html index 1e67122793e3d78..790580c87bfef27 100644 --- a/files/en-us/web/api/timeranges/index.html +++ b/files/en-us/web/api/timeranges/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TimeRanges")}}

    diff --git a/files/en-us/web/api/timeranges/length/index.html b/files/en-us/web/api/timeranges/length/index.html index 00316ca49f79b69..9da09bde56faa4c 100644 --- a/files/en-us/web/api/timeranges/length/index.html +++ b/files/en-us/web/api/timeranges/length/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TimeRanges.length")}}

    diff --git a/files/en-us/web/api/timeranges/start/index.html b/files/en-us/web/api/timeranges/start/index.html index b2951c417db2941..f01f542f87ce701 100644 --- a/files/en-us/web/api/timeranges/start/index.html +++ b/files/en-us/web/api/timeranges/start/index.html @@ -74,8 +74,4 @@

    Specifications

    Browser compatibility

    - - - -

    {{Compat("api.TimeRanges.start")}}

    diff --git a/files/en-us/web/api/touch/clientx/index.html b/files/en-us/web/api/touch/clientx/index.html index ff02251f699f097..621e13cb391279b 100644 --- a/files/en-us/web/api/touch/clientx/index.html +++ b/files/en-us/web/api/touch/clientx/index.html @@ -77,6 +77,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.clientX")}}

    diff --git a/files/en-us/web/api/touch/clienty/index.html b/files/en-us/web/api/touch/clienty/index.html index 87f2cf564a4c5d1..c1f439fead2f97c 100644 --- a/files/en-us/web/api/touch/clienty/index.html +++ b/files/en-us/web/api/touch/clienty/index.html @@ -75,6 +75,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.clientY")}}

    diff --git a/files/en-us/web/api/touch/force/index.html b/files/en-us/web/api/touch/force/index.html index e059d1eab2c0806..21394b9d73271e5 100644 --- a/files/en-us/web/api/touch/force/index.html +++ b/files/en-us/web/api/touch/force/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.force")}}

    diff --git a/files/en-us/web/api/touch/identifier/index.html b/files/en-us/web/api/touch/identifier/index.html index dd143fee57f4bea..781f4d66765ddc4 100644 --- a/files/en-us/web/api/touch/identifier/index.html +++ b/files/en-us/web/api/touch/identifier/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.identifier")}}

    diff --git a/files/en-us/web/api/touch/index.html b/files/en-us/web/api/touch/index.html index 5b639bfd799f1ff..2a5402e222c5aa7 100644 --- a/files/en-us/web/api/touch/index.html +++ b/files/en-us/web/api/touch/index.html @@ -98,7 +98,6 @@

    Browser compatibility

    -

    {{Compat("api.Touch")}}

    diff --git a/files/en-us/web/api/touch/pagex/index.html b/files/en-us/web/api/touch/pagex/index.html index 592a83b308c05f4..b1afbbfa017d44e 100644 --- a/files/en-us/web/api/touch/pagex/index.html +++ b/files/en-us/web/api/touch/pagex/index.html @@ -64,6 +64,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.pageX")}}

    diff --git a/files/en-us/web/api/touch/pagey/index.html b/files/en-us/web/api/touch/pagey/index.html index ef6cd2b25b6ea4e..c7cf10f51c9b61a 100644 --- a/files/en-us/web/api/touch/pagey/index.html +++ b/files/en-us/web/api/touch/pagey/index.html @@ -63,6 +63,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.pageY")}}

    diff --git a/files/en-us/web/api/touch/radiusx/index.html b/files/en-us/web/api/touch/radiusx/index.html index 4bf9d92f7e875fd..7835855861dac57 100644 --- a/files/en-us/web/api/touch/radiusx/index.html +++ b/files/en-us/web/api/touch/radiusx/index.html @@ -80,6 +80,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.radiusX")}}

    diff --git a/files/en-us/web/api/touch/radiusy/index.html b/files/en-us/web/api/touch/radiusy/index.html index 1310ace1529866c..e6098a0b2296b5e 100644 --- a/files/en-us/web/api/touch/radiusy/index.html +++ b/files/en-us/web/api/touch/radiusy/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.radiusY")}}

    diff --git a/files/en-us/web/api/touch/rotationangle/index.html b/files/en-us/web/api/touch/rotationangle/index.html index 6a8a141c90b80dc..af8545ee4e47739 100644 --- a/files/en-us/web/api/touch/rotationangle/index.html +++ b/files/en-us/web/api/touch/rotationangle/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.rotationAngle")}}

    diff --git a/files/en-us/web/api/touch/screenx/index.html b/files/en-us/web/api/touch/screenx/index.html index 636c5b2ea274704..57a75fdca1f07c7 100644 --- a/files/en-us/web/api/touch/screenx/index.html +++ b/files/en-us/web/api/touch/screenx/index.html @@ -71,6 +71,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.screenX")}}

    diff --git a/files/en-us/web/api/touch/screeny/index.html b/files/en-us/web/api/touch/screeny/index.html index cf97c27764159dc..6bce2dcaffaa4f0 100644 --- a/files/en-us/web/api/touch/screeny/index.html +++ b/files/en-us/web/api/touch/screeny/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.screenY")}}

    diff --git a/files/en-us/web/api/touch/target/index.html b/files/en-us/web/api/touch/target/index.html index 96e67fa1555f6b5..8377c32c236bdc8 100644 --- a/files/en-us/web/api/touch/target/index.html +++ b/files/en-us/web/api/touch/target/index.html @@ -70,6 +70,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.target")}}

    diff --git a/files/en-us/web/api/touch/touch/index.html b/files/en-us/web/api/touch/touch/index.html index 608d6fd32509d39..fc5a4d162cedc09 100644 --- a/files/en-us/web/api/touch/touch/index.html +++ b/files/en-us/web/api/touch/touch/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Touch.Touch")}}


    diff --git a/files/en-us/web/api/touch_events/index.html b/files/en-us/web/api/touch_events/index.html index b866f3318ea0a66..e74fe4d61984e42 100644 --- a/files/en-us/web/api/touch_events/index.html +++ b/files/en-us/web/api/touch_events/index.html @@ -328,8 +328,6 @@

    Touch

    To support both touch and mouse across all types of devices, use pointer events instead.

    - -

    {{Compat("api.Touch")}}

    Firefox, touch events, and multiprocess (e10s)

    diff --git a/files/en-us/web/api/touchevent/altkey/index.html b/files/en-us/web/api/touchevent/altkey/index.html index 32fc94d56031764..30e324f391945d3 100644 --- a/files/en-us/web/api/touchevent/altkey/index.html +++ b/files/en-us/web/api/touchevent/altkey/index.html @@ -69,6 +69,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TouchEvent.altKey")}}

    diff --git a/files/en-us/web/api/touchevent/changedtouches/index.html b/files/en-us/web/api/touchevent/changedtouches/index.html index 96e5014192b7fcf..d2f20e417ce6a2a 100644 --- a/files/en-us/web/api/touchevent/changedtouches/index.html +++ b/files/en-us/web/api/touchevent/changedtouches/index.html @@ -74,6 +74,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TouchEvent.changedTouches")}}

    diff --git a/files/en-us/web/api/touchevent/ctrlkey/index.html b/files/en-us/web/api/touchevent/ctrlkey/index.html index 975a47365f608ea..b65db6d9a085f1d 100644 --- a/files/en-us/web/api/touchevent/ctrlkey/index.html +++ b/files/en-us/web/api/touchevent/ctrlkey/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TouchEvent.ctrlKey")}}

    diff --git a/files/en-us/web/api/touchevent/index.html b/files/en-us/web/api/touchevent/index.html index 01c788beeee0a58..5135b74a8b672b9 100644 --- a/files/en-us/web/api/touchevent/index.html +++ b/files/en-us/web/api/touchevent/index.html @@ -134,8 +134,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TouchEvent")}}

    See also

    diff --git a/files/en-us/web/api/touchevent/metakey/index.html b/files/en-us/web/api/touchevent/metakey/index.html index ddbda90fcd49d64..beabb46f777f6ab 100644 --- a/files/en-us/web/api/touchevent/metakey/index.html +++ b/files/en-us/web/api/touchevent/metakey/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TouchEvent.metaKey")}}

    diff --git a/files/en-us/web/api/touchevent/shiftkey/index.html b/files/en-us/web/api/touchevent/shiftkey/index.html index 3d9ddeae1996f5e..f71e9ab7f8965c9 100644 --- a/files/en-us/web/api/touchevent/shiftkey/index.html +++ b/files/en-us/web/api/touchevent/shiftkey/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TouchEvent.shiftKey")}}

    diff --git a/files/en-us/web/api/touchevent/targettouches/index.html b/files/en-us/web/api/touchevent/targettouches/index.html index edd9e8648047284..729b0eb4f53ec7e 100644 --- a/files/en-us/web/api/touchevent/targettouches/index.html +++ b/files/en-us/web/api/touchevent/targettouches/index.html @@ -65,6 +65,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TouchEvent.targetTouches")}}

    diff --git a/files/en-us/web/api/touchevent/touches/index.html b/files/en-us/web/api/touchevent/touches/index.html index 528dce20aab987f..b338d1d9323486e 100644 --- a/files/en-us/web/api/touchevent/touches/index.html +++ b/files/en-us/web/api/touchevent/touches/index.html @@ -72,6 +72,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TouchEvent.touches")}}

    diff --git a/files/en-us/web/api/touchevent/touchevent/index.html b/files/en-us/web/api/touchevent/touchevent/index.html index 3eb656b16e5073d..0e38a8b52bbdac8 100644 --- a/files/en-us/web/api/touchevent/touchevent/index.html +++ b/files/en-us/web/api/touchevent/touchevent/index.html @@ -44,8 +44,6 @@

    Values

    Browser compatibility

    - -

    {{Compat("api.TouchEvent.TouchEvent")}}

    See also

    diff --git a/files/en-us/web/api/touchlist/index.html b/files/en-us/web/api/touchlist/index.html index 37af8a138ddb6b6..c69beb1e71fb4c7 100644 --- a/files/en-us/web/api/touchlist/index.html +++ b/files/en-us/web/api/touchlist/index.html @@ -61,8 +61,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TouchList")}}

    See also

    diff --git a/files/en-us/web/api/touchlist/item/index.html b/files/en-us/web/api/touchlist/item/index.html index b52f7d98df7cc46..5b87e4bbae7f0ab 100644 --- a/files/en-us/web/api/touchlist/item/index.html +++ b/files/en-us/web/api/touchlist/item/index.html @@ -79,6 +79,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TouchList.item")}}

    diff --git a/files/en-us/web/api/touchlist/length/index.html b/files/en-us/web/api/touchlist/length/index.html index a11e3f3174d65af..8db6381fc59b84e 100644 --- a/files/en-us/web/api/touchlist/length/index.html +++ b/files/en-us/web/api/touchlist/length/index.html @@ -71,6 +71,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TouchList.length")}}

    diff --git a/files/en-us/web/api/trackdefault/bytestreamtrackid/index.html b/files/en-us/web/api/trackdefault/bytestreamtrackid/index.html index 684649616de1cea..fc1a97f1c8fafce 100644 --- a/files/en-us/web/api/trackdefault/bytestreamtrackid/index.html +++ b/files/en-us/web/api/trackdefault/bytestreamtrackid/index.html @@ -37,7 +37,6 @@

    Browser compatibility

    -

    {{Compat("api.TrackDefault.byteStreamTrackID")}}

    diff --git a/files/en-us/web/api/trackdefault/index.html b/files/en-us/web/api/trackdefault/index.html index 7c59a66841f8acb..5a1186425c64b18 100644 --- a/files/en-us/web/api/trackdefault/index.html +++ b/files/en-us/web/api/trackdefault/index.html @@ -40,13 +40,10 @@

    Properties

    Returns the default kinds used when an initialization segment does not contain kind information for a new track.
    - -

    Browser compatibility

    -

    {{Compat("api.TrackDefault")}}

    diff --git a/files/en-us/web/api/trackdefault/kinds/index.html b/files/en-us/web/api/trackdefault/kinds/index.html index dbd2850963a42b0..3e28caab28f8007 100644 --- a/files/en-us/web/api/trackdefault/kinds/index.html +++ b/files/en-us/web/api/trackdefault/kinds/index.html @@ -32,8 +32,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.TrackDefault.kinds")}}

    See also

    diff --git a/files/en-us/web/api/trackdefault/label/index.html b/files/en-us/web/api/trackdefault/label/index.html index 4d55bf1035e41ad..3a9d03b381f4d24 100644 --- a/files/en-us/web/api/trackdefault/label/index.html +++ b/files/en-us/web/api/trackdefault/label/index.html @@ -35,7 +35,6 @@

    Browser compatibility

    -

    {{Compat("api.TrackDefault.label")}}

    diff --git a/files/en-us/web/api/trackdefault/language/index.html b/files/en-us/web/api/trackdefault/language/index.html index 4e815ed9f140c17..872175c56af9d3f 100644 --- a/files/en-us/web/api/trackdefault/language/index.html +++ b/files/en-us/web/api/trackdefault/language/index.html @@ -37,7 +37,6 @@

    Browser compatibility

    -

    {{Compat("api.TrackDefault.language")}}

    diff --git a/files/en-us/web/api/trackdefault/trackdefault/index.html b/files/en-us/web/api/trackdefault/trackdefault/index.html index 07b0d2438c8fc9e..299d3432ad2ac4f 100644 --- a/files/en-us/web/api/trackdefault/trackdefault/index.html +++ b/files/en-us/web/api/trackdefault/trackdefault/index.html @@ -66,7 +66,6 @@

    Browser compatibility

    -

    {{Compat("api.TrackDefault.TrackDefault")}}

    diff --git a/files/en-us/web/api/trackdefault/type/index.html b/files/en-us/web/api/trackdefault/type/index.html index d0b614024b30a2d..d2339cd35a0bb3a 100644 --- a/files/en-us/web/api/trackdefault/type/index.html +++ b/files/en-us/web/api/trackdefault/type/index.html @@ -32,8 +32,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.TrackDefault.type")}}

    See also

    diff --git a/files/en-us/web/api/trackdefaultlist/index.html b/files/en-us/web/api/trackdefaultlist/index.html index 9e00aab5d383050..814044ae5873057 100644 --- a/files/en-us/web/api/trackdefaultlist/index.html +++ b/files/en-us/web/api/trackdefaultlist/index.html @@ -36,8 +36,6 @@

    Properties

    Returns the number of {{domxref("TrackDefault")}} objects in the list.
    - -

    Methods

    Inherits properties from its parent interface, {{domxref("EventTarget")}}.

    @@ -56,7 +54,6 @@

    Browser compatibility

    -

    {{Compat("api.TrackDefaultList")}}

    diff --git a/files/en-us/web/api/trackdefaultlist/length/index.html b/files/en-us/web/api/trackdefaultlist/length/index.html index 762946f3acae0e4..53d1a0cb6173bbd 100644 --- a/files/en-us/web/api/trackdefaultlist/length/index.html +++ b/files/en-us/web/api/trackdefaultlist/length/index.html @@ -36,7 +36,6 @@

    Browser compatibility

    -

    {{Compat("api.TrackDefaultList.length")}}

    diff --git a/files/en-us/web/api/trackdefaultlist/trackdefault/index.html b/files/en-us/web/api/trackdefaultlist/trackdefault/index.html index 0d9524f264e2734..30d766d6d6e1eb4 100644 --- a/files/en-us/web/api/trackdefaultlist/trackdefault/index.html +++ b/files/en-us/web/api/trackdefaultlist/trackdefault/index.html @@ -45,7 +45,6 @@

    Browser compatibility

    -

    {{Compat("api.TrackDefaultList.TrackDefault")}}

    diff --git a/files/en-us/web/api/trackdefaultlist/trackdefaultlist/index.html b/files/en-us/web/api/trackdefaultlist/trackdefaultlist/index.html index 2c06e78f3ffb9cd..e0850c1ab8a7190 100644 --- a/files/en-us/web/api/trackdefaultlist/trackdefaultlist/index.html +++ b/files/en-us/web/api/trackdefaultlist/trackdefaultlist/index.html @@ -38,7 +38,6 @@

    Browser compatibility

    -

    {{Compat("api.TrackDefaultList.TrackDefaultList")}}

    diff --git a/files/en-us/web/api/trackevent/index.html b/files/en-us/web/api/trackevent/index.html index 174717e47c11df4..7302c84e79e0479 100644 --- a/files/en-us/web/api/trackevent/index.html +++ b/files/en-us/web/api/trackevent/index.html @@ -23,7 +23,6 @@
  • Events affecting text tracks are sent to the {{domxref("TextTrackList")}} object indicated by {{domxref("HTMLMediaElement.textTracks")}}.
  • -

    Constructor

    @@ -107,6 +106,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TrackEvent")}}

    diff --git a/files/en-us/web/api/trackevent/track/index.html b/files/en-us/web/api/trackevent/track/index.html index 0b4e3ad669d810f..f9d0f3bca140b4d 100644 --- a/files/en-us/web/api/trackevent/track/index.html +++ b/files/en-us/web/api/trackevent/track/index.html @@ -50,6 +50,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TrackEvent.track")}}

    diff --git a/files/en-us/web/api/trackevent/trackevent/index.html b/files/en-us/web/api/trackevent/trackevent/index.html index a1e3e3ed55d7392..c9651cd9c21e54f 100644 --- a/files/en-us/web/api/trackevent/trackevent/index.html +++ b/files/en-us/web/api/trackevent/trackevent/index.html @@ -68,6 +68,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TrackEvent.TrackEvent")}}

    diff --git a/files/en-us/web/api/transferable/index.html b/files/en-us/web/api/transferable/index.html index 224aaf0c82f2f3c..ad1bfdae60e23cd 100644 --- a/files/en-us/web/api/transferable/index.html +++ b/files/en-us/web/api/transferable/index.html @@ -56,7 +56,6 @@

    Browser compatibility

    -

    {{Compat("api.Transferable")}}

    diff --git a/files/en-us/web/api/transformstream/index.html b/files/en-us/web/api/transformstream/index.html index 3e4eea70a9bf40c..f3b2c2187e12b6e 100644 --- a/files/en-us/web/api/transformstream/index.html +++ b/files/en-us/web/api/transformstream/index.html @@ -154,7 +154,6 @@

    Browser compatibility

    -

    {{Compat("api.TransformStream")}}

    diff --git a/files/en-us/web/api/transitionevent/animationname/index.html b/files/en-us/web/api/transitionevent/animationname/index.html index b34fe2310c6b5fe..b35fa8e89ae7921 100644 --- a/files/en-us/web/api/transitionevent/animationname/index.html +++ b/files/en-us/web/api/transitionevent/animationname/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TransitionEvent.transitionName")}}

    See also

    diff --git a/files/en-us/web/api/transitionevent/elapsedtime/index.html b/files/en-us/web/api/transitionevent/elapsedtime/index.html index 4ee2a080025e30d..7f2d3a97c0c968b 100644 --- a/files/en-us/web/api/transitionevent/elapsedtime/index.html +++ b/files/en-us/web/api/transitionevent/elapsedtime/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TransitionEvent.elapsedTime")}}

    See also

    diff --git a/files/en-us/web/api/transitionevent/index.html b/files/en-us/web/api/transitionevent/index.html index 2b76af551948b9b..8eb29f860b561c1 100644 --- a/files/en-us/web/api/transitionevent/index.html +++ b/files/en-us/web/api/transitionevent/index.html @@ -76,8 +76,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TransitionEvent")}}

    See also

    diff --git a/files/en-us/web/api/transitionevent/inittransitionevent/index.html b/files/en-us/web/api/transitionevent/inittransitionevent/index.html index 49fd59007de05cb..976012e1bbe6ad6 100644 --- a/files/en-us/web/api/transitionevent/inittransitionevent/index.html +++ b/files/en-us/web/api/transitionevent/inittransitionevent/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TransitionEvent.initTransitionEvent")}}

    See also

    diff --git a/files/en-us/web/api/transitionevent/pseudoelement/index.html b/files/en-us/web/api/transitionevent/pseudoelement/index.html index 74de31888cccabb..96de449bef5c843 100644 --- a/files/en-us/web/api/transitionevent/pseudoelement/index.html +++ b/files/en-us/web/api/transitionevent/pseudoelement/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TransitionEvent.pseudoElement")}}

    See also

    diff --git a/files/en-us/web/api/transitionevent/transitionevent/index.html b/files/en-us/web/api/transitionevent/transitionevent/index.html index b6d66318eb875ac..ccae0efdcf432c7 100644 --- a/files/en-us/web/api/transitionevent/transitionevent/index.html +++ b/files/en-us/web/api/transitionevent/transitionevent/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TransitionEvent.TransitionEvent")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/currentnode/index.html b/files/en-us/web/api/treewalker/currentnode/index.html index fbc6b99582c40a8..c6716ec8feeb403 100644 --- a/files/en-us/web/api/treewalker/currentnode/index.html +++ b/files/en-us/web/api/treewalker/currentnode/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker.currentNode")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/expandentityreferences/index.html b/files/en-us/web/api/treewalker/expandentityreferences/index.html index d46f9780d7b3e13..f141959eb511d19 100644 --- a/files/en-us/web/api/treewalker/expandentityreferences/index.html +++ b/files/en-us/web/api/treewalker/expandentityreferences/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker.expandEntityReferences")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/filter/index.html b/files/en-us/web/api/treewalker/filter/index.html index d519d7546ccbcf2..596aa7c10a2d761 100644 --- a/files/en-us/web/api/treewalker/filter/index.html +++ b/files/en-us/web/api/treewalker/filter/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker.filter")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/firstchild/index.html b/files/en-us/web/api/treewalker/firstchild/index.html index b0327b40667464d..551dc2c42fd69de 100644 --- a/files/en-us/web/api/treewalker/firstchild/index.html +++ b/files/en-us/web/api/treewalker/firstchild/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker.firstChild")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/index.html b/files/en-us/web/api/treewalker/index.html index bb4149d74452c64..3bcc2856f1d53f1 100644 --- a/files/en-us/web/api/treewalker/index.html +++ b/files/en-us/web/api/treewalker/index.html @@ -156,8 +156,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/lastchild/index.html b/files/en-us/web/api/treewalker/lastchild/index.html index 9366f624b3a764f..832f22d9822886b 100644 --- a/files/en-us/web/api/treewalker/lastchild/index.html +++ b/files/en-us/web/api/treewalker/lastchild/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker.lastChild")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/nextnode/index.html b/files/en-us/web/api/treewalker/nextnode/index.html index 579d38c0a3c66f9..ae8056dd16bf703 100644 --- a/files/en-us/web/api/treewalker/nextnode/index.html +++ b/files/en-us/web/api/treewalker/nextnode/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker.nextNode")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/nextsibling/index.html b/files/en-us/web/api/treewalker/nextsibling/index.html index 393db4622dc961e..09f89bd9664c2d5 100644 --- a/files/en-us/web/api/treewalker/nextsibling/index.html +++ b/files/en-us/web/api/treewalker/nextsibling/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker.nextSibling")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/parentnode/index.html b/files/en-us/web/api/treewalker/parentnode/index.html index 9ab34193dc6f1d7..bcaaee31cca808c 100644 --- a/files/en-us/web/api/treewalker/parentnode/index.html +++ b/files/en-us/web/api/treewalker/parentnode/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker.parentNode")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/previousnode/index.html b/files/en-us/web/api/treewalker/previousnode/index.html index 28f6e6177238707..24df124a9e4193a 100644 --- a/files/en-us/web/api/treewalker/previousnode/index.html +++ b/files/en-us/web/api/treewalker/previousnode/index.html @@ -53,8 +53,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker.previousNode")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/previoussibling/index.html b/files/en-us/web/api/treewalker/previoussibling/index.html index efb1f200991e1dc..73b576a3b458eef 100644 --- a/files/en-us/web/api/treewalker/previoussibling/index.html +++ b/files/en-us/web/api/treewalker/previoussibling/index.html @@ -55,8 +55,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker.previousSibling")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/root/index.html b/files/en-us/web/api/treewalker/root/index.html index 5f2b1f57746ae2b..529a39d61c4bd8a 100644 --- a/files/en-us/web/api/treewalker/root/index.html +++ b/files/en-us/web/api/treewalker/root/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker.root")}}

    See also

    diff --git a/files/en-us/web/api/treewalker/whattoshow/index.html b/files/en-us/web/api/treewalker/whattoshow/index.html index 480cf8901f7736d..45a2087018075b2 100644 --- a/files/en-us/web/api/treewalker/whattoshow/index.html +++ b/files/en-us/web/api/treewalker/whattoshow/index.html @@ -128,8 +128,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.TreeWalker.whatToShow")}}

    See also

    diff --git a/files/en-us/web/api/uievent/cancelbubble/index.html b/files/en-us/web/api/uievent/cancelbubble/index.html index 6d37fd0cbea82f8..e1f5ff2336b5c03 100644 --- a/files/en-us/web/api/uievent/cancelbubble/index.html +++ b/files/en-us/web/api/uievent/cancelbubble/index.html @@ -31,8 +31,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UIEvent.cancelBubble")}}

    See also

    diff --git a/files/en-us/web/api/uievent/detail/index.html b/files/en-us/web/api/uievent/detail/index.html index e6c45be9716045b..937d9724d08d2ca 100644 --- a/files/en-us/web/api/uievent/detail/index.html +++ b/files/en-us/web/api/uievent/detail/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UIEvent.detail")}}

    diff --git a/files/en-us/web/api/uievent/index.html b/files/en-us/web/api/uievent/index.html index 167e0fe0048f245..ccca8ad9ceabd8f 100644 --- a/files/en-us/web/api/uievent/index.html +++ b/files/en-us/web/api/uievent/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UIEvent")}}

    See also

    diff --git a/files/en-us/web/api/uievent/inituievent/index.html b/files/en-us/web/api/uievent/inituievent/index.html index 0caead9545861d9..e53cd7583c2eead 100644 --- a/files/en-us/web/api/uievent/inituievent/index.html +++ b/files/en-us/web/api/uievent/inituievent/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UIEvent.initUIEvent")}}

    See also

    diff --git a/files/en-us/web/api/uievent/ischar/index.html b/files/en-us/web/api/uievent/ischar/index.html index cfd544ad5d5ae01..fdd62c70b6ab691 100644 --- a/files/en-us/web/api/uievent/ischar/index.html +++ b/files/en-us/web/api/uievent/ischar/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UIEvent.isChar")}}

    See also

    diff --git a/files/en-us/web/api/uievent/layerx/index.html b/files/en-us/web/api/uievent/layerx/index.html index 4d89b463978f376..258dd287923c698 100644 --- a/files/en-us/web/api/uievent/layerx/index.html +++ b/files/en-us/web/api/uievent/layerx/index.html @@ -115,6 +115,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UIEvent.layerX")}}

    diff --git a/files/en-us/web/api/uievent/layery/index.html b/files/en-us/web/api/uievent/layery/index.html index 7081cf1fc46cd80..b20bc2733864655 100644 --- a/files/en-us/web/api/uievent/layery/index.html +++ b/files/en-us/web/api/uievent/layery/index.html @@ -116,6 +116,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UIEvent.layerY")}}

    diff --git a/files/en-us/web/api/uievent/pagex/index.html b/files/en-us/web/api/uievent/pagex/index.html index 8c5c782456c21a3..d16b16915b08d9d 100644 --- a/files/en-us/web/api/uievent/pagex/index.html +++ b/files/en-us/web/api/uievent/pagex/index.html @@ -40,8 +40,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UIEvent.pageX")}}

    See also

    diff --git a/files/en-us/web/api/uievent/pagey/index.html b/files/en-us/web/api/uievent/pagey/index.html index bee293ef38b4f18..e1f67c3ab427720 100644 --- a/files/en-us/web/api/uievent/pagey/index.html +++ b/files/en-us/web/api/uievent/pagey/index.html @@ -111,8 +111,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UIEvent.pageY")}}

    See also

    diff --git a/files/en-us/web/api/uievent/sourcecapabilities/index.html b/files/en-us/web/api/uievent/sourcecapabilities/index.html index b014ef1c57bc908..938468eee195c9f 100644 --- a/files/en-us/web/api/uievent/sourcecapabilities/index.html +++ b/files/en-us/web/api/uievent/sourcecapabilities/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UIEvent.sourceCapabilities")}}

    diff --git a/files/en-us/web/api/uievent/uievent/index.html b/files/en-us/web/api/uievent/uievent/index.html index 2e187af3419ef54..8edb8bca19dcaf2 100644 --- a/files/en-us/web/api/uievent/uievent/index.html +++ b/files/en-us/web/api/uievent/uievent/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UIEvent.UIEvent")}}

    See also

    diff --git a/files/en-us/web/api/uievent/view/index.html b/files/en-us/web/api/uievent/view/index.html index 702cf7f6992d4c7..97419dbd214e029 100644 --- a/files/en-us/web/api/uievent/view/index.html +++ b/files/en-us/web/api/uievent/view/index.html @@ -47,6 +47,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UIEvent.view")}}

    diff --git a/files/en-us/web/api/ulongrange/index.html b/files/en-us/web/api/ulongrange/index.html index 0f9f592dcf3c206..0e0732894b44cef 100644 --- a/files/en-us/web/api/ulongrange/index.html +++ b/files/en-us/web/api/ulongrange/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ULongRange")}}

    See also

    diff --git a/files/en-us/web/api/url/createobjecturl/index.html b/files/en-us/web/api/url/createobjecturl/index.html index 265fae36d856b19..2de24c6cf4a9d13 100644 --- a/files/en-us/web/api/url/createobjecturl/index.html +++ b/files/en-us/web/api/url/createobjecturl/index.html @@ -91,8 +91,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.createObjectURL")}}

    See also

    diff --git a/files/en-us/web/api/url/hash/index.html b/files/en-us/web/api/url/hash/index.html index f9612d8a8eff15f..d9e68eaf5a2a0ce 100644 --- a/files/en-us/web/api/url/hash/index.html +++ b/files/en-us/web/api/url/hash/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.hash")}}

    See also

    diff --git a/files/en-us/web/api/url/host/index.html b/files/en-us/web/api/url/host/index.html index 76c0144dd789d61..57abbab7ef62ca2 100644 --- a/files/en-us/web/api/url/host/index.html +++ b/files/en-us/web/api/url/host/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.host")}}

    See also

    diff --git a/files/en-us/web/api/url/hostname/index.html b/files/en-us/web/api/url/hostname/index.html index 4c097abb4036d6c..b813276f26587ef 100644 --- a/files/en-us/web/api/url/hostname/index.html +++ b/files/en-us/web/api/url/hostname/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.hostname")}}

    See also

    diff --git a/files/en-us/web/api/url/href/index.html b/files/en-us/web/api/url/href/index.html index 1a303d213327cb2..bdf5cf623f53b68 100644 --- a/files/en-us/web/api/url/href/index.html +++ b/files/en-us/web/api/url/href/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.href")}}

    See also

    diff --git a/files/en-us/web/api/url/index.html b/files/en-us/web/api/url/index.html index e5eb228f69d9332..5754a003338afa8 100644 --- a/files/en-us/web/api/url/index.html +++ b/files/en-us/web/api/url/index.html @@ -139,8 +139,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL")}}

    See also

    diff --git a/files/en-us/web/api/url/origin/index.html b/files/en-us/web/api/url/origin/index.html index 389d8a6dd5a9893..2e4f812c455f8ec 100644 --- a/files/en-us/web/api/url/origin/index.html +++ b/files/en-us/web/api/url/origin/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.origin")}}

    See also

    diff --git a/files/en-us/web/api/url/password/index.html b/files/en-us/web/api/url/password/index.html index 2daba69714edcda..3031651421c0194 100644 --- a/files/en-us/web/api/url/password/index.html +++ b/files/en-us/web/api/url/password/index.html @@ -52,8 +52,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.password")}}

    See also

    diff --git a/files/en-us/web/api/url/pathname/index.html b/files/en-us/web/api/url/pathname/index.html index f7ea9535eb6a866..8bd8050f5d444a9 100644 --- a/files/en-us/web/api/url/pathname/index.html +++ b/files/en-us/web/api/url/pathname/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.pathname")}}

    See also

    diff --git a/files/en-us/web/api/url/port/index.html b/files/en-us/web/api/url/port/index.html index 790bd884b268f98..511a7195eda2036 100644 --- a/files/en-us/web/api/url/port/index.html +++ b/files/en-us/web/api/url/port/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.port")}}

    See also

    diff --git a/files/en-us/web/api/url/protocol/index.html b/files/en-us/web/api/url/protocol/index.html index 6b0e210e49ad2b8..c50b3a4bea70383 100644 --- a/files/en-us/web/api/url/protocol/index.html +++ b/files/en-us/web/api/url/protocol/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.protocol")}}

    See also

    diff --git a/files/en-us/web/api/url/revokeobjecturl/index.html b/files/en-us/web/api/url/revokeobjecturl/index.html index 96a914c66f3b417..01525a60237a87a 100644 --- a/files/en-us/web/api/url/revokeobjecturl/index.html +++ b/files/en-us/web/api/url/revokeobjecturl/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.revokeObjectURL")}}

    See also

    diff --git a/files/en-us/web/api/url/search/index.html b/files/en-us/web/api/url/search/index.html index 34c0799b920959a..b8532c378a00eca 100644 --- a/files/en-us/web/api/url/search/index.html +++ b/files/en-us/web/api/url/search/index.html @@ -51,8 +51,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.search")}}

    See also

    diff --git a/files/en-us/web/api/url/searchparams/index.html b/files/en-us/web/api/url/searchparams/index.html index ee39522b94d8e83..675732468a66c4a 100644 --- a/files/en-us/web/api/url/searchparams/index.html +++ b/files/en-us/web/api/url/searchparams/index.html @@ -50,6 +50,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.searchParams")}}

    diff --git a/files/en-us/web/api/url/tojson/index.html b/files/en-us/web/api/url/tojson/index.html index 2d1bf26246834f2..2cae023dd1803f6 100644 --- a/files/en-us/web/api/url/tojson/index.html +++ b/files/en-us/web/api/url/tojson/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.toJSON")}}

    diff --git a/files/en-us/web/api/url/tostring/index.html b/files/en-us/web/api/url/tostring/index.html index d0392070586bbe2..27b5028709ba78e 100644 --- a/files/en-us/web/api/url/tostring/index.html +++ b/files/en-us/web/api/url/tostring/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.toString")}}

    See also

    diff --git a/files/en-us/web/api/url/url/index.html b/files/en-us/web/api/url/url/index.html index 2698e77177e0810..b3a73e70e2b14b8 100644 --- a/files/en-us/web/api/url/url/index.html +++ b/files/en-us/web/api/url/url/index.html @@ -95,8 +95,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.URL")}}

    See also

    diff --git a/files/en-us/web/api/url/username/index.html b/files/en-us/web/api/url/username/index.html index b1f9339c4bbaf28..cea89e31f526641 100644 --- a/files/en-us/web/api/url/username/index.html +++ b/files/en-us/web/api/url/username/index.html @@ -50,8 +50,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URL.username")}}

    See also

    diff --git a/files/en-us/web/api/url_api/index.html b/files/en-us/web/api/url_api/index.html index 2e4412e666a21be..30f2e6a74764a40 100644 --- a/files/en-us/web/api/url_api/index.html +++ b/files/en-us/web/api/url_api/index.html @@ -123,7 +123,6 @@

    Browser compatibility

    -

    {{Compat("api.URL")}}

    diff --git a/files/en-us/web/api/urlsearchparams/append/index.html b/files/en-us/web/api/urlsearchparams/append/index.html index 7bfcea8b760aad1..3d0659aa5699311 100644 --- a/files/en-us/web/api/urlsearchparams/append/index.html +++ b/files/en-us/web/api/urlsearchparams/append/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.append")}}

    diff --git a/files/en-us/web/api/urlsearchparams/delete/index.html b/files/en-us/web/api/urlsearchparams/delete/index.html index 4144e0b20d4d8c9..26b0216a3280dc1 100644 --- a/files/en-us/web/api/urlsearchparams/delete/index.html +++ b/files/en-us/web/api/urlsearchparams/delete/index.html @@ -60,6 +60,5 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.delete")}}

    diff --git a/files/en-us/web/api/urlsearchparams/entries/index.html b/files/en-us/web/api/urlsearchparams/entries/index.html index faa8cc1299ea1f3..0cfcfe9e1f018a6 100644 --- a/files/en-us/web/api/urlsearchparams/entries/index.html +++ b/files/en-us/web/api/urlsearchparams/entries/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.entries")}}

    diff --git a/files/en-us/web/api/urlsearchparams/foreach/index.html b/files/en-us/web/api/urlsearchparams/foreach/index.html index 3f17a70225da44d..d76ea54a59e946f 100644 --- a/files/en-us/web/api/urlsearchparams/foreach/index.html +++ b/files/en-us/web/api/urlsearchparams/foreach/index.html @@ -67,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.forEach")}}

    diff --git a/files/en-us/web/api/urlsearchparams/get/index.html b/files/en-us/web/api/urlsearchparams/get/index.html index a79184293614471..7a0ae1b5893d8ed 100644 --- a/files/en-us/web/api/urlsearchparams/get/index.html +++ b/files/en-us/web/api/urlsearchparams/get/index.html @@ -65,6 +65,5 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.get")}}

    diff --git a/files/en-us/web/api/urlsearchparams/getall/index.html b/files/en-us/web/api/urlsearchparams/getall/index.html index 74c73b6ac1cc00b..182110836ac7537 100644 --- a/files/en-us/web/api/urlsearchparams/getall/index.html +++ b/files/en-us/web/api/urlsearchparams/getall/index.html @@ -63,6 +63,5 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.getAll")}}

    diff --git a/files/en-us/web/api/urlsearchparams/has/index.html b/files/en-us/web/api/urlsearchparams/has/index.html index d47a424fe64b644..43d32696b2d9ec8 100644 --- a/files/en-us/web/api/urlsearchparams/has/index.html +++ b/files/en-us/web/api/urlsearchparams/has/index.html @@ -60,6 +60,5 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.has")}}

    diff --git a/files/en-us/web/api/urlsearchparams/index.html b/files/en-us/web/api/urlsearchparams/index.html index 7d698731aa261b5..e3e3f136f810e9b 100644 --- a/files/en-us/web/api/urlsearchparams/index.html +++ b/files/en-us/web/api/urlsearchparams/index.html @@ -121,8 +121,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URLSearchParams")}}

    See also

    diff --git a/files/en-us/web/api/urlsearchparams/keys/index.html b/files/en-us/web/api/urlsearchparams/keys/index.html index c439ddcd3a1f1ac..8abb4406dc764ee 100644 --- a/files/en-us/web/api/urlsearchparams/keys/index.html +++ b/files/en-us/web/api/urlsearchparams/keys/index.html @@ -67,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.keys")}}

    diff --git a/files/en-us/web/api/urlsearchparams/set/index.html b/files/en-us/web/api/urlsearchparams/set/index.html index 4a39fc17a825ba5..fae64b812865f37 100644 --- a/files/en-us/web/api/urlsearchparams/set/index.html +++ b/files/en-us/web/api/urlsearchparams/set/index.html @@ -123,6 +123,5 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.set")}}

    diff --git a/files/en-us/web/api/urlsearchparams/sort/index.html b/files/en-us/web/api/urlsearchparams/sort/index.html index c0e313fd311fc58..3a72359044db0e1 100644 --- a/files/en-us/web/api/urlsearchparams/sort/index.html +++ b/files/en-us/web/api/urlsearchparams/sort/index.html @@ -63,6 +63,5 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.sort")}}

    diff --git a/files/en-us/web/api/urlsearchparams/tostring/index.html b/files/en-us/web/api/urlsearchparams/tostring/index.html index c4c2fbc50ee7794..4fa8c492ddd730b 100644 --- a/files/en-us/web/api/urlsearchparams/tostring/index.html +++ b/files/en-us/web/api/urlsearchparams/tostring/index.html @@ -71,7 +71,6 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.toString")}}

    diff --git a/files/en-us/web/api/urlsearchparams/urlsearchparams/index.html b/files/en-us/web/api/urlsearchparams/urlsearchparams/index.html index 732313cbcdef159..e4aceeb82496f4d 100644 --- a/files/en-us/web/api/urlsearchparams/urlsearchparams/index.html +++ b/files/en-us/web/api/urlsearchparams/urlsearchparams/index.html @@ -76,6 +76,5 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.URLSearchParams")}}

    diff --git a/files/en-us/web/api/urlsearchparams/values/index.html b/files/en-us/web/api/urlsearchparams/values/index.html index ac5e748dea006fa..f72effc7d40495a 100644 --- a/files/en-us/web/api/urlsearchparams/values/index.html +++ b/files/en-us/web/api/urlsearchparams/values/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.URLSearchParams.values")}}

    diff --git a/files/en-us/web/api/urlutilsreadonly/hash/index.html b/files/en-us/web/api/urlutilsreadonly/hash/index.html index 366e365beeae049..aab2f34beca387f 100644 --- a/files/en-us/web/api/urlutilsreadonly/hash/index.html +++ b/files/en-us/web/api/urlutilsreadonly/hash/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URLUtilsReadOnly.hash")}}

    See also

    diff --git a/files/en-us/web/api/urlutilsreadonly/host/index.html b/files/en-us/web/api/urlutilsreadonly/host/index.html index 7b2b38af6604ccd..3d471b7e34517e5 100644 --- a/files/en-us/web/api/urlutilsreadonly/host/index.html +++ b/files/en-us/web/api/urlutilsreadonly/host/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URLUtilsReadOnly.host")}}

    See also

    diff --git a/files/en-us/web/api/urlutilsreadonly/hostname/index.html b/files/en-us/web/api/urlutilsreadonly/hostname/index.html index e2b798710e42ca0..55692befbb437ad 100644 --- a/files/en-us/web/api/urlutilsreadonly/hostname/index.html +++ b/files/en-us/web/api/urlutilsreadonly/hostname/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URLUtilsReadOnly.hostname")}}

    See also

    diff --git a/files/en-us/web/api/urlutilsreadonly/href/index.html b/files/en-us/web/api/urlutilsreadonly/href/index.html index 03781f8fb03faae..477cf187dc1e5cc 100644 --- a/files/en-us/web/api/urlutilsreadonly/href/index.html +++ b/files/en-us/web/api/urlutilsreadonly/href/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URLUtilsReadOnly.href")}}

    See also

    diff --git a/files/en-us/web/api/urlutilsreadonly/index.html b/files/en-us/web/api/urlutilsreadonly/index.html index cf4ca2010d62312..aa1306d88bc6280 100644 --- a/files/en-us/web/api/urlutilsreadonly/index.html +++ b/files/en-us/web/api/urlutilsreadonly/index.html @@ -48,8 +48,6 @@

    Methods

    Browser compatibility

    - -

    {{Compat("api.URLUtilsReadOnly")}}

    See also

    diff --git a/files/en-us/web/api/urlutilsreadonly/origin/index.html b/files/en-us/web/api/urlutilsreadonly/origin/index.html index 470e9c670884ba5..7bb1acadd1b4197 100644 --- a/files/en-us/web/api/urlutilsreadonly/origin/index.html +++ b/files/en-us/web/api/urlutilsreadonly/origin/index.html @@ -46,8 +46,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URLUtilsReadOnly.origin")}}

    See also

    diff --git a/files/en-us/web/api/urlutilsreadonly/pathname/index.html b/files/en-us/web/api/urlutilsreadonly/pathname/index.html index d977f0f4e058469..49da56bd6d8684b 100644 --- a/files/en-us/web/api/urlutilsreadonly/pathname/index.html +++ b/files/en-us/web/api/urlutilsreadonly/pathname/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URLUtilsReadOnly.pathname")}}

    See also

    diff --git a/files/en-us/web/api/urlutilsreadonly/port/index.html b/files/en-us/web/api/urlutilsreadonly/port/index.html index ab6569d9a056906..25b576a6389ff5f 100644 --- a/files/en-us/web/api/urlutilsreadonly/port/index.html +++ b/files/en-us/web/api/urlutilsreadonly/port/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URLUtilsReadOnly.port")}}

    See also

    diff --git a/files/en-us/web/api/urlutilsreadonly/protocol/index.html b/files/en-us/web/api/urlutilsreadonly/protocol/index.html index 8a29ed612ab66d8..1536b1117bf0c23 100644 --- a/files/en-us/web/api/urlutilsreadonly/protocol/index.html +++ b/files/en-us/web/api/urlutilsreadonly/protocol/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URLUtilsReadOnly.protocol")}}

    See also

    diff --git a/files/en-us/web/api/urlutilsreadonly/search/index.html b/files/en-us/web/api/urlutilsreadonly/search/index.html index 9dd84db497267fb..400d794dcab449c 100644 --- a/files/en-us/web/api/urlutilsreadonly/search/index.html +++ b/files/en-us/web/api/urlutilsreadonly/search/index.html @@ -43,8 +43,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.URLUtilsReadOnly.search")}}

    See also

    diff --git a/files/en-us/web/api/urlutilsreadonly/tostring/index.html b/files/en-us/web/api/urlutilsreadonly/tostring/index.html index 47a24bd1b86c5c2..454dc55bc6aeabf 100644 --- a/files/en-us/web/api/urlutilsreadonly/tostring/index.html +++ b/files/en-us/web/api/urlutilsreadonly/tostring/index.html @@ -26,8 +26,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.URLUtilsReadOnly.toString")}}

    See also

    diff --git a/files/en-us/web/api/usb/getdevices/index.html b/files/en-us/web/api/usb/getdevices/index.html index 1f47e44b6c0aae7..963873b248976bf 100644 --- a/files/en-us/web/api/usb/getdevices/index.html +++ b/files/en-us/web/api/usb/getdevices/index.html @@ -57,6 +57,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USB.getDevices")}}

    diff --git a/files/en-us/web/api/usb/index.html b/files/en-us/web/api/usb/index.html index 9cadd07aedc64b1..bc401d6069605a1 100644 --- a/files/en-us/web/api/usb/index.html +++ b/files/en-us/web/api/usb/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USB")}}

    diff --git a/files/en-us/web/api/usb/onconnect/index.html b/files/en-us/web/api/usb/onconnect/index.html index 5afdebf5f697bce..8c8591784077c95 100644 --- a/files/en-us/web/api/usb/onconnect/index.html +++ b/files/en-us/web/api/usb/onconnect/index.html @@ -37,6 +37,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USB.onconnect")}}

    diff --git a/files/en-us/web/api/usb/ondisconnect/index.html b/files/en-us/web/api/usb/ondisconnect/index.html index a3e3676bf89510c..c64b2a1a672d3cb 100644 --- a/files/en-us/web/api/usb/ondisconnect/index.html +++ b/files/en-us/web/api/usb/ondisconnect/index.html @@ -37,6 +37,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USB.ondisconnect")}}

    diff --git a/files/en-us/web/api/usb/requestdevice/index.html b/files/en-us/web/api/usb/requestdevice/index.html index 2fadee3e493cda7..899d9b9939689aa 100644 --- a/files/en-us/web/api/usb/requestdevice/index.html +++ b/files/en-us/web/api/usb/requestdevice/index.html @@ -76,6 +76,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USB.requestDevice")}}

    diff --git a/files/en-us/web/api/usbalternateinterface/index.html b/files/en-us/web/api/usbalternateinterface/index.html index d39faa0f77bffb6..6e7653657660f7b 100644 --- a/files/en-us/web/api/usbalternateinterface/index.html +++ b/files/en-us/web/api/usbalternateinterface/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBAlternateInterface")}}

    diff --git a/files/en-us/web/api/usbconfiguration/configurationname/index.html b/files/en-us/web/api/usbconfiguration/configurationname/index.html index 06b497c67f5c5f1..7d902bf86e53b1c 100644 --- a/files/en-us/web/api/usbconfiguration/configurationname/index.html +++ b/files/en-us/web/api/usbconfiguration/configurationname/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBConfiguration.configurationName")}}

    diff --git a/files/en-us/web/api/usbconfiguration/configurationvalue/index.html b/files/en-us/web/api/usbconfiguration/configurationvalue/index.html index 4f49535b969f4f5..5870fea24b8233e 100644 --- a/files/en-us/web/api/usbconfiguration/configurationvalue/index.html +++ b/files/en-us/web/api/usbconfiguration/configurationvalue/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBConfiguration.configurationValue")}}

    diff --git a/files/en-us/web/api/usbconfiguration/index.html b/files/en-us/web/api/usbconfiguration/index.html index bab7346827e6778..94f77ba6e9bff2f 100644 --- a/files/en-us/web/api/usbconfiguration/index.html +++ b/files/en-us/web/api/usbconfiguration/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBConfiguration")}}

    diff --git a/files/en-us/web/api/usbconfiguration/interfaces/index.html b/files/en-us/web/api/usbconfiguration/interfaces/index.html index 3384988158effc9..7207533874e3ff5 100644 --- a/files/en-us/web/api/usbconfiguration/interfaces/index.html +++ b/files/en-us/web/api/usbconfiguration/interfaces/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBConfiguration.interfaces")}}

    diff --git a/files/en-us/web/api/usbconfiguration/usbconfiguration/index.html b/files/en-us/web/api/usbconfiguration/usbconfiguration/index.html index c3274ca0482ce09..809fd539fcd8c51 100644 --- a/files/en-us/web/api/usbconfiguration/usbconfiguration/index.html +++ b/files/en-us/web/api/usbconfiguration/usbconfiguration/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBConfiguration.USBConfiguration")}}

    diff --git a/files/en-us/web/api/usbdevice/claiminterface/index.html b/files/en-us/web/api/usbdevice/claiminterface/index.html index 03a6e5963af94e4..db949e5b4b4cf6b 100644 --- a/files/en-us/web/api/usbdevice/claiminterface/index.html +++ b/files/en-us/web/api/usbdevice/claiminterface/index.html @@ -60,6 +60,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.claimInterface")}}

    diff --git a/files/en-us/web/api/usbdevice/clearhalt/index.html b/files/en-us/web/api/usbdevice/clearhalt/index.html index 528b57c2f5183c2..cb17a09df3a725d 100644 --- a/files/en-us/web/api/usbdevice/clearhalt/index.html +++ b/files/en-us/web/api/usbdevice/clearhalt/index.html @@ -75,6 +75,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.clearHalt")}}

    diff --git a/files/en-us/web/api/usbdevice/close/index.html b/files/en-us/web/api/usbdevice/close/index.html index 55966d2f8d7d28f..c64d5fe474dde5d 100644 --- a/files/en-us/web/api/usbdevice/close/index.html +++ b/files/en-us/web/api/usbdevice/close/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.close")}}

    diff --git a/files/en-us/web/api/usbdevice/configuration/index.html b/files/en-us/web/api/usbdevice/configuration/index.html index 8a08b3b8b59b8f8..192f513ecbe451b 100644 --- a/files/en-us/web/api/usbdevice/configuration/index.html +++ b/files/en-us/web/api/usbdevice/configuration/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.configuration")}}

    diff --git a/files/en-us/web/api/usbdevice/configurations/index.html b/files/en-us/web/api/usbdevice/configurations/index.html index eddfe42286c7a22..86dac36497651d5 100644 --- a/files/en-us/web/api/usbdevice/configurations/index.html +++ b/files/en-us/web/api/usbdevice/configurations/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.configurations")}}

    diff --git a/files/en-us/web/api/usbdevice/controltransferin/index.html b/files/en-us/web/api/usbdevice/controltransferin/index.html index 96ae134a17bd278..db72ca5ca322dcb 100644 --- a/files/en-us/web/api/usbdevice/controltransferin/index.html +++ b/files/en-us/web/api/usbdevice/controltransferin/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.controlTransferIn")}}

    diff --git a/files/en-us/web/api/usbdevice/controltransferout/index.html b/files/en-us/web/api/usbdevice/controltransferout/index.html index 81208ecb6aee780..63affbd38c66119 100644 --- a/files/en-us/web/api/usbdevice/controltransferout/index.html +++ b/files/en-us/web/api/usbdevice/controltransferout/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.controlTransferOut")}}

    diff --git a/files/en-us/web/api/usbdevice/deviceclass/index.html b/files/en-us/web/api/usbdevice/deviceclass/index.html index 76783da0a7da9c5..632712f72c1da9e 100644 --- a/files/en-us/web/api/usbdevice/deviceclass/index.html +++ b/files/en-us/web/api/usbdevice/deviceclass/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.deviceClass")}}

    diff --git a/files/en-us/web/api/usbdevice/deviceprotocol/index.html b/files/en-us/web/api/usbdevice/deviceprotocol/index.html index c33d9472f41908d..0e5ea75eb5b695c 100644 --- a/files/en-us/web/api/usbdevice/deviceprotocol/index.html +++ b/files/en-us/web/api/usbdevice/deviceprotocol/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.deviceProtocol")}}

    diff --git a/files/en-us/web/api/usbdevice/devicesubclass/index.html b/files/en-us/web/api/usbdevice/devicesubclass/index.html index ee333148ac7e3ca..7d87bb6c3634487 100644 --- a/files/en-us/web/api/usbdevice/devicesubclass/index.html +++ b/files/en-us/web/api/usbdevice/devicesubclass/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.deviceSubclass")}}

    diff --git a/files/en-us/web/api/usbdevice/deviceversionmajor/index.html b/files/en-us/web/api/usbdevice/deviceversionmajor/index.html index 1390cb8cadec0dc..3642cf0b428e553 100644 --- a/files/en-us/web/api/usbdevice/deviceversionmajor/index.html +++ b/files/en-us/web/api/usbdevice/deviceversionmajor/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.deviceVersionMajor")}}

    diff --git a/files/en-us/web/api/usbdevice/deviceversionminor/index.html b/files/en-us/web/api/usbdevice/deviceversionminor/index.html index 29018bcabbe448a..d3ede743c8b9761 100644 --- a/files/en-us/web/api/usbdevice/deviceversionminor/index.html +++ b/files/en-us/web/api/usbdevice/deviceversionminor/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.deviceVersionMinor")}}

    diff --git a/files/en-us/web/api/usbdevice/deviceversionsubminor/index.html b/files/en-us/web/api/usbdevice/deviceversionsubminor/index.html index d1e0b49e3e7e7c2..1807ec3e1665d17 100644 --- a/files/en-us/web/api/usbdevice/deviceversionsubminor/index.html +++ b/files/en-us/web/api/usbdevice/deviceversionsubminor/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.deviceVersionSubminor")}}

    diff --git a/files/en-us/web/api/usbdevice/index.html b/files/en-us/web/api/usbdevice/index.html index 5033aeb6acaf4f6..07cb702d5562631 100644 --- a/files/en-us/web/api/usbdevice/index.html +++ b/files/en-us/web/api/usbdevice/index.html @@ -104,6 +104,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice")}}

    diff --git a/files/en-us/web/api/usbdevice/isochronoustransferin/index.html b/files/en-us/web/api/usbdevice/isochronoustransferin/index.html index 4dcacebf85ecaaa..bc6b02ef5a5cfcf 100644 --- a/files/en-us/web/api/usbdevice/isochronoustransferin/index.html +++ b/files/en-us/web/api/usbdevice/isochronoustransferin/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.isochronousTransferIn")}}

    diff --git a/files/en-us/web/api/usbdevice/isochronoustransferout/index.html b/files/en-us/web/api/usbdevice/isochronoustransferout/index.html index 1604ab569a4c54a..454c2905abfd42f 100644 --- a/files/en-us/web/api/usbdevice/isochronoustransferout/index.html +++ b/files/en-us/web/api/usbdevice/isochronoustransferout/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.isochronousTransferOut")}}

    diff --git a/files/en-us/web/api/usbdevice/manufacturername/index.html b/files/en-us/web/api/usbdevice/manufacturername/index.html index 00977cc7d3eb740..deb3309c8a4eda5 100644 --- a/files/en-us/web/api/usbdevice/manufacturername/index.html +++ b/files/en-us/web/api/usbdevice/manufacturername/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.manufacturerName")}}

    diff --git a/files/en-us/web/api/usbdevice/open/index.html b/files/en-us/web/api/usbdevice/open/index.html index 9e5cdfa55dee5a5..f3a7451a1875ec9 100644 --- a/files/en-us/web/api/usbdevice/open/index.html +++ b/files/en-us/web/api/usbdevice/open/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.open")}}

    diff --git a/files/en-us/web/api/usbdevice/opened/index.html b/files/en-us/web/api/usbdevice/opened/index.html index e99e9879798ef03..eaa7bafe409f1d2 100644 --- a/files/en-us/web/api/usbdevice/opened/index.html +++ b/files/en-us/web/api/usbdevice/opened/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.opened")}}

    diff --git a/files/en-us/web/api/usbdevice/productid/index.html b/files/en-us/web/api/usbdevice/productid/index.html index c32d7b83b2777c8..98a87e325f19ff8 100644 --- a/files/en-us/web/api/usbdevice/productid/index.html +++ b/files/en-us/web/api/usbdevice/productid/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.productId")}}

    diff --git a/files/en-us/web/api/usbdevice/productname/index.html b/files/en-us/web/api/usbdevice/productname/index.html index cf8998352a145ee..cb0dd5c8cc4484b 100644 --- a/files/en-us/web/api/usbdevice/productname/index.html +++ b/files/en-us/web/api/usbdevice/productname/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.productName")}}

    diff --git a/files/en-us/web/api/usbdevice/releaseinterface/index.html b/files/en-us/web/api/usbdevice/releaseinterface/index.html index 46c91187088aa1c..8645e3ad9ec0286 100644 --- a/files/en-us/web/api/usbdevice/releaseinterface/index.html +++ b/files/en-us/web/api/usbdevice/releaseinterface/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.releaseInterface")}}

    diff --git a/files/en-us/web/api/usbdevice/reset/index.html b/files/en-us/web/api/usbdevice/reset/index.html index 15c3cbb6afe8094..b0937131b945fbf 100644 --- a/files/en-us/web/api/usbdevice/reset/index.html +++ b/files/en-us/web/api/usbdevice/reset/index.html @@ -46,6 +46,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.reset")}}

    diff --git a/files/en-us/web/api/usbdevice/selectalternateinterface/index.html b/files/en-us/web/api/usbdevice/selectalternateinterface/index.html index 3832afa4bf6f53c..56fc8bc75fe95dc 100644 --- a/files/en-us/web/api/usbdevice/selectalternateinterface/index.html +++ b/files/en-us/web/api/usbdevice/selectalternateinterface/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.selectAlternateInterface")}}

    diff --git a/files/en-us/web/api/usbdevice/selectconfiguration/index.html b/files/en-us/web/api/usbdevice/selectconfiguration/index.html index 1427d6016df6273..e11a6d83eb8bd88 100644 --- a/files/en-us/web/api/usbdevice/selectconfiguration/index.html +++ b/files/en-us/web/api/usbdevice/selectconfiguration/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.selectConfiguration")}}

    diff --git a/files/en-us/web/api/usbdevice/serialnumber/index.html b/files/en-us/web/api/usbdevice/serialnumber/index.html index 4dcd53e9fd24475..31c7c4dac8fdbfa 100644 --- a/files/en-us/web/api/usbdevice/serialnumber/index.html +++ b/files/en-us/web/api/usbdevice/serialnumber/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.serialNumber")}}

    diff --git a/files/en-us/web/api/usbdevice/transferin/index.html b/files/en-us/web/api/usbdevice/transferin/index.html index 3120860a89819f6..df84f724d0d1df1 100644 --- a/files/en-us/web/api/usbdevice/transferin/index.html +++ b/files/en-us/web/api/usbdevice/transferin/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.transferIn")}}

    diff --git a/files/en-us/web/api/usbdevice/transferout/index.html b/files/en-us/web/api/usbdevice/transferout/index.html index 72921353215c12e..ca99cbcb07c9755 100644 --- a/files/en-us/web/api/usbdevice/transferout/index.html +++ b/files/en-us/web/api/usbdevice/transferout/index.html @@ -51,6 +51,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.transferOut")}}

    diff --git a/files/en-us/web/api/usbdevice/usbdevice.deviceclass/index.html b/files/en-us/web/api/usbdevice/usbdevice.deviceclass/index.html index 1a89325d2045f0e..bad8a7d8af8f263 100644 --- a/files/en-us/web/api/usbdevice/usbdevice.deviceclass/index.html +++ b/files/en-us/web/api/usbdevice/usbdevice.deviceclass/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.deviceClass")}}

    diff --git a/files/en-us/web/api/usbdevice/usbversionmajor/index.html b/files/en-us/web/api/usbdevice/usbversionmajor/index.html index 5623d8fde9c40e5..c5820a22b185d54 100644 --- a/files/en-us/web/api/usbdevice/usbversionmajor/index.html +++ b/files/en-us/web/api/usbdevice/usbversionmajor/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.usbVersionMajor")}}

    diff --git a/files/en-us/web/api/usbdevice/usbversionminor/index.html b/files/en-us/web/api/usbdevice/usbversionminor/index.html index efcf4cc12970b92..c0effa080104e44 100644 --- a/files/en-us/web/api/usbdevice/usbversionminor/index.html +++ b/files/en-us/web/api/usbdevice/usbversionminor/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.usbVersionMinor")}}

    diff --git a/files/en-us/web/api/usbdevice/usbversionsubminor/index.html b/files/en-us/web/api/usbdevice/usbversionsubminor/index.html index f8dbc095ecd7a41..9ba6fdc2c0d1696 100644 --- a/files/en-us/web/api/usbdevice/usbversionsubminor/index.html +++ b/files/en-us/web/api/usbdevice/usbversionsubminor/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.usbVersionSubminor")}}

    diff --git a/files/en-us/web/api/usbdevice/vendorid/index.html b/files/en-us/web/api/usbdevice/vendorid/index.html index da4da9e5ba36a8e..348c379c14f5bf4 100644 --- a/files/en-us/web/api/usbdevice/vendorid/index.html +++ b/files/en-us/web/api/usbdevice/vendorid/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBDevice.vendorId")}}

    diff --git a/files/en-us/web/api/usbendpoint/index.html b/files/en-us/web/api/usbendpoint/index.html index 39ec5066ce70bb2..bba5fccb1f7e19c 100644 --- a/files/en-us/web/api/usbendpoint/index.html +++ b/files/en-us/web/api/usbendpoint/index.html @@ -111,6 +111,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBEndpoint")}}

    diff --git a/files/en-us/web/api/usbinterface/index.html b/files/en-us/web/api/usbinterface/index.html index 90ea2b6343b08cc..ab7208a91cbf4f0 100644 --- a/files/en-us/web/api/usbinterface/index.html +++ b/files/en-us/web/api/usbinterface/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBInterface")}}

    diff --git a/files/en-us/web/api/usbintransferresult/index.html b/files/en-us/web/api/usbintransferresult/index.html index 665aabb080fb2e8..1343d681ab134f1 100644 --- a/files/en-us/web/api/usbintransferresult/index.html +++ b/files/en-us/web/api/usbintransferresult/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBInTransferResult")}}

    diff --git a/files/en-us/web/api/usbisochronousintransferpacket/index.html b/files/en-us/web/api/usbisochronousintransferpacket/index.html index 6766b81acffec34..96e91454fc57b31 100644 --- a/files/en-us/web/api/usbisochronousintransferpacket/index.html +++ b/files/en-us/web/api/usbisochronousintransferpacket/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBIsochronousInTransferPacket")}}

    diff --git a/files/en-us/web/api/usbisochronousintransferresult/index.html b/files/en-us/web/api/usbisochronousintransferresult/index.html index 300231012bb1211..39f4f77c687bf34 100644 --- a/files/en-us/web/api/usbisochronousintransferresult/index.html +++ b/files/en-us/web/api/usbisochronousintransferresult/index.html @@ -50,6 +50,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBIsochronousInTransferResult")}}

    diff --git a/files/en-us/web/api/usbisochronousouttransferpacket/index.html b/files/en-us/web/api/usbisochronousouttransferpacket/index.html index 312910b2a46e758..f0f698d9062b879 100644 --- a/files/en-us/web/api/usbisochronousouttransferpacket/index.html +++ b/files/en-us/web/api/usbisochronousouttransferpacket/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBIsochronousOutTransferPacket")}}

    diff --git a/files/en-us/web/api/usbisochronousouttransferresult/index.html b/files/en-us/web/api/usbisochronousouttransferresult/index.html index ac2ce740e82e623..55df83e85399d99 100644 --- a/files/en-us/web/api/usbisochronousouttransferresult/index.html +++ b/files/en-us/web/api/usbisochronousouttransferresult/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBIsochronousOutTransferResult")}}

    diff --git a/files/en-us/web/api/usbouttransferresult/index.html b/files/en-us/web/api/usbouttransferresult/index.html index fb149e9541bfee2..8cda78d1dbea9f5 100644 --- a/files/en-us/web/api/usbouttransferresult/index.html +++ b/files/en-us/web/api/usbouttransferresult/index.html @@ -56,6 +56,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.USBOutTransferResult")}}

    diff --git a/files/en-us/web/api/userdatahandler/index.html b/files/en-us/web/api/userdatahandler/index.html index e46d5d1474a2970..7fdeba8de4796fe 100644 --- a/files/en-us/web/api/userdatahandler/index.html +++ b/files/en-us/web/api/userdatahandler/index.html @@ -78,8 +78,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.UserDataHandler")}}

    See also

    diff --git a/files/en-us/web/api/userproximityevent/index.html b/files/en-us/web/api/userproximityevent/index.html index a4b17a1155e5204..fda1044c7659c94 100644 --- a/files/en-us/web/api/userproximityevent/index.html +++ b/files/en-us/web/api/userproximityevent/index.html @@ -21,8 +21,6 @@

    Properties

    Browser compatibility

    - -

    {{Compat("api.UserProximityEvent")}}

    See also

    diff --git a/files/en-us/web/api/userproximityevent/near/index.html b/files/en-us/web/api/userproximityevent/near/index.html index d63e986822940da..e85020ae47c534f 100644 --- a/files/en-us/web/api/userproximityevent/near/index.html +++ b/files/en-us/web/api/userproximityevent/near/index.html @@ -24,8 +24,6 @@

    Value

    Browser compatibility

    - -

    {{Compat("api.UserProximityEvent.near")}}

    See also

    diff --git a/files/en-us/web/api/validitystate/badinput/index.html b/files/en-us/web/api/validitystate/badinput/index.html index 9a6d776f28c9847..6767b66b7b29d3c 100644 --- a/files/en-us/web/api/validitystate/badinput/index.html +++ b/files/en-us/web/api/validitystate/badinput/index.html @@ -54,8 +54,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ValidityState.badInput")}}

    See also

    diff --git a/files/en-us/web/api/validitystate/index.html b/files/en-us/web/api/validitystate/index.html index 7df58f61027b9c8..9302b78ca59279c 100644 --- a/files/en-us/web/api/validitystate/index.html +++ b/files/en-us/web/api/validitystate/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ValidityState")}}

    See also

    diff --git a/files/en-us/web/api/validitystate/patternmismatch/index.html b/files/en-us/web/api/validitystate/patternmismatch/index.html index 9658a479438be3f..9b91b3f482507cc 100644 --- a/files/en-us/web/api/validitystate/patternmismatch/index.html +++ b/files/en-us/web/api/validitystate/patternmismatch/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ValidityState.patternMismatch")}}

    See also

    diff --git a/files/en-us/web/api/validitystate/rangeoverflow/index.html b/files/en-us/web/api/validitystate/rangeoverflow/index.html index c88d17092e09c53..8d8e46fdd4339e0 100644 --- a/files/en-us/web/api/validitystate/rangeoverflow/index.html +++ b/files/en-us/web/api/validitystate/rangeoverflow/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ValidityState.rangeOverflow")}}

    See also

    diff --git a/files/en-us/web/api/validitystate/rangeunderflow/index.html b/files/en-us/web/api/validitystate/rangeunderflow/index.html index 9c598fe374f1490..c38c8f1fd0b3ec0 100644 --- a/files/en-us/web/api/validitystate/rangeunderflow/index.html +++ b/files/en-us/web/api/validitystate/rangeunderflow/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ValidityState.rangeUnderflow")}}

    See also

    diff --git a/files/en-us/web/api/validitystate/stepmismatch/index.html b/files/en-us/web/api/validitystate/stepmismatch/index.html index ca3817c092a5f85..3369ac0d70fee68 100644 --- a/files/en-us/web/api/validitystate/stepmismatch/index.html +++ b/files/en-us/web/api/validitystate/stepmismatch/index.html @@ -49,8 +49,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ValidityState.stepMismatch")}}

    See also

    diff --git a/files/en-us/web/api/validitystate/toolong/index.html b/files/en-us/web/api/validitystate/toolong/index.html index 208d4a4cc609ccb..d87044f884a3a87 100644 --- a/files/en-us/web/api/validitystate/toolong/index.html +++ b/files/en-us/web/api/validitystate/toolong/index.html @@ -42,8 +42,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ValidityState.tooLong")}}

    See also

    diff --git a/files/en-us/web/api/validitystate/tooshort/index.html b/files/en-us/web/api/validitystate/tooshort/index.html index 287ad99570e4d23..eb251e2969dc799 100644 --- a/files/en-us/web/api/validitystate/tooshort/index.html +++ b/files/en-us/web/api/validitystate/tooshort/index.html @@ -33,8 +33,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ValidityState.tooShort")}}

    See also

    diff --git a/files/en-us/web/api/validitystate/typemismatch/index.html b/files/en-us/web/api/validitystate/typemismatch/index.html index 7b4e9b549b05265..a3aca83f4e4c11e 100644 --- a/files/en-us/web/api/validitystate/typemismatch/index.html +++ b/files/en-us/web/api/validitystate/typemismatch/index.html @@ -95,8 +95,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.ValidityState.typeMismatch")}}

    See also

    diff --git a/files/en-us/web/api/vibration_api/index.html b/files/en-us/web/api/vibration_api/index.html index d70ca51a469f670..dfdb0c6516dba64 100644 --- a/files/en-us/web/api/vibration_api/index.html +++ b/files/en-us/web/api/vibration_api/index.html @@ -89,8 +89,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Navigator.vibrate")}}

    See also

    diff --git a/files/en-us/web/api/videoconfiguration/index.html b/files/en-us/web/api/videoconfiguration/index.html index 5727882fb815cc6..1b7b8eb8b9dd56b 100644 --- a/files/en-us/web/api/videoconfiguration/index.html +++ b/files/en-us/web/api/videoconfiguration/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoConfiguration")}}

    See also

    diff --git a/files/en-us/web/api/videoplaybackquality/corruptedvideoframes/index.html b/files/en-us/web/api/videoplaybackquality/corruptedvideoframes/index.html index 171c929cfc54fd2..d940910ebbddf86 100644 --- a/files/en-us/web/api/videoplaybackquality/corruptedvideoframes/index.html +++ b/files/en-us/web/api/videoplaybackquality/corruptedvideoframes/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.VideoPlaybackQuality.corruptedVideoFrames")}}

    diff --git a/files/en-us/web/api/videoplaybackquality/creationtime/index.html b/files/en-us/web/api/videoplaybackquality/creationtime/index.html index 30a3df150e36fb1..c04b9aa074c0f55 100644 --- a/files/en-us/web/api/videoplaybackquality/creationtime/index.html +++ b/files/en-us/web/api/videoplaybackquality/creationtime/index.html @@ -61,7 +61,6 @@

    Browser compatibility

    -

    {{Compat("api.VideoPlaybackQuality.creationTime")}}

    diff --git a/files/en-us/web/api/videoplaybackquality/droppedvideoframes/index.html b/files/en-us/web/api/videoplaybackquality/droppedvideoframes/index.html index 404b0e2d42ad988..7a234b349456ad9 100644 --- a/files/en-us/web/api/videoplaybackquality/droppedvideoframes/index.html +++ b/files/en-us/web/api/videoplaybackquality/droppedvideoframes/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.VideoPlaybackQuality.droppedVideoFrames")}}

    diff --git a/files/en-us/web/api/videoplaybackquality/index.html b/files/en-us/web/api/videoplaybackquality/index.html index 5e3782c0d09a73b..fa23274ce87e71e 100644 --- a/files/en-us/web/api/videoplaybackquality/index.html +++ b/files/en-us/web/api/videoplaybackquality/index.html @@ -67,7 +67,6 @@

    Browser compatibility

    -

    {{Compat("api.VideoPlaybackQuality")}}

    diff --git a/files/en-us/web/api/videoplaybackquality/totalframedelay/index.html b/files/en-us/web/api/videoplaybackquality/totalframedelay/index.html index 57e54573e06217c..f0e9e915f96af38 100644 --- a/files/en-us/web/api/videoplaybackquality/totalframedelay/index.html +++ b/files/en-us/web/api/videoplaybackquality/totalframedelay/index.html @@ -32,7 +32,6 @@

    Browser compatibility

    -

    {{Compat("api.VideoPlaybackQuality.totalFrameDelay")}}

    diff --git a/files/en-us/web/api/videoplaybackquality/totalvideoframes/index.html b/files/en-us/web/api/videoplaybackquality/totalvideoframes/index.html index 543143c4c4146f4..3722bb4ef8ce838 100644 --- a/files/en-us/web/api/videoplaybackquality/totalvideoframes/index.html +++ b/files/en-us/web/api/videoplaybackquality/totalvideoframes/index.html @@ -65,7 +65,6 @@

    Browser compatibility

    -

    {{Compat("api.VideoPlaybackQuality.totalVideoFrames")}}

    diff --git a/files/en-us/web/api/videotrack/id/index.html b/files/en-us/web/api/videotrack/id/index.html index 238848d46cd0a8f..50cf10c75896252 100644 --- a/files/en-us/web/api/videotrack/id/index.html +++ b/files/en-us/web/api/videotrack/id/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrack.id")}}

    diff --git a/files/en-us/web/api/videotrack/index.html b/files/en-us/web/api/videotrack/index.html index 7f21043a766057e..3fa48ca0486812d 100644 --- a/files/en-us/web/api/videotrack/index.html +++ b/files/en-us/web/api/videotrack/index.html @@ -79,6 +79,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrack")}}

    diff --git a/files/en-us/web/api/videotrack/kind/index.html b/files/en-us/web/api/videotrack/kind/index.html index bf2305faaa85dc1..7109f1114e58e3a 100644 --- a/files/en-us/web/api/videotrack/kind/index.html +++ b/files/en-us/web/api/videotrack/kind/index.html @@ -68,6 +68,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrack.kind")}}

    diff --git a/files/en-us/web/api/videotrack/label/index.html b/files/en-us/web/api/videotrack/label/index.html index 6ae12331247004a..12b88198d076390 100644 --- a/files/en-us/web/api/videotrack/label/index.html +++ b/files/en-us/web/api/videotrack/label/index.html @@ -74,6 +74,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrack.label")}}

    diff --git a/files/en-us/web/api/videotrack/language/index.html b/files/en-us/web/api/videotrack/language/index.html index 585e3e38706bf7c..bca970c50f4222f 100644 --- a/files/en-us/web/api/videotrack/language/index.html +++ b/files/en-us/web/api/videotrack/language/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrack.language")}}

    diff --git a/files/en-us/web/api/videotrack/selected/index.html b/files/en-us/web/api/videotrack/selected/index.html index 613f7005fdd4551..62c9ada344f90ce 100644 --- a/files/en-us/web/api/videotrack/selected/index.html +++ b/files/en-us/web/api/videotrack/selected/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrack.selected")}}

    diff --git a/files/en-us/web/api/videotrack/sourcebuffer/index.html b/files/en-us/web/api/videotrack/sourcebuffer/index.html index 026e7dbbce49ec1..b0b4a65bc04e577 100644 --- a/files/en-us/web/api/videotrack/sourcebuffer/index.html +++ b/files/en-us/web/api/videotrack/sourcebuffer/index.html @@ -48,6 +48,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrack.sourceBuffer")}}

    diff --git a/files/en-us/web/api/videotracklist/addtrack_event/index.html b/files/en-us/web/api/videotracklist/addtrack_event/index.html index a6bb09dc5574df7..dc7c832a35948de 100644 --- a/files/en-us/web/api/videotracklist/addtrack_event/index.html +++ b/files/en-us/web/api/videotracklist/addtrack_event/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrackList.addtrack_event")}}

    See also

    diff --git a/files/en-us/web/api/videotracklist/change_event/index.html b/files/en-us/web/api/videotracklist/change_event/index.html index 6b108a136b078a6..52e1881759af22b 100644 --- a/files/en-us/web/api/videotracklist/change_event/index.html +++ b/files/en-us/web/api/videotracklist/change_event/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrackList.change_event")}}

    See also

    diff --git a/files/en-us/web/api/videotracklist/gettrackbyid/index.html b/files/en-us/web/api/videotracklist/gettrackbyid/index.html index b5b4c0a7e739a3c..aa98652c7718bd1 100644 --- a/files/en-us/web/api/videotracklist/gettrackbyid/index.html +++ b/files/en-us/web/api/videotracklist/gettrackbyid/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrackList.getTrackById")}}

    diff --git a/files/en-us/web/api/videotracklist/index.html b/files/en-us/web/api/videotracklist/index.html index 9e8fb21366131ce..761e2b2214bc12c 100644 --- a/files/en-us/web/api/videotracklist/index.html +++ b/files/en-us/web/api/videotracklist/index.html @@ -110,6 +110,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrackList")}}

    diff --git a/files/en-us/web/api/videotracklist/length/index.html b/files/en-us/web/api/videotracklist/length/index.html index 10d35b19bc35cef..7a5b7ee9b4a90ae 100644 --- a/files/en-us/web/api/videotracklist/length/index.html +++ b/files/en-us/web/api/videotracklist/length/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrackList.length")}}

    diff --git a/files/en-us/web/api/videotracklist/onaddtrack/index.html b/files/en-us/web/api/videotracklist/onaddtrack/index.html index 7280e1b7875ee88..bf44b5e4b56f995 100644 --- a/files/en-us/web/api/videotracklist/onaddtrack/index.html +++ b/files/en-us/web/api/videotracklist/onaddtrack/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrackList.onaddtrack")}}

     

    diff --git a/files/en-us/web/api/videotracklist/onchange/index.html b/files/en-us/web/api/videotracklist/onchange/index.html index c5deb3dc29c4e6a..4446b9df80bd1f9 100644 --- a/files/en-us/web/api/videotracklist/onchange/index.html +++ b/files/en-us/web/api/videotracklist/onchange/index.html @@ -70,6 +70,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrackList.onchange")}}

    diff --git a/files/en-us/web/api/videotracklist/onremovetrack/index.html b/files/en-us/web/api/videotracklist/onremovetrack/index.html index cb9930cacfa1495..9f7e22ac8654779 100644 --- a/files/en-us/web/api/videotracklist/onremovetrack/index.html +++ b/files/en-us/web/api/videotracklist/onremovetrack/index.html @@ -67,6 +67,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrackList.onremovetrack")}}

    diff --git a/files/en-us/web/api/videotracklist/removetrack_event/index.html b/files/en-us/web/api/videotracklist/removetrack_event/index.html index 2b2612f3f1f9b2e..63e593fadbcb9f8 100644 --- a/files/en-us/web/api/videotracklist/removetrack_event/index.html +++ b/files/en-us/web/api/videotracklist/removetrack_event/index.html @@ -71,8 +71,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrackList.removetrack_event")}}

    See also

    diff --git a/files/en-us/web/api/videotracklist/selectedindex/index.html b/files/en-us/web/api/videotracklist/selectedindex/index.html index d00b0a0d74cb27a..430391cb9668116 100644 --- a/files/en-us/web/api/videotracklist/selectedindex/index.html +++ b/files/en-us/web/api/videotracklist/selectedindex/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VideoTrackList.selectedIndex")}}

    diff --git a/files/en-us/web/api/visual_viewport_api/index.html b/files/en-us/web/api/visual_viewport_api/index.html index eb46843d6e9048c..053b11c644facba 100644 --- a/files/en-us/web/api/visual_viewport_api/index.html +++ b/files/en-us/web/api/visual_viewport_api/index.html @@ -96,7 +96,6 @@

    Browser compatibility

    -

    {{Compat("api.VisualViewport")}}

    diff --git a/files/en-us/web/api/visualviewport/height/index.html b/files/en-us/web/api/visualviewport/height/index.html index f6905f724a1bb43..133243b18cae05b 100644 --- a/files/en-us/web/api/visualviewport/height/index.html +++ b/files/en-us/web/api/visualviewport/height/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VisualViewport.height")}}

    diff --git a/files/en-us/web/api/visualviewport/index.html b/files/en-us/web/api/visualviewport/index.html index 116ec65004102e7..3be460157b537dc 100644 --- a/files/en-us/web/api/visualviewport/index.html +++ b/files/en-us/web/api/visualviewport/index.html @@ -121,8 +121,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VisualViewport")}}

    See also

    diff --git a/files/en-us/web/api/visualviewport/offsetleft/index.html b/files/en-us/web/api/visualviewport/offsetleft/index.html index 8888d45f3f6814a..e0f828cf4d2d9e9 100644 --- a/files/en-us/web/api/visualviewport/offsetleft/index.html +++ b/files/en-us/web/api/visualviewport/offsetleft/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VisualViewport.offsetLeft")}}

    diff --git a/files/en-us/web/api/visualviewport/offsettop/index.html b/files/en-us/web/api/visualviewport/offsettop/index.html index 508b1dab12e1b51..780a6102b0a3c13 100644 --- a/files/en-us/web/api/visualviewport/offsettop/index.html +++ b/files/en-us/web/api/visualviewport/offsettop/index.html @@ -39,9 +39,6 @@

    Specifications

    -

    Browser compatibility

    - -

    {{Compat("api.VisualViewport.offsetTop")}}

    diff --git a/files/en-us/web/api/visualviewport/onresize/index.html b/files/en-us/web/api/visualviewport/onresize/index.html index f4abe1d6f3a5565..c53635865c004fa 100644 --- a/files/en-us/web/api/visualviewport/onresize/index.html +++ b/files/en-us/web/api/visualviewport/onresize/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VisualViewport.onresize")}}

    diff --git a/files/en-us/web/api/visualviewport/onscroll/index.html b/files/en-us/web/api/visualviewport/onscroll/index.html index ba382681b75d732..c830e23ffe7c549 100644 --- a/files/en-us/web/api/visualviewport/onscroll/index.html +++ b/files/en-us/web/api/visualviewport/onscroll/index.html @@ -45,6 +45,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VisualViewport.onscroll")}}

    diff --git a/files/en-us/web/api/visualviewport/pageleft/index.html b/files/en-us/web/api/visualviewport/pageleft/index.html index 04583e3cece75e8..200f088ee8a3b9b 100644 --- a/files/en-us/web/api/visualviewport/pageleft/index.html +++ b/files/en-us/web/api/visualviewport/pageleft/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VisualViewport.pageLeft")}}

    diff --git a/files/en-us/web/api/visualviewport/pagetop/index.html b/files/en-us/web/api/visualviewport/pagetop/index.html index 1ce134692ffa64d..961303b7ad6c513 100644 --- a/files/en-us/web/api/visualviewport/pagetop/index.html +++ b/files/en-us/web/api/visualviewport/pagetop/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VisualViewport.pageTop")}}

    diff --git a/files/en-us/web/api/visualviewport/resize_event/index.html b/files/en-us/web/api/visualviewport/resize_event/index.html index e5a1b293ca605bf..fae57416c6a18c2 100644 --- a/files/en-us/web/api/visualviewport/resize_event/index.html +++ b/files/en-us/web/api/visualviewport/resize_event/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VisualViewport.resize_event")}}

    See also

    diff --git a/files/en-us/web/api/visualviewport/scale/index.html b/files/en-us/web/api/visualviewport/scale/index.html index 783572d556b0a14..41fec1f7eb59777 100644 --- a/files/en-us/web/api/visualviewport/scale/index.html +++ b/files/en-us/web/api/visualviewport/scale/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VisualViewport.scale")}}

    diff --git a/files/en-us/web/api/visualviewport/scroll_event/index.html b/files/en-us/web/api/visualviewport/scroll_event/index.html index eeb16067ffd23f1..1f29b95750db06a 100644 --- a/files/en-us/web/api/visualviewport/scroll_event/index.html +++ b/files/en-us/web/api/visualviewport/scroll_event/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VisualViewport.scroll_event")}}

    See also

    diff --git a/files/en-us/web/api/visualviewport/width/index.html b/files/en-us/web/api/visualviewport/width/index.html index 761b9e9f68d58e3..efd856b27922120 100644 --- a/files/en-us/web/api/visualviewport/width/index.html +++ b/files/en-us/web/api/visualviewport/width/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VisualViewport.width")}}

    diff --git a/files/en-us/web/api/vreyeparameters/index.html b/files/en-us/web/api/vreyeparameters/index.html index 5025272d60ffaf5..49cc09b2033e9d3 100644 --- a/files/en-us/web/api/vreyeparameters/index.html +++ b/files/en-us/web/api/vreyeparameters/index.html @@ -78,8 +78,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VREyeParameters")}}

    See also

    diff --git a/files/en-us/web/api/vreyeparameters/maximumfieldofview/index.html b/files/en-us/web/api/vreyeparameters/maximumfieldofview/index.html index ee12eddd306271a..8a1862969306380 100644 --- a/files/en-us/web/api/vreyeparameters/maximumfieldofview/index.html +++ b/files/en-us/web/api/vreyeparameters/maximumfieldofview/index.html @@ -33,8 +33,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.VREyeParameters.maximumFieldOfView")}}

    See also

    diff --git a/files/en-us/web/api/vreyeparameters/minimumfieldofview/index.html b/files/en-us/web/api/vreyeparameters/minimumfieldofview/index.html index 68334a966615426..51743734790ef90 100644 --- a/files/en-us/web/api/vreyeparameters/minimumfieldofview/index.html +++ b/files/en-us/web/api/vreyeparameters/minimumfieldofview/index.html @@ -33,8 +33,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.VREyeParameters.minimumFieldOfView")}}

    See also

    diff --git a/files/en-us/web/api/vreyeparameters/recommendedfieldofview/index.html b/files/en-us/web/api/vreyeparameters/recommendedfieldofview/index.html index 6d1b9cbdade2c4d..28b802a5b558e3c 100644 --- a/files/en-us/web/api/vreyeparameters/recommendedfieldofview/index.html +++ b/files/en-us/web/api/vreyeparameters/recommendedfieldofview/index.html @@ -49,8 +49,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.VREyeParameters.recommendedFieldOfView")}}

    See also

    diff --git a/files/en-us/web/api/vreyeparameters/renderrect/index.html b/files/en-us/web/api/vreyeparameters/renderrect/index.html index 9d5976d2e212a75..0f4dcef5c8ddf75 100644 --- a/files/en-us/web/api/vreyeparameters/renderrect/index.html +++ b/files/en-us/web/api/vreyeparameters/renderrect/index.html @@ -33,8 +33,6 @@

    Examples

    Browser compatibility

    - -

    {{Compat("api.VREyeParameters.renderRect")}}

    See also

    diff --git a/files/en-us/web/api/vttcue/index.html b/files/en-us/web/api/vttcue/index.html index 530788b9f9a929c..9005b078024a60d 100644 --- a/files/en-us/web/api/vttcue/index.html +++ b/files/en-us/web/api/vttcue/index.html @@ -114,6 +114,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VTTCue")}}

    diff --git a/files/en-us/web/api/vttcue/vttcue/index.html b/files/en-us/web/api/vttcue/vttcue/index.html index a8e8557742773b4..1c25c9688f1e525 100644 --- a/files/en-us/web/api/vttcue/vttcue/index.html +++ b/files/en-us/web/api/vttcue/vttcue/index.html @@ -60,6 +60,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VTTCue.VTTCue")}}

    diff --git a/files/en-us/web/api/vttregion/index.html b/files/en-us/web/api/vttregion/index.html index 44ce552ee44d780..bc8f94167232601 100644 --- a/files/en-us/web/api/vttregion/index.html +++ b/files/en-us/web/api/vttregion/index.html @@ -66,6 +66,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.VTTRegion")}}

    diff --git a/files/en-us/web/api/wakelock/index.html b/files/en-us/web/api/wakelock/index.html index 8c36188610967d2..466df9c96b5db9f 100644 --- a/files/en-us/web/api/wakelock/index.html +++ b/files/en-us/web/api/wakelock/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WakeLock")}}

    diff --git a/files/en-us/web/api/wakelock/request/index.html b/files/en-us/web/api/wakelock/request/index.html index 973b8c3ea96f405..985a759ae82508c 100644 --- a/files/en-us/web/api/wakelock/request/index.html +++ b/files/en-us/web/api/wakelock/request/index.html @@ -83,8 +83,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WakeLock.request")}}

    See also

    diff --git a/files/en-us/web/api/wakelocksentinel/index.html b/files/en-us/web/api/wakelocksentinel/index.html index 55e7750c07db09a..1f4dd7b9a65ff6c 100644 --- a/files/en-us/web/api/wakelocksentinel/index.html +++ b/files/en-us/web/api/wakelocksentinel/index.html @@ -101,6 +101,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WakeLockSentinel")}}

    diff --git a/files/en-us/web/api/wakelocksentinel/onrelease/index.html b/files/en-us/web/api/wakelocksentinel/onrelease/index.html index 0e12606662fd1d6..27a1180d9d6bdb8 100644 --- a/files/en-us/web/api/wakelocksentinel/onrelease/index.html +++ b/files/en-us/web/api/wakelocksentinel/onrelease/index.html @@ -55,6 +55,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WakeLockSentinel.onrelease")}}

    diff --git a/files/en-us/web/api/wakelocksentinel/release/index.html b/files/en-us/web/api/wakelocksentinel/release/index.html index 90e80cadb9e54da..db3c0e1e9ef0d75 100644 --- a/files/en-us/web/api/wakelocksentinel/release/index.html +++ b/files/en-us/web/api/wakelocksentinel/release/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WakeLockSentinel.release")}}

    See also

    diff --git a/files/en-us/web/api/wakelocksentinel/released/index.html b/files/en-us/web/api/wakelocksentinel/released/index.html index e80fdb2b6a43006..22673266876bdcc 100644 --- a/files/en-us/web/api/wakelocksentinel/released/index.html +++ b/files/en-us/web/api/wakelocksentinel/released/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WakeLockSentinel.released")}}

    diff --git a/files/en-us/web/api/wakelocksentinel/type/index.html b/files/en-us/web/api/wakelocksentinel/type/index.html index e858e7dbdcc4173..38ac38a2d537679 100644 --- a/files/en-us/web/api/wakelocksentinel/type/index.html +++ b/files/en-us/web/api/wakelocksentinel/type/index.html @@ -61,6 +61,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WakeLockSentinel.type")}}

    diff --git a/files/en-us/web/api/waveshapernode/curve/index.html b/files/en-us/web/api/waveshapernode/curve/index.html index 41c89c6572b4481..93448ccc64802b5 100644 --- a/files/en-us/web/api/waveshapernode/curve/index.html +++ b/files/en-us/web/api/waveshapernode/curve/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.WaveShaperNode.curve")}}

    diff --git a/files/en-us/web/api/waveshapernode/index.html b/files/en-us/web/api/waveshapernode/index.html index 979d81d0b3fecbd..b4a36da719a1705 100644 --- a/files/en-us/web/api/waveshapernode/index.html +++ b/files/en-us/web/api/waveshapernode/index.html @@ -88,7 +88,6 @@

    Browser compatibility

    -

    {{Compat("api.WaveShaperNode")}}

    diff --git a/files/en-us/web/api/waveshapernode/oversample/index.html b/files/en-us/web/api/waveshapernode/oversample/index.html index 0b2b71d69a950ad..b4c40abf89789a9 100644 --- a/files/en-us/web/api/waveshapernode/oversample/index.html +++ b/files/en-us/web/api/waveshapernode/oversample/index.html @@ -77,7 +77,6 @@

    Browser compatibility

    -

    {{Compat("api.WaveShaperNode.oversample")}}

    diff --git a/files/en-us/web/api/waveshapernode/waveshapernode/index.html b/files/en-us/web/api/waveshapernode/waveshapernode/index.html index 7d38199b1aef32d..87c5451a81966fe 100644 --- a/files/en-us/web/api/waveshapernode/waveshapernode/index.html +++ b/files/en-us/web/api/waveshapernode/waveshapernode/index.html @@ -59,6 +59,5 @@

    Browser Compatibility

    -

    {{Compat("api.WaveShaperNode.WaveShaperNode")}}

    diff --git a/files/en-us/web/api/web_animations_api/keyframe_formats/index.html b/files/en-us/web/api/web_animations_api/keyframe_formats/index.html index d160ccb96961b70..66339a48083a3aa 100644 --- a/files/en-us/web/api/web_animations_api/keyframe_formats/index.html +++ b/files/en-us/web/api/web_animations_api/keyframe_formats/index.html @@ -154,7 +154,6 @@

    Element.animate

    -

    {{Compat("api.Element.animate")}}

    diff --git a/files/en-us/web/api/web_audio_api/index.html b/files/en-us/web/api/web_audio_api/index.html index cd0096e0ba8fe42..1a76a7b4a8adb71 100644 --- a/files/en-us/web/api/web_audio_api/index.html +++ b/files/en-us/web/api/web_audio_api/index.html @@ -260,7 +260,6 @@

    AudioContext

    -

    {{Compat("api.AudioContext", 0)}}

    diff --git a/files/en-us/web/api/web_bluetooth_api/index.html b/files/en-us/web/api/web_bluetooth_api/index.html index 47e55d1e0fa01e8..5f5d5d5f10e6a91 100644 --- a/files/en-us/web/api/web_bluetooth_api/index.html +++ b/files/en-us/web/api/web_bluetooth_api/index.html @@ -56,6 +56,5 @@

    Browser compatibility

    -

    {{Compat("api.Bluetooth")}}

    diff --git a/files/en-us/web/api/web_budget_api/index.html b/files/en-us/web/api/web_budget_api/index.html index c4b90ad9cde383b..adf09d71d53e808 100644 --- a/files/en-us/web/api/web_budget_api/index.html +++ b/files/en-us/web/api/web_budget_api/index.html @@ -47,8 +47,6 @@

    Browser compatibility

    BudgetService

    - -

    {{Compat("api.BudgetService")}}

    BudgetState

    diff --git a/files/en-us/web/api/web_crypto_api/index.html b/files/en-us/web/api/web_crypto_api/index.html index 3a8a62b6b5b7367..e0b63c511876aff 100644 --- a/files/en-us/web/api/web_crypto_api/index.html +++ b/files/en-us/web/api/web_crypto_api/index.html @@ -50,6 +50,4 @@

    Browser compatibility

    Crypto

    - -

    {{Compat("api.Crypto")}}

    diff --git a/files/en-us/web/api/web_locks_api/index.html b/files/en-us/web/api/web_locks_api/index.html index cc7397ba69e129c..4d243ce587c4eca 100644 --- a/files/en-us/web/api/web_locks_api/index.html +++ b/files/en-us/web/api/web_locks_api/index.html @@ -132,8 +132,6 @@

    Browser compatibility

    LockManager

    - -

    {{Compat("api.LockManager")}}

    Lock

    diff --git a/files/en-us/web/api/web_nfc_api/index.html b/files/en-us/web/api/web_nfc_api/index.html index 1291f11ac96763d..ac4a268b27d55df 100644 --- a/files/en-us/web/api/web_nfc_api/index.html +++ b/files/en-us/web/api/web_nfc_api/index.html @@ -46,6 +46,5 @@

    Browser compatibility

    -

    {{Compat("api.NDEFReader")}}

    diff --git a/files/en-us/web/api/web_periodic_background_synchronization_api/index.html b/files/en-us/web/api/web_periodic_background_synchronization_api/index.html index 8886b3fddcf8b0d..0a5fe583a10fd5a 100644 --- a/files/en-us/web/api/web_periodic_background_synchronization_api/index.html +++ b/files/en-us/web/api/web_periodic_background_synchronization_api/index.html @@ -124,8 +124,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.PeriodicSyncManager")}}

    See also

    diff --git a/files/en-us/web/api/web_speech_api/index.html b/files/en-us/web/api/web_speech_api/index.html index 019256d43512a73..cafd0000c767bd8 100644 --- a/files/en-us/web/api/web_speech_api/index.html +++ b/files/en-us/web/api/web_speech_api/index.html @@ -96,8 +96,6 @@

    Browser compatibility

    SpeechRecognition

    - -

    {{Compat("api.SpeechRecognition", 0)}}

    SpeechSynthesis

    diff --git a/files/en-us/web/api/web_storage_api/index.html b/files/en-us/web/api/web_storage_api/index.html index 798ee30033ff3d2..f0d0ed50f74784c 100644 --- a/files/en-us/web/api/web_storage_api/index.html +++ b/files/en-us/web/api/web_storage_api/index.html @@ -87,8 +87,6 @@

    Browser compatibility

    Window.localStorage

    - -

    {{Compat("api.Window.localStorage")}}

    Window.sessionStorage

    diff --git a/files/en-us/web/api/web_storage_api/using_the_web_storage_api/index.html b/files/en-us/web/api/web_storage_api/using_the_web_storage_api/index.html index f24bc0d79fa79e8..9520a94ac9ebf8c 100644 --- a/files/en-us/web/api/web_storage_api/using_the_web_storage_api/index.html +++ b/files/en-us/web/api/web_storage_api/using_the_web_storage_api/index.html @@ -208,8 +208,6 @@

    Browser compatibility

    Window.localStorage

    - -

    {{Compat("api.Window.localStorage")}}

    Window.sessionStorage

    diff --git a/files/en-us/web/api/webgl_api/index.html b/files/en-us/web/api/webgl_api/index.html index f599bf6faecfc78..9af86da4f970cea 100644 --- a/files/en-us/web/api/webgl_api/index.html +++ b/files/en-us/web/api/webgl_api/index.html @@ -231,8 +231,6 @@

    Browser compatibility

    WebGL 1

    - -

    {{Compat("api.WebGLRenderingContext", 0)}}

    WebGL 2

    diff --git a/files/en-us/web/api/webgl_api/tutorial/creating_3d_objects_using_webgl/index.html b/files/en-us/web/api/webgl_api/tutorial/creating_3d_objects_using_webgl/index.html index a0179791d406ecc..cc2be2b070c36cb 100644 --- a/files/en-us/web/api/webgl_api/tutorial/creating_3d_objects_using_webgl/index.html +++ b/files/en-us/web/api/webgl_api/tutorial/creating_3d_objects_using_webgl/index.html @@ -171,8 +171,6 @@

    Drawing the cube

    mat4.rotate(modelViewMatrix, modelViewMatrix, cubeRotation * .7, [0, 1, 0]);
     
    -
    -
     

    At this point, we now have an animated cube rotating, its six faces rather vividly colored.

    diff --git a/files/en-us/web/api/webglrenderingcontext/commit/index.html b/files/en-us/web/api/webglrenderingcontext/commit/index.html index 4bb463fce9f9074..aa59be46cd9b061 100644 --- a/files/en-us/web/api/webglrenderingcontext/commit/index.html +++ b/files/en-us/web/api/webglrenderingcontext/commit/index.html @@ -48,7 +48,6 @@

    Specifications

    -

    Browser compatibility

    diff --git a/files/en-us/web/api/webglrenderingcontext/getextension/index.html b/files/en-us/web/api/webglrenderingcontext/getextension/index.html index aa5747f11208eef..5a4f9c30e048beb 100644 --- a/files/en-us/web/api/webglrenderingcontext/getextension/index.html +++ b/files/en-us/web/api/webglrenderingcontext/getextension/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebGLRenderingContext.getExtension")}}

    See also

    diff --git a/files/en-us/web/api/webglrenderingcontext/getsupportedextensions/index.html b/files/en-us/web/api/webglrenderingcontext/getsupportedextensions/index.html index 126d01c71a87e86..5a9fd33a7e94f32 100644 --- a/files/en-us/web/api/webglrenderingcontext/getsupportedextensions/index.html +++ b/files/en-us/web/api/webglrenderingcontext/getsupportedextensions/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebGLRenderingContext.getSupportedExtensions")}}

    See also

    diff --git a/files/en-us/web/api/webglrenderingcontext/teximage2d/index.html b/files/en-us/web/api/webglrenderingcontext/teximage2d/index.html index 8b42410cdde8fcd..84fcbc370a54551 100644 --- a/files/en-us/web/api/webglrenderingcontext/teximage2d/index.html +++ b/files/en-us/web/api/webglrenderingcontext/teximage2d/index.html @@ -118,8 +118,6 @@

    Parameters

    Other possible values in WebGL2 for the versions of texImage2D that take an ArrayBufferView or a GLintptr offset
    - - diff --git a/files/en-us/web/api/webrtc_api/build_a_phone_with_peerjs/connect_peers/get_microphone_permission/index.html b/files/en-us/web/api/webrtc_api/build_a_phone_with_peerjs/connect_peers/get_microphone_permission/index.html index 015acb0c0b55cfb..784fb3bdf485168 100644 --- a/files/en-us/web/api/webrtc_api/build_a_phone_with_peerjs/connect_peers/get_microphone_permission/index.html +++ b/files/en-us/web/api/webrtc_api/build_a_phone_with_peerjs/connect_peers/get_microphone_permission/index.html @@ -39,14 +39,12 @@
    /* global Peer */
     
    -
     /**
      * Gets the local audio stream of the current caller
      * @param callbacks - an object to set the success/error behaviour
      * @returns {void}
      */
     
    -
     function getLocalStream() {
         navigator.mediaDevices.getUserMedia({video: false, audio: true}).then( stream => {
             window.localStream = stream;
    diff --git a/files/en-us/web/api/webrtc_api/build_a_phone_with_peerjs/setup/index.html b/files/en-us/web/api/webrtc_api/build_a_phone_with_peerjs/setup/index.html
    index 0ae3aa0c378f711..e1713faeb5721d6 100644
    --- a/files/en-us/web/api/webrtc_api/build_a_phone_with_peerjs/setup/index.html
    +++ b/files/en-us/web/api/webrtc_api/build_a_phone_with_peerjs/setup/index.html
    @@ -36,6 +36,4 @@
     
     

    To finish up the setup, you’ll want to copy the HTML & CSS files I mentioned before, into your project folder.

    - -

    {{NextMenu("Web/API/WebRTC_API/build_a_phone_with_peerjs", "Web/API/WebRTC_API/build_a_phone_with_peerjs/Build_the_Server")}}

    diff --git a/files/en-us/web/api/websocket/binarytype/index.html b/files/en-us/web/api/websocket/binarytype/index.html index c94ccfb08c821ec..cef9e93a8890fdf 100644 --- a/files/en-us/web/api/websocket/binarytype/index.html +++ b/files/en-us/web/api/websocket/binarytype/index.html @@ -50,6 +50,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket.binaryType")}}

    diff --git a/files/en-us/web/api/websocket/bufferedamount/index.html b/files/en-us/web/api/websocket/bufferedamount/index.html index 075c9bfc5559164..eb3908079586f5a 100644 --- a/files/en-us/web/api/websocket/bufferedamount/index.html +++ b/files/en-us/web/api/websocket/bufferedamount/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket.bufferedAmount")}}

    diff --git a/files/en-us/web/api/websocket/close/index.html b/files/en-us/web/api/websocket/close/index.html index 4ef30519e480a85..512ac707591d9f9 100644 --- a/files/en-us/web/api/websocket/close/index.html +++ b/files/en-us/web/api/websocket/close/index.html @@ -58,6 +58,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket.close")}}

    diff --git a/files/en-us/web/api/websocket/extensions/index.html b/files/en-us/web/api/websocket/extensions/index.html index 1cdd8c600dc4baa..35ebc4d956e20fd 100644 --- a/files/en-us/web/api/websocket/extensions/index.html +++ b/files/en-us/web/api/websocket/extensions/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket.extensions")}}

    diff --git a/files/en-us/web/api/websocket/index.html b/files/en-us/web/api/websocket/index.html index 45d46cae1809831..496eb7998d639ee 100644 --- a/files/en-us/web/api/websocket/index.html +++ b/files/en-us/web/api/websocket/index.html @@ -139,7 +139,6 @@

    Browser compatibility

    -

    {{Compat("api.WebSocket")}}

    diff --git a/files/en-us/web/api/websocket/onerror/index.html b/files/en-us/web/api/websocket/onerror/index.html index fda5c1171fd0716..c924c278444a00a 100644 --- a/files/en-us/web/api/websocket/onerror/index.html +++ b/files/en-us/web/api/websocket/onerror/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket.onerror")}}

    diff --git a/files/en-us/web/api/websocket/onmessage/index.html b/files/en-us/web/api/websocket/onmessage/index.html index 0df880be36a2a49..eec35fa384a98d1 100644 --- a/files/en-us/web/api/websocket/onmessage/index.html +++ b/files/en-us/web/api/websocket/onmessage/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket.onmessage")}}

    diff --git a/files/en-us/web/api/websocket/onopen/index.html b/files/en-us/web/api/websocket/onopen/index.html index 8253c48aa74081c..b045ec4dbf684bf 100644 --- a/files/en-us/web/api/websocket/onopen/index.html +++ b/files/en-us/web/api/websocket/onopen/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket.onopen")}}

    diff --git a/files/en-us/web/api/websocket/protocol/index.html b/files/en-us/web/api/websocket/protocol/index.html index 1815d805de4b229..c79a2acebe07452 100644 --- a/files/en-us/web/api/websocket/protocol/index.html +++ b/files/en-us/web/api/websocket/protocol/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket.protocol")}}

    diff --git a/files/en-us/web/api/websocket/readystate/index.html b/files/en-us/web/api/websocket/readystate/index.html index 808e73b90b67920..03cea3647ef619c 100644 --- a/files/en-us/web/api/websocket/readystate/index.html +++ b/files/en-us/web/api/websocket/readystate/index.html @@ -71,6 +71,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket.readyState")}}

    diff --git a/files/en-us/web/api/websocket/send/index.html b/files/en-us/web/api/websocket/send/index.html index ea7a32fa2fbfc39..51fb1f4c7faa9e7 100644 --- a/files/en-us/web/api/websocket/send/index.html +++ b/files/en-us/web/api/websocket/send/index.html @@ -70,6 +70,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket.send")}}

    diff --git a/files/en-us/web/api/websocket/url/index.html b/files/en-us/web/api/websocket/url/index.html index 87c12f5515f9ab4..5e7fc2de6fb006d 100644 --- a/files/en-us/web/api/websocket/url/index.html +++ b/files/en-us/web/api/websocket/url/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket.url")}}

    diff --git a/files/en-us/web/api/websocket/websocket/index.html b/files/en-us/web/api/websocket/websocket/index.html index 24c85dc1cf476da..57148d2c82026f5 100644 --- a/files/en-us/web/api/websocket/websocket/index.html +++ b/files/en-us/web/api/websocket/websocket/index.html @@ -54,6 +54,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket.WebSocket")}}

    diff --git a/files/en-us/web/api/websockets_api/index.html b/files/en-us/web/api/websockets_api/index.html index 63e0feec3859c60..8dd0213c9887cc8 100644 --- a/files/en-us/web/api/websockets_api/index.html +++ b/files/en-us/web/api/websockets_api/index.html @@ -100,8 +100,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WebSocket")}}

    See also

    diff --git a/files/en-us/web/api/webvtt_api/index.html b/files/en-us/web/api/webvtt_api/index.html index fe0d12e1f292412..4875cf19ed40dbe 100644 --- a/files/en-us/web/api/webvtt_api/index.html +++ b/files/en-us/web/api/webvtt_api/index.html @@ -889,8 +889,6 @@

    Browser compatibility

    VTTCue interface

    - -

    {{Compat("api.VTTCue", 0)}}

    TextTrack interface

    diff --git a/files/en-us/web/api/wheelevent/deltamode/index.html b/files/en-us/web/api/wheelevent/deltamode/index.html index 20867aefd4067fb..59db30349715888 100644 --- a/files/en-us/web/api/wheelevent/deltamode/index.html +++ b/files/en-us/web/api/wheelevent/deltamode/index.html @@ -68,8 +68,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WheelEvent.deltaMode")}}

    See also

    diff --git a/files/en-us/web/api/wheelevent/deltax/index.html b/files/en-us/web/api/wheelevent/deltax/index.html index f6240db354270b8..5a1f0f4858eb32e 100644 --- a/files/en-us/web/api/wheelevent/deltax/index.html +++ b/files/en-us/web/api/wheelevent/deltax/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WheelEvent.deltaX")}}

    See also

    diff --git a/files/en-us/web/api/wheelevent/deltay/index.html b/files/en-us/web/api/wheelevent/deltay/index.html index c5f25dc53297201..18cbbe558542d23 100644 --- a/files/en-us/web/api/wheelevent/deltay/index.html +++ b/files/en-us/web/api/wheelevent/deltay/index.html @@ -44,8 +44,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WheelEvent.deltaY")}}

    See also

    diff --git a/files/en-us/web/api/wheelevent/deltaz/index.html b/files/en-us/web/api/wheelevent/deltaz/index.html index c8e733e52348858..12a3e2d2cfe936a 100644 --- a/files/en-us/web/api/wheelevent/deltaz/index.html +++ b/files/en-us/web/api/wheelevent/deltaz/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WheelEvent.deltaZ")}}

    See also

    diff --git a/files/en-us/web/api/wheelevent/index.html b/files/en-us/web/api/wheelevent/index.html index 44794b8f0556485..561296892ee59b4 100644 --- a/files/en-us/web/api/wheelevent/index.html +++ b/files/en-us/web/api/wheelevent/index.html @@ -101,8 +101,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WheelEvent")}}

    See also

    diff --git a/files/en-us/web/api/wheelevent/wheelevent/index.html b/files/en-us/web/api/wheelevent/wheelevent/index.html index 23a2584c5e3de12..eb20b4e1b819406 100644 --- a/files/en-us/web/api/wheelevent/wheelevent/index.html +++ b/files/en-us/web/api/wheelevent/wheelevent/index.html @@ -81,8 +81,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.WheelEvent.WheelEvent")}}

    See also

    diff --git a/files/en-us/web/api/window/afterprint_event/index.html b/files/en-us/web/api/window/afterprint_event/index.html index 9f3a2001c56cfd3..3a97d488f2ebe12 100644 --- a/files/en-us/web/api/window/afterprint_event/index.html +++ b/files/en-us/web/api/window/afterprint_event/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.afterprint_event")}}

    See also

    diff --git a/files/en-us/web/api/window/alert/index.html b/files/en-us/web/api/window/alert/index.html index ae277d555659d02..31bd02dedd0a93f 100644 --- a/files/en-us/web/api/window/alert/index.html +++ b/files/en-us/web/api/window/alert/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.alert")}}

    See also

    diff --git a/files/en-us/web/api/window/animationcancel_event/index.html b/files/en-us/web/api/window/animationcancel_event/index.html index 298e23cf846ea7e..2da22369ce88a9c 100644 --- a/files/en-us/web/api/window/animationcancel_event/index.html +++ b/files/en-us/web/api/window/animationcancel_event/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.animationcancel_event")}}

    See also

    diff --git a/files/en-us/web/api/window/animationend_event/index.html b/files/en-us/web/api/window/animationend_event/index.html index 984db991aa85449..f8b4df39671df53 100644 --- a/files/en-us/web/api/window/animationend_event/index.html +++ b/files/en-us/web/api/window/animationend_event/index.html @@ -73,8 +73,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.animationend_event")}}

    See also

    diff --git a/files/en-us/web/api/window/animationiteration_event/index.html b/files/en-us/web/api/window/animationiteration_event/index.html index 0a946bfc713cdb5..4ff5b083bb86794 100644 --- a/files/en-us/web/api/window/animationiteration_event/index.html +++ b/files/en-us/web/api/window/animationiteration_event/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.animationiteration_event")}}

    See also

    diff --git a/files/en-us/web/api/window/animationstart_event/index.html b/files/en-us/web/api/window/animationstart_event/index.html index c2243f614083f26..f429f77f8cd3486 100644 --- a/files/en-us/web/api/window/animationstart_event/index.html +++ b/files/en-us/web/api/window/animationstart_event/index.html @@ -75,8 +75,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.animationstart_event")}}

    See also

    diff --git a/files/en-us/web/api/window/applicationcache/index.html b/files/en-us/web/api/window/applicationcache/index.html index e4190f7080e860b..cdef6d3be196a65 100644 --- a/files/en-us/web/api/window/applicationcache/index.html +++ b/files/en-us/web/api/window/applicationcache/index.html @@ -35,8 +35,6 @@

    Parameters

    Browser compatibility

    - -

    {{Compat("api.SharedWorkerGlobalScope.applicationCache")}}

    See also

    diff --git a/files/en-us/web/api/window/beforeprint_event/index.html b/files/en-us/web/api/window/beforeprint_event/index.html index 3526fa2cb52b090..68e1cbbe064a0a7 100644 --- a/files/en-us/web/api/window/beforeprint_event/index.html +++ b/files/en-us/web/api/window/beforeprint_event/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.beforeprint_event")}}

    See also

    diff --git a/files/en-us/web/api/window/beforeunload_event/index.html b/files/en-us/web/api/window/beforeunload_event/index.html index 95ca6bd26ca1e60..5415c597ba50568 100644 --- a/files/en-us/web/api/window/beforeunload_event/index.html +++ b/files/en-us/web/api/window/beforeunload_event/index.html @@ -92,8 +92,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.beforeunload_event")}}

    See WindowEventHandlers/onbeforeunload for more details on how various browsers handle this event.

    diff --git a/files/en-us/web/api/window/blur/index.html b/files/en-us/web/api/window/blur/index.html index d65673e003aaf42..2496287b74fb644 100644 --- a/files/en-us/web/api/window/blur/index.html +++ b/files/en-us/web/api/window/blur/index.html @@ -42,6 +42,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.blur")}}

    diff --git a/files/en-us/web/api/window/blur_event/index.html b/files/en-us/web/api/window/blur_event/index.html index b3c057b70ab5461..f140b429e56b08b 100644 --- a/files/en-us/web/api/window/blur_event/index.html +++ b/files/en-us/web/api/window/blur_event/index.html @@ -109,8 +109,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.blur_event")}}

    The value of {{DOMxRef("Document.activeElement")}} varies across browsers while this event is being handled ({{bug(452307)}}): IE10 sets it to the element that the focus will move to, while Firefox and Chrome often set it to the body of the document.

    diff --git a/files/en-us/web/api/window/cancelanimationframe/index.html b/files/en-us/web/api/window/cancelanimationframe/index.html index 416eb4d221ef373..a04e75f1637f49a 100644 --- a/files/en-us/web/api/window/cancelanimationframe/index.html +++ b/files/en-us/web/api/window/cancelanimationframe/index.html @@ -67,12 +67,10 @@

    Specifications

    -

    Browser compatibility

    -

    {{Compat("api.Window.cancelAnimationFrame")}}

    diff --git a/files/en-us/web/api/window/cancelidlecallback/index.html b/files/en-us/web/api/window/cancelidlecallback/index.html index b54213059a5acf4..8770095ce77f381 100644 --- a/files/en-us/web/api/window/cancelidlecallback/index.html +++ b/files/en-us/web/api/window/cancelidlecallback/index.html @@ -54,8 +54,4 @@

    Specifications

    Browser compatibility

    - - - -

    {{Compat("api.Window.cancelIdleCallback")}}

    diff --git a/files/en-us/web/api/window/clearimmediate/index.html b/files/en-us/web/api/window/clearimmediate/index.html index 23fc410eb0245d1..4d706ccee870a50 100644 --- a/files/en-us/web/api/window/clearimmediate/index.html +++ b/files/en-us/web/api/window/clearimmediate/index.html @@ -56,8 +56,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.clearImmediate")}}

    See also

    diff --git a/files/en-us/web/api/window/clipboardchange_event/index.html b/files/en-us/web/api/window/clipboardchange_event/index.html index db849aa1c8eb905..908b2446b1e0cba 100644 --- a/files/en-us/web/api/window/clipboardchange_event/index.html +++ b/files/en-us/web/api/window/clipboardchange_event/index.html @@ -59,6 +59,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.clipboardchange_event")}}

    diff --git a/files/en-us/web/api/window/close/index.html b/files/en-us/web/api/window/close/index.html index ce4c009a2bec58a..2dadd4141358eb7 100644 --- a/files/en-us/web/api/window/close/index.html +++ b/files/en-us/web/api/window/close/index.html @@ -72,6 +72,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.close")}}

    diff --git a/files/en-us/web/api/window/confirm/index.html b/files/en-us/web/api/window/confirm/index.html index b4a34a9419ec553..2ee2cc426455cdd 100644 --- a/files/en-us/web/api/window/confirm/index.html +++ b/files/en-us/web/api/window/confirm/index.html @@ -63,8 +63,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.confirm")}}

    See also

    diff --git a/files/en-us/web/api/window/convertpointfromnodetopage/index.html b/files/en-us/web/api/window/convertpointfromnodetopage/index.html index 95ac06e97a1a2ad..ca157180a2a092b 100644 --- a/files/en-us/web/api/window/convertpointfromnodetopage/index.html +++ b/files/en-us/web/api/window/convertpointfromnodetopage/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.convertPointFromNodeToPage")}}

    See also

    diff --git a/files/en-us/web/api/window/convertpointfrompagetonode/index.html b/files/en-us/web/api/window/convertpointfrompagetonode/index.html index e507bafb91976fd..ca7ec7e0f75137c 100644 --- a/files/en-us/web/api/window/convertpointfrompagetonode/index.html +++ b/files/en-us/web/api/window/convertpointfrompagetonode/index.html @@ -45,8 +45,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.convertPointFromPageToNode")}}

    See also

    diff --git a/files/en-us/web/api/window/copy_event/index.html b/files/en-us/web/api/window/copy_event/index.html index 60c7b28ed93229f..f328e11404ac41f 100644 --- a/files/en-us/web/api/window/copy_event/index.html +++ b/files/en-us/web/api/window/copy_event/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.copy_event")}}

    See also

    diff --git a/files/en-us/web/api/window/crypto/index.html b/files/en-us/web/api/window/crypto/index.html index 630b9a062d32440..feecf6b55553e3f 100644 --- a/files/en-us/web/api/window/crypto/index.html +++ b/files/en-us/web/api/window/crypto/index.html @@ -74,8 +74,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.crypto")}}

    See also

    diff --git a/files/en-us/web/api/window/customelements/index.html b/files/en-us/web/api/window/customelements/index.html index 3da5ec9c1477f55..da798b24a2bc774 100644 --- a/files/en-us/web/api/window/customelements/index.html +++ b/files/en-us/web/api/window/customelements/index.html @@ -60,6 +60,5 @@

    Browser compatibility

    -

    {{Compat("api.Window.customElements")}}

    diff --git a/files/en-us/web/api/window/cut_event/index.html b/files/en-us/web/api/window/cut_event/index.html index 473f01926e6aa25..eb9d68ee849f6d9 100644 --- a/files/en-us/web/api/window/cut_event/index.html +++ b/files/en-us/web/api/window/cut_event/index.html @@ -62,8 +62,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.cut_event")}}

    See also

    diff --git a/files/en-us/web/api/window/devicemotion_event/index.html b/files/en-us/web/api/window/devicemotion_event/index.html index a6ce2cfb3e49b34..24a7fb570eb63e7 100644 --- a/files/en-us/web/api/window/devicemotion_event/index.html +++ b/files/en-us/web/api/window/devicemotion_event/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.devicemotion_event")}}

    See also

    diff --git a/files/en-us/web/api/window/deviceorientation_event/index.html b/files/en-us/web/api/window/deviceorientation_event/index.html index 7dc0f1b51bdba54..97125330847978c 100644 --- a/files/en-us/web/api/window/deviceorientation_event/index.html +++ b/files/en-us/web/api/window/deviceorientation_event/index.html @@ -71,8 +71,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.deviceorientation_event")}}

    See also

    diff --git a/files/en-us/web/api/window/devicepixelratio/index.html b/files/en-us/web/api/window/devicepixelratio/index.html index 2c6417872cc0978..242eb17ba75a63b 100644 --- a/files/en-us/web/api/window/devicepixelratio/index.html +++ b/files/en-us/web/api/window/devicepixelratio/index.html @@ -174,8 +174,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.devicePixelRatio")}}

    See also

    diff --git a/files/en-us/web/api/window/dialogarguments/index.html b/files/en-us/web/api/window/dialogarguments/index.html index ae9e3e733ae46d0..fd39e21c3535f0d 100644 --- a/files/en-us/web/api/window/dialogarguments/index.html +++ b/files/en-us/web/api/window/dialogarguments/index.html @@ -22,6 +22,4 @@

    Syntax

    Browser compatibility

    - -

    {{Compat("api.Window.dialogArguments")}}

    diff --git a/files/en-us/web/api/window/document/index.html b/files/en-us/web/api/window/document/index.html index 10bb6f2fca21da7..214a8ea2df64c40 100644 --- a/files/en-us/web/api/window/document/index.html +++ b/files/en-us/web/api/window/document/index.html @@ -43,6 +43,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.document")}}

    diff --git a/files/en-us/web/api/window/domcontentloaded_event/index.html b/files/en-us/web/api/window/domcontentloaded_event/index.html index 44020fede96f5e5..ac48bf32e9e5c9a 100644 --- a/files/en-us/web/api/window/domcontentloaded_event/index.html +++ b/files/en-us/web/api/window/domcontentloaded_event/index.html @@ -65,8 +65,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.DOMContentLoaded_event")}}

    See also

    diff --git a/files/en-us/web/api/window/error_event/index.html b/files/en-us/web/api/window/error_event/index.html index 00632b9346f3791..949299affe52aba 100644 --- a/files/en-us/web/api/window/error_event/index.html +++ b/files/en-us/web/api/window/error_event/index.html @@ -128,8 +128,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.error_event")}}

    See also

    diff --git a/files/en-us/web/api/window/event/index.html b/files/en-us/web/api/window/event/index.html index 036f8850d7aed7b..9d089536156125c 100644 --- a/files/en-us/web/api/window/event/index.html +++ b/files/en-us/web/api/window/event/index.html @@ -39,8 +39,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.event")}}

    See also

    diff --git a/files/en-us/web/api/window/external/index.html b/files/en-us/web/api/window/external/index.html index f76462de564408f..187ff0e455876b4 100644 --- a/files/en-us/web/api/window/external/index.html +++ b/files/en-us/web/api/window/external/index.html @@ -49,6 +49,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.external")}}

    diff --git a/files/en-us/web/api/window/focus/index.html b/files/en-us/web/api/window/focus/index.html index 636b21f5a826027..230ce8c469d55d6 100644 --- a/files/en-us/web/api/window/focus/index.html +++ b/files/en-us/web/api/window/focus/index.html @@ -41,6 +41,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.focus")}}

    diff --git a/files/en-us/web/api/window/focus_event/index.html b/files/en-us/web/api/window/focus_event/index.html index 22b2b03a99b2fa9..6deda0d09e01f0b 100644 --- a/files/en-us/web/api/window/focus_event/index.html +++ b/files/en-us/web/api/window/focus_event/index.html @@ -112,8 +112,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.focus_event")}}

    See also

    diff --git a/files/en-us/web/api/window/frameelement/index.html b/files/en-us/web/api/window/frameelement/index.html index f9d20ef621995ef..1840c290a85b63f 100644 --- a/files/en-us/web/api/window/frameelement/index.html +++ b/files/en-us/web/api/window/frameelement/index.html @@ -57,7 +57,6 @@

    Browser compatibility

    -

    {{Compat("api.Window.frameElement")}}

    diff --git a/files/en-us/web/api/window/frames/index.html b/files/en-us/web/api/window/frames/index.html index 1a19d4348606fbe..36de3ff76ffb5f3 100644 --- a/files/en-us/web/api/window/frames/index.html +++ b/files/en-us/web/api/window/frames/index.html @@ -62,6 +62,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.frames")}}

    diff --git a/files/en-us/web/api/window/fullscreen/index.html b/files/en-us/web/api/window/fullscreen/index.html index 44705edfd43dab0..e3f9b736802f8dc 100644 --- a/files/en-us/web/api/window/fullscreen/index.html +++ b/files/en-us/web/api/window/fullscreen/index.html @@ -50,6 +50,4 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.Window.fullScreen")}}

    diff --git a/files/en-us/web/api/window/getattention/index.html b/files/en-us/web/api/window/getattention/index.html index 93c8a9b669e02e9..d10669e826fc930 100644 --- a/files/en-us/web/api/window/getattention/index.html +++ b/files/en-us/web/api/window/getattention/index.html @@ -34,6 +34,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.getAttention")}}

    diff --git a/files/en-us/web/api/window/getcomputedstyle/index.html b/files/en-us/web/api/window/getcomputedstyle/index.html index 16fe1c4dc68b6e9..a1d6706863ea49b 100644 --- a/files/en-us/web/api/window/getcomputedstyle/index.html +++ b/files/en-us/web/api/window/getcomputedstyle/index.html @@ -144,8 +144,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.getComputedStyle")}}

    See also

    diff --git a/files/en-us/web/api/window/getdefaultcomputedstyle/index.html b/files/en-us/web/api/window/getdefaultcomputedstyle/index.html index 824a0318742df89..6f5b15441ab93b3 100644 --- a/files/en-us/web/api/window/getdefaultcomputedstyle/index.html +++ b/files/en-us/web/api/window/getdefaultcomputedstyle/index.html @@ -88,6 +88,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.getDefaultComputedStyle")}}

    diff --git a/files/en-us/web/api/window/getselection/index.html b/files/en-us/web/api/window/getselection/index.html index 54a85457bd7cb81..abb2be556db6065 100644 --- a/files/en-us/web/api/window/getselection/index.html +++ b/files/en-us/web/api/window/getselection/index.html @@ -79,8 +79,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.getSelection")}}

    See also

    diff --git a/files/en-us/web/api/window/hashchange_event/index.html b/files/en-us/web/api/window/hashchange_event/index.html index 4dc15f28494855d..a22ec2ead6184f0 100644 --- a/files/en-us/web/api/window/hashchange_event/index.html +++ b/files/en-us/web/api/window/hashchange_event/index.html @@ -72,8 +72,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.hashchange_event")}}

    See also

    diff --git a/files/en-us/web/api/window/history/index.html b/files/en-us/web/api/window/history/index.html index c36df119ccf4174..1c69aae743bd6c2 100644 --- a/files/en-us/web/api/window/history/index.html +++ b/files/en-us/web/api/window/history/index.html @@ -53,6 +53,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.history")}}

    diff --git a/files/en-us/web/api/window/home/index.html b/files/en-us/web/api/window/home/index.html index 192cb8ae4085b6a..1d5a88cdbae556a 100644 --- a/files/en-us/web/api/window/home/index.html +++ b/files/en-us/web/api/window/home/index.html @@ -32,6 +32,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.home")}}

    diff --git a/files/en-us/web/api/window/index.html b/files/en-us/web/api/window/index.html index df238daf5cca2dd..0f0614b65019245 100644 --- a/files/en-us/web/api/window/index.html +++ b/files/en-us/web/api/window/index.html @@ -715,6 +715,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window")}}

    diff --git a/files/en-us/web/api/window/innerheight/index.html b/files/en-us/web/api/window/innerheight/index.html index 03ba20b9544c633..0ef835652e79f91 100644 --- a/files/en-us/web/api/window/innerheight/index.html +++ b/files/en-us/web/api/window/innerheight/index.html @@ -85,8 +85,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.innerHeight")}}

    See also

    diff --git a/files/en-us/web/api/window/innerwidth/index.html b/files/en-us/web/api/window/innerwidth/index.html index b0044e7194be711..d4710246935dd99 100644 --- a/files/en-us/web/api/window/innerwidth/index.html +++ b/files/en-us/web/api/window/innerwidth/index.html @@ -69,8 +69,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.innerWidth")}}

    See also

    diff --git a/files/en-us/web/api/window/issecurecontext/index.html b/files/en-us/web/api/window/issecurecontext/index.html index f2038a375725560..c505de7c0574d0e 100644 --- a/files/en-us/web/api/window/issecurecontext/index.html +++ b/files/en-us/web/api/window/issecurecontext/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.isSecureContext")}}

    See also

    diff --git a/files/en-us/web/api/window/languagechange_event/index.html b/files/en-us/web/api/window/languagechange_event/index.html index 486225297837669..8e08f0fe15654a8 100644 --- a/files/en-us/web/api/window/languagechange_event/index.html +++ b/files/en-us/web/api/window/languagechange_event/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.languagechange_event")}}

    See also

    diff --git a/files/en-us/web/api/window/length/index.html b/files/en-us/web/api/window/length/index.html index a5b6064cabc96b6..be0ef8a0b0391bb 100644 --- a/files/en-us/web/api/window/length/index.html +++ b/files/en-us/web/api/window/length/index.html @@ -52,6 +52,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.length")}}

    diff --git a/files/en-us/web/api/window/load_event/index.html b/files/en-us/web/api/window/load_event/index.html index 4a79b2e012ccf66..84de62ef7e23cc0 100644 --- a/files/en-us/web/api/window/load_event/index.html +++ b/files/en-us/web/api/window/load_event/index.html @@ -150,8 +150,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.load_event")}}

    See also

    diff --git a/files/en-us/web/api/window/localstorage/index.html b/files/en-us/web/api/window/localstorage/index.html index 5df3874ba54a0e8..0ef484ddd63c8d9 100644 --- a/files/en-us/web/api/window/localstorage/index.html +++ b/files/en-us/web/api/window/localstorage/index.html @@ -77,8 +77,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.localStorage")}}

    See also

    diff --git a/files/en-us/web/api/window/location/index.html b/files/en-us/web/api/window/location/index.html index 09b266dd6cc409f..e4898a4b35aa372 100644 --- a/files/en-us/web/api/window/location/index.html +++ b/files/en-us/web/api/window/location/index.html @@ -200,8 +200,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.location")}}

    See also

    diff --git a/files/en-us/web/api/window/locationbar/index.html b/files/en-us/web/api/window/locationbar/index.html index 6ff07833868bad9..79ee26d5b6c977e 100644 --- a/files/en-us/web/api/window/locationbar/index.html +++ b/files/en-us/web/api/window/locationbar/index.html @@ -64,8 +64,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.locationbar")}}

    See also

    diff --git a/files/en-us/web/api/window/matchmedia/index.html b/files/en-us/web/api/window/matchmedia/index.html index 50bcded55079a6e..c0e6722abd8646d 100644 --- a/files/en-us/web/api/window/matchmedia/index.html +++ b/files/en-us/web/api/window/matchmedia/index.html @@ -97,8 +97,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.matchMedia")}}

    See also

    diff --git a/files/en-us/web/api/window/menubar/index.html b/files/en-us/web/api/window/menubar/index.html index ebd16efe1341f58..60ef23c029183cf 100644 --- a/files/en-us/web/api/window/menubar/index.html +++ b/files/en-us/web/api/window/menubar/index.html @@ -58,8 +58,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.menubar")}}

    See also

    diff --git a/files/en-us/web/api/window/message_event/index.html b/files/en-us/web/api/window/message_event/index.html index c370a8242d4b5bf..347351fc39fd4b4 100644 --- a/files/en-us/web/api/window/message_event/index.html +++ b/files/en-us/web/api/window/message_event/index.html @@ -70,8 +70,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.message_event")}}

    See also

    diff --git a/files/en-us/web/api/window/messageerror_event/index.html b/files/en-us/web/api/window/messageerror_event/index.html index 212c26e4f424818..60d2f73f5c4bad3 100644 --- a/files/en-us/web/api/window/messageerror_event/index.html +++ b/files/en-us/web/api/window/messageerror_event/index.html @@ -66,8 +66,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.messageerror_event")}}

    See also

    diff --git a/files/en-us/web/api/window/minimize/index.html b/files/en-us/web/api/window/minimize/index.html index 9b0cff3aecd0463..caf5396f151489a 100644 --- a/files/en-us/web/api/window/minimize/index.html +++ b/files/en-us/web/api/window/minimize/index.html @@ -18,6 +18,4 @@

    Browser Compatibility

    - -

    {{Compat("api.Window.minimize")}}

    diff --git a/files/en-us/web/api/window/moveby/index.html b/files/en-us/web/api/window/moveby/index.html index 99d22dd72ccd152..07023224f1d9b0a 100644 --- a/files/en-us/web/api/window/moveby/index.html +++ b/files/en-us/web/api/window/moveby/index.html @@ -57,8 +57,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.moveBy")}}

    As of Firefox 7, websites can no longer move a browser window in the following cases:

    diff --git a/files/en-us/web/api/window/moveto/index.html b/files/en-us/web/api/window/moveto/index.html index 40d64c24c8dbeea..24e2b7f61657441 100644 --- a/files/en-us/web/api/window/moveto/index.html +++ b/files/en-us/web/api/window/moveto/index.html @@ -60,8 +60,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.moveTo")}}

    As of Firefox 7, websites can no longer move a browser window in the following cases:

    diff --git a/files/en-us/web/api/window/mozanimationstarttime/index.html b/files/en-us/web/api/window/mozanimationstarttime/index.html index 2bfec1faf7b8112..15c2d6be9c3ce3a 100644 --- a/files/en-us/web/api/window/mozanimationstarttime/index.html +++ b/files/en-us/web/api/window/mozanimationstarttime/index.html @@ -28,8 +28,6 @@

    Parameters

    Browser compatibility

    - -

    {{Compat("api.Window.mozAnimationStartTime")}}

    See also

    diff --git a/files/en-us/web/api/window/mozinnerscreenx/index.html b/files/en-us/web/api/window/mozinnerscreenx/index.html index fd89660d181fc86..475b4f6c26cd7d3 100644 --- a/files/en-us/web/api/window/mozinnerscreenx/index.html +++ b/files/en-us/web/api/window/mozinnerscreenx/index.html @@ -36,8 +36,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.mozInnerScreenX")}}

    See also

    diff --git a/files/en-us/web/api/window/mozinnerscreeny/index.html b/files/en-us/web/api/window/mozinnerscreeny/index.html index f5d0395457bf8ed..69e14f7888300ab 100644 --- a/files/en-us/web/api/window/mozinnerscreeny/index.html +++ b/files/en-us/web/api/window/mozinnerscreeny/index.html @@ -36,8 +36,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.mozInnerScreenY")}}

    See also

    diff --git a/files/en-us/web/api/window/mozpaintcount/index.html b/files/en-us/web/api/window/mozpaintcount/index.html index 779da8297df401a..696bbf793106217 100644 --- a/files/en-us/web/api/window/mozpaintcount/index.html +++ b/files/en-us/web/api/window/mozpaintcount/index.html @@ -33,6 +33,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.mozPaintCount")}}

    diff --git a/files/en-us/web/api/window/name/index.html b/files/en-us/web/api/window/name/index.html index b847e97f5ad9615..800f6d2725347d2 100644 --- a/files/en-us/web/api/window/name/index.html +++ b/files/en-us/web/api/window/name/index.html @@ -66,6 +66,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.name")}}

    diff --git a/files/en-us/web/api/window/navigator/index.html b/files/en-us/web/api/window/navigator/index.html index 916300fadd0cb48..2ce1a51056e2429 100644 --- a/files/en-us/web/api/window/navigator/index.html +++ b/files/en-us/web/api/window/navigator/index.html @@ -74,6 +74,4 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.navigator")}}

    diff --git a/files/en-us/web/api/window/onappinstalled/index.html b/files/en-us/web/api/window/onappinstalled/index.html index 353078ac3c62c67..9431803833913fc 100644 --- a/files/en-us/web/api/window/onappinstalled/index.html +++ b/files/en-us/web/api/window/onappinstalled/index.html @@ -29,8 +29,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.Window.onappinstalled")}}

    See also

    diff --git a/files/en-us/web/api/window/onbeforeinstallprompt/index.html b/files/en-us/web/api/window/onbeforeinstallprompt/index.html index 7b04c8cd8f0a772..4a800262ee8056f 100644 --- a/files/en-us/web/api/window/onbeforeinstallprompt/index.html +++ b/files/en-us/web/api/window/onbeforeinstallprompt/index.html @@ -37,8 +37,6 @@

    Example

    Browser compatibility

    - -

    {{Compat("api.Window.onbeforeinstallprompt")}}

    See Also

    diff --git a/files/en-us/web/api/window/ondevicelight/index.html b/files/en-us/web/api/window/ondevicelight/index.html index 4bda4e8203323fb..fc0c6b90cfad6b3 100644 --- a/files/en-us/web/api/window/ondevicelight/index.html +++ b/files/en-us/web/api/window/ondevicelight/index.html @@ -21,8 +21,6 @@

    Syntax

    Browser compatibility

    - -

    {{Compat("api.Window.ondevicelight")}}

    See also

    diff --git a/files/en-us/web/api/window/ondevicemotion/index.html b/files/en-us/web/api/window/ondevicemotion/index.html index 0a94203247bc45d..1fd63abbc8261aa 100644 --- a/files/en-us/web/api/window/ondevicemotion/index.html +++ b/files/en-us/web/api/window/ondevicemotion/index.html @@ -42,8 +42,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.ondevicemotion")}}

    See also

    diff --git a/files/en-us/web/api/window/ondeviceorientationabsolute/index.html b/files/en-us/web/api/window/ondeviceorientationabsolute/index.html index 597e65610a2975d..e8d76643472e2c3 100644 --- a/files/en-us/web/api/window/ondeviceorientationabsolute/index.html +++ b/files/en-us/web/api/window/ondeviceorientationabsolute/index.html @@ -26,8 +26,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.ondeviceorientationabsolute")}}

    See also

    diff --git a/files/en-us/web/api/window/ondeviceproximity/index.html b/files/en-us/web/api/window/ondeviceproximity/index.html index 3b4dcd19e50fee0..452fa3d92830d6a 100644 --- a/files/en-us/web/api/window/ondeviceproximity/index.html +++ b/files/en-us/web/api/window/ondeviceproximity/index.html @@ -23,8 +23,6 @@

    Syntax

    Browser compatibility

    - -

    {{Compat("api.Window.ondeviceproximity")}}

    See also

    diff --git a/files/en-us/web/api/window/ongamepadconnected/index.html b/files/en-us/web/api/window/ongamepadconnected/index.html index c546fe100cbb695..d63de11718b09db 100644 --- a/files/en-us/web/api/window/ongamepadconnected/index.html +++ b/files/en-us/web/api/window/ongamepadconnected/index.html @@ -48,8 +48,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.ongamepadconnected")}}

    See also

    diff --git a/files/en-us/web/api/window/ongamepaddisconnected/index.html b/files/en-us/web/api/window/ongamepaddisconnected/index.html index e75a1049a2921cf..eb3b8785c61dd74 100644 --- a/files/en-us/web/api/window/ongamepaddisconnected/index.html +++ b/files/en-us/web/api/window/ongamepaddisconnected/index.html @@ -47,8 +47,6 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.ongamepaddisconnected")}}

    See also

    diff --git a/files/en-us/web/api/window/onuserproximity/index.html b/files/en-us/web/api/window/onuserproximity/index.html index 1604e540b301dbd..e73d73b3ebe6232 100644 --- a/files/en-us/web/api/window/onuserproximity/index.html +++ b/files/en-us/web/api/window/onuserproximity/index.html @@ -20,8 +20,6 @@

    Syntax

    Browser compatibility

    - -

    {{Compat("api.Window.onuserproximity")}}

    See also

    diff --git a/files/en-us/web/api/window/onvrdisplayactivate/index.html b/files/en-us/web/api/window/onvrdisplayactivate/index.html index 47afa4ec869c023..95c1574efd2004f 100644 --- a/files/en-us/web/api/window/onvrdisplayactivate/index.html +++ b/files/en-us/web/api/window/onvrdisplayactivate/index.html @@ -51,12 +51,8 @@

    Specifications

    Browser compatibility

    - -

    {{Compat("api.Window.onvrdisplayactivate")}}

    - -

    See also

      diff --git a/files/en-us/web/api/window/onvrdisplayblur/index.html b/files/en-us/web/api/window/onvrdisplayblur/index.html index a8992e11468bcea..991d2c9ca1635fe 100644 --- a/files/en-us/web/api/window/onvrdisplayblur/index.html +++ b/files/en-us/web/api/window/onvrdisplayblur/index.html @@ -51,8 +51,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.onvrdisplayblur")}}

      See also

      diff --git a/files/en-us/web/api/window/onvrdisplayconnect/index.html b/files/en-us/web/api/window/onvrdisplayconnect/index.html index a6810edd31d1e54..2ea84b66dbb19ca 100644 --- a/files/en-us/web/api/window/onvrdisplayconnect/index.html +++ b/files/en-us/web/api/window/onvrdisplayconnect/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.onvrdisplayconnect")}}

      See also

      diff --git a/files/en-us/web/api/window/onvrdisplaydeactivate/index.html b/files/en-us/web/api/window/onvrdisplaydeactivate/index.html index db5f23b325640ce..1edfc0f4c355aa2 100644 --- a/files/en-us/web/api/window/onvrdisplaydeactivate/index.html +++ b/files/en-us/web/api/window/onvrdisplaydeactivate/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.onvrdisplaydeactivate")}}

      See also

      diff --git a/files/en-us/web/api/window/onvrdisplaydisconnect/index.html b/files/en-us/web/api/window/onvrdisplaydisconnect/index.html index 1b8792526285777..0c9e692e303fec8 100644 --- a/files/en-us/web/api/window/onvrdisplaydisconnect/index.html +++ b/files/en-us/web/api/window/onvrdisplaydisconnect/index.html @@ -48,8 +48,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.onvrdisplaydisconnect")}}

      See also

      diff --git a/files/en-us/web/api/window/onvrdisplayfocus/index.html b/files/en-us/web/api/window/onvrdisplayfocus/index.html index 74a9a3ad4536495..06512becc063b60 100644 --- a/files/en-us/web/api/window/onvrdisplayfocus/index.html +++ b/files/en-us/web/api/window/onvrdisplayfocus/index.html @@ -49,8 +49,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.onvrdisplayfocus")}}

      See also

      diff --git a/files/en-us/web/api/window/onvrdisplaypointerrestricted/index.html b/files/en-us/web/api/window/onvrdisplaypointerrestricted/index.html index 9e4a9f5993d9689..1cc47119aef9c1b 100644 --- a/files/en-us/web/api/window/onvrdisplaypointerrestricted/index.html +++ b/files/en-us/web/api/window/onvrdisplaypointerrestricted/index.html @@ -45,8 +45,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.onvrdisplaypointerrestricted")}}

      See also

      diff --git a/files/en-us/web/api/window/onvrdisplaypointerunrestricted/index.html b/files/en-us/web/api/window/onvrdisplaypointerunrestricted/index.html index 975bbb1ad73b6f7..919b868dcc8b9f2 100644 --- a/files/en-us/web/api/window/onvrdisplaypointerunrestricted/index.html +++ b/files/en-us/web/api/window/onvrdisplaypointerunrestricted/index.html @@ -45,8 +45,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.onvrdisplaypointerunrestricted")}}

      See also

      diff --git a/files/en-us/web/api/window/open/index.html b/files/en-us/web/api/window/open/index.html index 5a9e207ffa68e12..30a5259c0b8028c 100644 --- a/files/en-us/web/api/window/open/index.html +++ b/files/en-us/web/api/window/open/index.html @@ -472,8 +472,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.open")}}

      Notes

      diff --git a/files/en-us/web/api/window/opendialog/index.html b/files/en-us/web/api/window/opendialog/index.html index f94494642708490..2217847106364d4 100644 --- a/files/en-us/web/api/window/opendialog/index.html +++ b/files/en-us/web/api/window/opendialog/index.html @@ -94,8 +94,6 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Window.openDialog")}}

      See also

      diff --git a/files/en-us/web/api/window/opener/index.html b/files/en-us/web/api/window/opener/index.html index 458a5ed3c1326fe..13bf36cf1cdc310 100644 --- a/files/en-us/web/api/window/opener/index.html +++ b/files/en-us/web/api/window/opener/index.html @@ -56,6 +56,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.opener")}}

      diff --git a/files/en-us/web/api/window/orientation/index.html b/files/en-us/web/api/window/orientation/index.html index e00185ea20b6e18..11a1e9ee4b90b54 100644 --- a/files/en-us/web/api/window/orientation/index.html +++ b/files/en-us/web/api/window/orientation/index.html @@ -33,6 +33,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.orientation")}}

      diff --git a/files/en-us/web/api/window/orientationchange_event/index.html b/files/en-us/web/api/window/orientationchange_event/index.html index b92a31c1e373b71..66b4d5557560769 100644 --- a/files/en-us/web/api/window/orientationchange_event/index.html +++ b/files/en-us/web/api/window/orientationchange_event/index.html @@ -68,6 +68,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.orientationchange_event")}}

      diff --git a/files/en-us/web/api/window/outerheight/index.html b/files/en-us/web/api/window/outerheight/index.html index 88cb258b3680ffe..8d9087075420f5e 100644 --- a/files/en-us/web/api/window/outerheight/index.html +++ b/files/en-us/web/api/window/outerheight/index.html @@ -45,8 +45,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.outerHeight")}}

      See also

      diff --git a/files/en-us/web/api/window/outerwidth/index.html b/files/en-us/web/api/window/outerwidth/index.html index 31d8cfe3ab9f29b..9fda50e3534a390 100644 --- a/files/en-us/web/api/window/outerwidth/index.html +++ b/files/en-us/web/api/window/outerwidth/index.html @@ -39,8 +39,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.outerWidth")}}

      See also

      diff --git a/files/en-us/web/api/window/pagehide_event/index.html b/files/en-us/web/api/window/pagehide_event/index.html index cf72c677044dc5b..cf3cc55cc8bebaf 100644 --- a/files/en-us/web/api/window/pagehide_event/index.html +++ b/files/en-us/web/api/window/pagehide_event/index.html @@ -81,8 +81,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.pagehide_event")}}

      See also

      diff --git a/files/en-us/web/api/window/pageshow_event/index.html b/files/en-us/web/api/window/pageshow_event/index.html index 46139b36029fa43..61a2dad70b052f5 100644 --- a/files/en-us/web/api/window/pageshow_event/index.html +++ b/files/en-us/web/api/window/pageshow_event/index.html @@ -115,8 +115,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.pageshow_event")}}

      See also

      diff --git a/files/en-us/web/api/window/pagexoffset/index.html b/files/en-us/web/api/window/pagexoffset/index.html index d12d13ad8dae4cd..254c5394adb34f3 100644 --- a/files/en-us/web/api/window/pagexoffset/index.html +++ b/files/en-us/web/api/window/pagexoffset/index.html @@ -36,8 +36,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.pageXOffset")}}

      See also

      diff --git a/files/en-us/web/api/window/pageyoffset/index.html b/files/en-us/web/api/window/pageyoffset/index.html index 819a4d36496d26b..012fb69d3819a21 100644 --- a/files/en-us/web/api/window/pageyoffset/index.html +++ b/files/en-us/web/api/window/pageyoffset/index.html @@ -156,8 +156,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.pageYOffset")}}

      See also

      diff --git a/files/en-us/web/api/window/parent/index.html b/files/en-us/web/api/window/parent/index.html index 92650304db095cc..8811881948d4edb 100644 --- a/files/en-us/web/api/window/parent/index.html +++ b/files/en-us/web/api/window/parent/index.html @@ -47,8 +47,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.parent")}}

      See also

      diff --git a/files/en-us/web/api/window/paste_event/index.html b/files/en-us/web/api/window/paste_event/index.html index 50dfd628d66b8fd..3479e8e789ccc2a 100644 --- a/files/en-us/web/api/window/paste_event/index.html +++ b/files/en-us/web/api/window/paste_event/index.html @@ -61,8 +61,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.paste_event")}}

      See also

      diff --git a/files/en-us/web/api/window/performance/index.html b/files/en-us/web/api/window/performance/index.html index f86fb10b5bd2f93..6e554f6129880d8 100644 --- a/files/en-us/web/api/window/performance/index.html +++ b/files/en-us/web/api/window/performance/index.html @@ -46,6 +46,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.performance")}}

      diff --git a/files/en-us/web/api/window/personalbar/index.html b/files/en-us/web/api/window/personalbar/index.html index fd062ccd89fc98a..08737caf5f43931 100644 --- a/files/en-us/web/api/window/personalbar/index.html +++ b/files/en-us/web/api/window/personalbar/index.html @@ -73,8 +73,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.personalbar")}}

      See also

      diff --git a/files/en-us/web/api/window/pkcs11/index.html b/files/en-us/web/api/window/pkcs11/index.html index cb7a1932c6efc08..821efc8a996bed5 100644 --- a/files/en-us/web/api/window/pkcs11/index.html +++ b/files/en-us/web/api/window/pkcs11/index.html @@ -44,6 +44,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.pkcs11")}}

      diff --git a/files/en-us/web/api/window/postmessage/index.html b/files/en-us/web/api/window/postmessage/index.html index eb9b76e0a3f0d01..c67464f0ca7beb4 100644 --- a/files/en-us/web/api/window/postmessage/index.html +++ b/files/en-us/web/api/window/postmessage/index.html @@ -192,8 +192,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.postMessage")}}

      See also

      diff --git a/files/en-us/web/api/window/print/index.html b/files/en-us/web/api/window/print/index.html index 0ea5cf4e85a7b6c..6b444ebfc043129 100644 --- a/files/en-us/web/api/window/print/index.html +++ b/files/en-us/web/api/window/print/index.html @@ -38,8 +38,6 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Window.print")}}

      See also

      diff --git a/files/en-us/web/api/window/prompt/index.html b/files/en-us/web/api/window/prompt/index.html index a6175630686a6f1..47f0da7ed621166 100644 --- a/files/en-us/web/api/window/prompt/index.html +++ b/files/en-us/web/api/window/prompt/index.html @@ -81,8 +81,6 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Window.prompt")}}

      See also

      diff --git a/files/en-us/web/api/window/rejectionhandled_event/index.html b/files/en-us/web/api/window/rejectionhandled_event/index.html index c43b04445488a96..b02cb539fb0a581 100644 --- a/files/en-us/web/api/window/rejectionhandled_event/index.html +++ b/files/en-us/web/api/window/rejectionhandled_event/index.html @@ -71,8 +71,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.rejectionhandled_event")}}

      See also

      diff --git a/files/en-us/web/api/window/releaseevents/index.html b/files/en-us/web/api/window/releaseevents/index.html index 242284d70c303d6..9d7670263b8c4b5 100644 --- a/files/en-us/web/api/window/releaseevents/index.html +++ b/files/en-us/web/api/window/releaseevents/index.html @@ -47,6 +47,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Window.releaseEvents")}}

      diff --git a/files/en-us/web/api/window/requestfilesystem/index.html b/files/en-us/web/api/window/requestfilesystem/index.html index 5ddfa362a6bbe43..b8c7a818e6c7637 100644 --- a/files/en-us/web/api/window/requestfilesystem/index.html +++ b/files/en-us/web/api/window/requestfilesystem/index.html @@ -74,8 +74,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.requestFileSystem")}}

      See also

      diff --git a/files/en-us/web/api/window/requestidlecallback/index.html b/files/en-us/web/api/window/requestidlecallback/index.html index 9c5d7c6c537d19c..e4df5fa625a4787 100644 --- a/files/en-us/web/api/window/requestidlecallback/index.html +++ b/files/en-us/web/api/window/requestidlecallback/index.html @@ -62,8 +62,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.requestIdleCallback")}}

      See also

      diff --git a/files/en-us/web/api/window/resizeby/index.html b/files/en-us/web/api/window/resizeby/index.html index b9250fa1efce8f6..7e5aea9f35fac64 100644 --- a/files/en-us/web/api/window/resizeby/index.html +++ b/files/en-us/web/api/window/resizeby/index.html @@ -77,6 +77,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.resizeBy")}}

      diff --git a/files/en-us/web/api/window/resizeto/index.html b/files/en-us/web/api/window/resizeto/index.html index 33389167a2d591c..3fb3806ff78ab37 100644 --- a/files/en-us/web/api/window/resizeto/index.html +++ b/files/en-us/web/api/window/resizeto/index.html @@ -58,8 +58,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.resizeTo")}}

      Note: It's not possible to resize a window or tab that wasn’t created by window.open(). It's also not possible to resize when the window has multiple tabs.

      diff --git a/files/en-us/web/api/window/routeevent/index.html b/files/en-us/web/api/window/routeevent/index.html index 730b46bb45540d3..a5d6c458d0b054c 100644 --- a/files/en-us/web/api/window/routeevent/index.html +++ b/files/en-us/web/api/window/routeevent/index.html @@ -15,8 +15,6 @@

      Browser Compatibility

      - -

      {{Compat("api.Window.routeEvent")}}

       

      diff --git a/files/en-us/web/api/window/screen/index.html b/files/en-us/web/api/window/screen/index.html index dc049ff72f33b1c..99d08d8e43d33cb 100644 --- a/files/en-us/web/api/window/screen/index.html +++ b/files/en-us/web/api/window/screen/index.html @@ -46,6 +46,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.screen")}}

      diff --git a/files/en-us/web/api/window/screenleft/index.html b/files/en-us/web/api/window/screenleft/index.html index f861bfcdf2ff799..695c78e272f6d57 100644 --- a/files/en-us/web/api/window/screenleft/index.html +++ b/files/en-us/web/api/window/screenleft/index.html @@ -83,8 +83,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.screenLeft")}}

      See also

      diff --git a/files/en-us/web/api/window/screentop/index.html b/files/en-us/web/api/window/screentop/index.html index e4508d20603e0fd..e6bb233eb234290 100644 --- a/files/en-us/web/api/window/screentop/index.html +++ b/files/en-us/web/api/window/screentop/index.html @@ -83,8 +83,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.screenTop")}}

      See also

      diff --git a/files/en-us/web/api/window/screenx/index.html b/files/en-us/web/api/window/screenx/index.html index daec2fc49fc1ecc..f75b2325ea78554 100644 --- a/files/en-us/web/api/window/screenx/index.html +++ b/files/en-us/web/api/window/screenx/index.html @@ -85,8 +85,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.screenX")}}

      See also

      diff --git a/files/en-us/web/api/window/screeny/index.html b/files/en-us/web/api/window/screeny/index.html index daf6faa7cc9a4f8..cace859e0582b1e 100644 --- a/files/en-us/web/api/window/screeny/index.html +++ b/files/en-us/web/api/window/screeny/index.html @@ -84,8 +84,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.screenY")}}

      See also

      diff --git a/files/en-us/web/api/window/scroll/index.html b/files/en-us/web/api/window/scroll/index.html index f155a15001b0f99..49e407d10fe25d9 100644 --- a/files/en-us/web/api/window/scroll/index.html +++ b/files/en-us/web/api/window/scroll/index.html @@ -73,8 +73,6 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Window.scroll")}}

      See also

      diff --git a/files/en-us/web/api/window/scrollbars/index.html b/files/en-us/web/api/window/scrollbars/index.html index e534390c6db303c..c77b1b32c261890 100644 --- a/files/en-us/web/api/window/scrollbars/index.html +++ b/files/en-us/web/api/window/scrollbars/index.html @@ -60,8 +60,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.scrollbars")}}

      See also

      diff --git a/files/en-us/web/api/window/scrollby/index.html b/files/en-us/web/api/window/scrollby/index.html index f3cd5b05cd687a4..818fb9be614f048 100644 --- a/files/en-us/web/api/window/scrollby/index.html +++ b/files/en-us/web/api/window/scrollby/index.html @@ -74,6 +74,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Window.scrollBy")}}

      diff --git a/files/en-us/web/api/window/scrollbylines/index.html b/files/en-us/web/api/window/scrollbylines/index.html index 1456c360413d57f..c39a84963874be2 100644 --- a/files/en-us/web/api/window/scrollbylines/index.html +++ b/files/en-us/web/api/window/scrollbylines/index.html @@ -39,8 +39,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.scrollByLines")}}

      See also

      diff --git a/files/en-us/web/api/window/scrollbypages/index.html b/files/en-us/web/api/window/scrollbypages/index.html index 9456dcf6e9c92ca..eb2c14d2dc4d698 100644 --- a/files/en-us/web/api/window/scrollbypages/index.html +++ b/files/en-us/web/api/window/scrollbypages/index.html @@ -41,8 +41,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.scrollByPages")}}

      See also

      diff --git a/files/en-us/web/api/window/scrollmaxx/index.html b/files/en-us/web/api/window/scrollmaxx/index.html index 2d87f005396f5a0..ca75dde26f9073f 100644 --- a/files/en-us/web/api/window/scrollmaxx/index.html +++ b/files/en-us/web/api/window/scrollmaxx/index.html @@ -40,6 +40,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.scrollMaxX")}}

      diff --git a/files/en-us/web/api/window/scrollmaxy/index.html b/files/en-us/web/api/window/scrollmaxy/index.html index 65f8e4ae4506703..91680e073e14fda 100644 --- a/files/en-us/web/api/window/scrollmaxy/index.html +++ b/files/en-us/web/api/window/scrollmaxy/index.html @@ -44,6 +44,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.scrollMaxY")}}

      diff --git a/files/en-us/web/api/window/scrollto/index.html b/files/en-us/web/api/window/scrollto/index.html index be78a7cc21aa9c2..08cbae9baf36235 100644 --- a/files/en-us/web/api/window/scrollto/index.html +++ b/files/en-us/web/api/window/scrollto/index.html @@ -71,6 +71,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.scrollTo")}}

      diff --git a/files/en-us/web/api/window/scrollx/index.html b/files/en-us/web/api/window/scrollx/index.html index 64c75433ab7fafa..250f9abf9ba73a7 100644 --- a/files/en-us/web/api/window/scrollx/index.html +++ b/files/en-us/web/api/window/scrollx/index.html @@ -73,8 +73,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.scrollX")}}

      See also

      diff --git a/files/en-us/web/api/window/scrolly/index.html b/files/en-us/web/api/window/scrolly/index.html index 06d241fb233fbeb..3efe1385678ffd6 100644 --- a/files/en-us/web/api/window/scrolly/index.html +++ b/files/en-us/web/api/window/scrolly/index.html @@ -75,8 +75,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.scrollY")}}

      See also

      diff --git a/files/en-us/web/api/window/self/index.html b/files/en-us/web/api/window/self/index.html index b7976f358633311..e767686ac80a886 100644 --- a/files/en-us/web/api/window/self/index.html +++ b/files/en-us/web/api/window/self/index.html @@ -60,8 +60,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.self")}}

      See also

      diff --git a/files/en-us/web/api/window/sessionstorage/index.html b/files/en-us/web/api/window/sessionstorage/index.html index 02a3583221d3a0f..a7ae20fafebf3d1 100644 --- a/files/en-us/web/api/window/sessionstorage/index.html +++ b/files/en-us/web/api/window/sessionstorage/index.html @@ -101,8 +101,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.sessionStorage")}}

      See also

      diff --git a/files/en-us/web/api/window/setcursor/index.html b/files/en-us/web/api/window/setcursor/index.html index 0c15c255ec90af3..25250f421ba236e 100644 --- a/files/en-us/web/api/window/setcursor/index.html +++ b/files/en-us/web/api/window/setcursor/index.html @@ -31,6 +31,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Window.setCursor")}}

      diff --git a/files/en-us/web/api/window/setimmediate/index.html b/files/en-us/web/api/window/setimmediate/index.html index a9108d1df732913..78079bc9ead1544 100644 --- a/files/en-us/web/api/window/setimmediate/index.html +++ b/files/en-us/web/api/window/setimmediate/index.html @@ -67,8 +67,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.setImmediate")}}

      See also

      diff --git a/files/en-us/web/api/window/showdirectorypicker/index.html b/files/en-us/web/api/window/showdirectorypicker/index.html index 1d55d5936fd5ec1..ac8949ce3c22c5b 100644 --- a/files/en-us/web/api/window/showdirectorypicker/index.html +++ b/files/en-us/web/api/window/showdirectorypicker/index.html @@ -62,8 +62,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.showDirectoryPicker")}}

      See also

      diff --git a/files/en-us/web/api/window/showmodaldialog/index.html b/files/en-us/web/api/window/showmodaldialog/index.html index 4e73fb0efdddf15..1bd999a93e9d740 100644 --- a/files/en-us/web/api/window/showmodaldialog/index.html +++ b/files/en-us/web/api/window/showmodaldialog/index.html @@ -85,8 +85,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.showModalDialog")}}

      See also

      diff --git a/files/en-us/web/api/window/showopenfilepicker/index.html b/files/en-us/web/api/window/showopenfilepicker/index.html index d3f20bca35feeb7..6f3d55b8f4a1693 100644 --- a/files/en-us/web/api/window/showopenfilepicker/index.html +++ b/files/en-us/web/api/window/showopenfilepicker/index.html @@ -93,8 +93,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.showOpenFilePicker")}}

      See also

      diff --git a/files/en-us/web/api/window/showsavefilepicker/index.html b/files/en-us/web/api/window/showsavefilepicker/index.html index 49badb60068c762..30e0ba281fcd032 100644 --- a/files/en-us/web/api/window/showsavefilepicker/index.html +++ b/files/en-us/web/api/window/showsavefilepicker/index.html @@ -78,8 +78,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.showSaveFilePicker")}}

      See also

      diff --git a/files/en-us/web/api/window/sidebar/index.html b/files/en-us/web/api/window/sidebar/index.html index 1fd5b5916847d21..e4927068580f5f3 100644 --- a/files/en-us/web/api/window/sidebar/index.html +++ b/files/en-us/web/api/window/sidebar/index.html @@ -60,6 +60,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.sidebar")}}

      diff --git a/files/en-us/web/api/window/sizetocontent/index.html b/files/en-us/web/api/window/sizetocontent/index.html index abdbdc94825f805..8de59f805513a61 100644 --- a/files/en-us/web/api/window/sizetocontent/index.html +++ b/files/en-us/web/api/window/sizetocontent/index.html @@ -32,7 +32,6 @@

      Browser compatibility

      -

      {{Compat("api.Window.sizeToContent")}}

      diff --git a/files/en-us/web/api/window/speechsynthesis/index.html b/files/en-us/web/api/window/speechsynthesis/index.html index cf3702ba02551aa..b6b6738912b361d 100644 --- a/files/en-us/web/api/window/speechsynthesis/index.html +++ b/files/en-us/web/api/window/speechsynthesis/index.html @@ -34,7 +34,6 @@

      Examples

      var inputTxt = document.querySelector('input'); var voiceSelect = document.querySelector('select'); - function populateVoiceList() { voices = synth.getVoices(); @@ -90,8 +89,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.speechSynthesis")}}

      See also

      diff --git a/files/en-us/web/api/window/status/index.html b/files/en-us/web/api/window/status/index.html index 695a43459ba7360..8ff2c184a501cba 100644 --- a/files/en-us/web/api/window/status/index.html +++ b/files/en-us/web/api/window/status/index.html @@ -40,6 +40,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.status")}}

      diff --git a/files/en-us/web/api/window/statusbar/index.html b/files/en-us/web/api/window/statusbar/index.html index 9bce8bbf4bf3179..3d15317ee4d7722 100644 --- a/files/en-us/web/api/window/statusbar/index.html +++ b/files/en-us/web/api/window/statusbar/index.html @@ -72,8 +72,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.statusbar")}}

      See also

      diff --git a/files/en-us/web/api/window/stop/index.html b/files/en-us/web/api/window/stop/index.html index deee2edd85afbaa..ce9d486dcb7bc35 100644 --- a/files/en-us/web/api/window/stop/index.html +++ b/files/en-us/web/api/window/stop/index.html @@ -52,6 +52,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Window.stop")}}

      diff --git a/files/en-us/web/api/window/toolbar/index.html b/files/en-us/web/api/window/toolbar/index.html index 288384c8cdb0a6c..acf0317b7ea891f 100644 --- a/files/en-us/web/api/window/toolbar/index.html +++ b/files/en-us/web/api/window/toolbar/index.html @@ -72,6 +72,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.toolbar")}}

      diff --git a/files/en-us/web/api/window/top/index.html b/files/en-us/web/api/window/top/index.html index 3edde4fc1db7d09..961796d3e224952 100644 --- a/files/en-us/web/api/window/top/index.html +++ b/files/en-us/web/api/window/top/index.html @@ -51,6 +51,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.top")}}

      diff --git a/files/en-us/web/api/window/transitioncancel_event/index.html b/files/en-us/web/api/window/transitioncancel_event/index.html index 7d31e8c566e87c1..3083611d311cb41 100644 --- a/files/en-us/web/api/window/transitioncancel_event/index.html +++ b/files/en-us/web/api/window/transitioncancel_event/index.html @@ -76,8 +76,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.transitioncancel_event")}}

      See also

      diff --git a/files/en-us/web/api/window/transitionend_event/index.html b/files/en-us/web/api/window/transitionend_event/index.html index 059abab15dd8ce1..9f80b98d09be29d 100644 --- a/files/en-us/web/api/window/transitionend_event/index.html +++ b/files/en-us/web/api/window/transitionend_event/index.html @@ -75,8 +75,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.transitionend_event")}}

      See also

      diff --git a/files/en-us/web/api/window/transitionrun_event/index.html b/files/en-us/web/api/window/transitionrun_event/index.html index 46c07c0c5d5f843..8fdb7c434273dfc 100644 --- a/files/en-us/web/api/window/transitionrun_event/index.html +++ b/files/en-us/web/api/window/transitionrun_event/index.html @@ -73,8 +73,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.transitionrun_event")}}

      See also

      diff --git a/files/en-us/web/api/window/transitionstart_event/index.html b/files/en-us/web/api/window/transitionstart_event/index.html index 9ef58126e0c4b80..8f0ea8765bf7759 100644 --- a/files/en-us/web/api/window/transitionstart_event/index.html +++ b/files/en-us/web/api/window/transitionstart_event/index.html @@ -73,8 +73,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.transitionstart_event")}}

      See also

      diff --git a/files/en-us/web/api/window/unhandledrejection_event/index.html b/files/en-us/web/api/window/unhandledrejection_event/index.html index c9caf822fbba4a8..810a5817ea9a16d 100644 --- a/files/en-us/web/api/window/unhandledrejection_event/index.html +++ b/files/en-us/web/api/window/unhandledrejection_event/index.html @@ -107,8 +107,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.unhandledrejection_event")}}

      See also

      diff --git a/files/en-us/web/api/window/unload_event/index.html b/files/en-us/web/api/window/unload_event/index.html index 2801a75c16ebcf0..42ff67e8efcc5ef 100644 --- a/files/en-us/web/api/window/unload_event/index.html +++ b/files/en-us/web/api/window/unload_event/index.html @@ -117,8 +117,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.unload_event")}}

      See also

      diff --git a/files/en-us/web/api/window/updatecommands/index.html b/files/en-us/web/api/window/updatecommands/index.html index c177ed6dc6aa7fb..f1e13375ddfb0b3 100644 --- a/files/en-us/web/api/window/updatecommands/index.html +++ b/files/en-us/web/api/window/updatecommands/index.html @@ -38,6 +38,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.Window.updateCommands")}}

      diff --git a/files/en-us/web/api/window/visualviewport/index.html b/files/en-us/web/api/window/visualviewport/index.html index 75e7794af708cfe..67f4d7949b8fc39 100644 --- a/files/en-us/web/api/window/visualviewport/index.html +++ b/files/en-us/web/api/window/visualviewport/index.html @@ -41,6 +41,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.visualViewport")}}

      diff --git a/files/en-us/web/api/window/vrdisplayactivate_event/index.html b/files/en-us/web/api/window/vrdisplayactivate_event/index.html index 11c1fec22208e99..7b2ddcfe1418109 100644 --- a/files/en-us/web/api/window/vrdisplayactivate_event/index.html +++ b/files/en-us/web/api/window/vrdisplayactivate_event/index.html @@ -70,8 +70,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.vrdisplayactivate_event")}}

      See also

      diff --git a/files/en-us/web/api/window/vrdisplayblur_event/index.html b/files/en-us/web/api/window/vrdisplayblur_event/index.html index dfd5beb2df373c5..c8a85b47dd3905d 100644 --- a/files/en-us/web/api/window/vrdisplayblur_event/index.html +++ b/files/en-us/web/api/window/vrdisplayblur_event/index.html @@ -71,8 +71,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.vrdisplayblur_event")}}

      See also

      diff --git a/files/en-us/web/api/window/vrdisplayconnect_event/index.html b/files/en-us/web/api/window/vrdisplayconnect_event/index.html index 6a9374eab5ed850..e2cb22af0389790 100644 --- a/files/en-us/web/api/window/vrdisplayconnect_event/index.html +++ b/files/en-us/web/api/window/vrdisplayconnect_event/index.html @@ -70,8 +70,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.vrdisplayconnect_event")}}

      See also

      diff --git a/files/en-us/web/api/window/vrdisplaydeactivate_event/index.html b/files/en-us/web/api/window/vrdisplaydeactivate_event/index.html index 0aad879b909b4ec..8dc625dafaab1df 100644 --- a/files/en-us/web/api/window/vrdisplaydeactivate_event/index.html +++ b/files/en-us/web/api/window/vrdisplaydeactivate_event/index.html @@ -72,8 +72,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.vrdisplaydeactivate_event")}}

      See also

      diff --git a/files/en-us/web/api/window/vrdisplaydisconnect_event/index.html b/files/en-us/web/api/window/vrdisplaydisconnect_event/index.html index a2a9d6f4de33f87..6aced20f71ea011 100644 --- a/files/en-us/web/api/window/vrdisplaydisconnect_event/index.html +++ b/files/en-us/web/api/window/vrdisplaydisconnect_event/index.html @@ -70,8 +70,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.vrdisplaydisconnect_event")}}

      See also

      diff --git a/files/en-us/web/api/window/vrdisplayfocus_event/index.html b/files/en-us/web/api/window/vrdisplayfocus_event/index.html index c71fafc9d13b5fc..d2f8b95ec4de570 100644 --- a/files/en-us/web/api/window/vrdisplayfocus_event/index.html +++ b/files/en-us/web/api/window/vrdisplayfocus_event/index.html @@ -70,8 +70,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.vrdisplayfocus_event")}}

      See also

      diff --git a/files/en-us/web/api/window/vrdisplaypointerrestricted_event/index.html b/files/en-us/web/api/window/vrdisplaypointerrestricted_event/index.html index 4525cc349e882e0..0121cf6d92933fe 100644 --- a/files/en-us/web/api/window/vrdisplaypointerrestricted_event/index.html +++ b/files/en-us/web/api/window/vrdisplaypointerrestricted_event/index.html @@ -68,8 +68,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.vrdisplaypointerrestricted_event")}}

      See also

      diff --git a/files/en-us/web/api/window/vrdisplaypointerunrestricted_event/index.html b/files/en-us/web/api/window/vrdisplaypointerunrestricted_event/index.html index d597d8cb2b067b0..8264164f705508f 100644 --- a/files/en-us/web/api/window/vrdisplaypointerunrestricted_event/index.html +++ b/files/en-us/web/api/window/vrdisplaypointerunrestricted_event/index.html @@ -68,8 +68,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.vrdisplaypointerunrestricted_event")}}

      See also

      diff --git a/files/en-us/web/api/window/vrdisplaypresentchange_event/index.html b/files/en-us/web/api/window/vrdisplaypresentchange_event/index.html index c054b20d4d4eada..3b377be1991e730 100644 --- a/files/en-us/web/api/window/vrdisplaypresentchange_event/index.html +++ b/files/en-us/web/api/window/vrdisplaypresentchange_event/index.html @@ -78,8 +78,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.vrdisplaypresentchange_event")}}

      See also

      diff --git a/files/en-us/web/api/window/window/index.html b/files/en-us/web/api/window/window/index.html index 22ff3f3ea165aab..47610e1e491c60e 100644 --- a/files/en-us/web/api/window/window/index.html +++ b/files/en-us/web/api/window/window/index.html @@ -71,6 +71,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Window.window")}}

      diff --git a/files/en-us/web/api/windowclient/focus/index.html b/files/en-us/web/api/windowclient/focus/index.html index 50f80b284db81b6..5712d9816d967f3 100644 --- a/files/en-us/web/api/windowclient/focus/index.html +++ b/files/en-us/web/api/windowclient/focus/index.html @@ -71,6 +71,5 @@

      Browser compatibility

      -

      {{Compat("api.WindowClient.focus")}}

      diff --git a/files/en-us/web/api/windowclient/focused/index.html b/files/en-us/web/api/windowclient/focused/index.html index 0ae4522f99f0d88..118b36cae508be0 100644 --- a/files/en-us/web/api/windowclient/focused/index.html +++ b/files/en-us/web/api/windowclient/focused/index.html @@ -68,6 +68,5 @@

      Browser compatibility

      -

      {{Compat("api.WindowClient.focused")}}

      diff --git a/files/en-us/web/api/windowclient/index.html b/files/en-us/web/api/windowclient/index.html index eb8086bf5763b2b..65e642a165e501b 100644 --- a/files/en-us/web/api/windowclient/index.html +++ b/files/en-us/web/api/windowclient/index.html @@ -81,7 +81,6 @@

      Browser compatibility

      -

      {{Compat("api.WindowClient")}}

      diff --git a/files/en-us/web/api/windowclient/navigate/index.html b/files/en-us/web/api/windowclient/navigate/index.html index f18fb44242cd6d8..c2a718589a5162b 100644 --- a/files/en-us/web/api/windowclient/navigate/index.html +++ b/files/en-us/web/api/windowclient/navigate/index.html @@ -53,6 +53,5 @@

      Browser compatibility

      -

      {{Compat("api.WindowClient.navigate")}}

      diff --git a/files/en-us/web/api/windowclient/visibilitystate/index.html b/files/en-us/web/api/windowclient/visibilitystate/index.html index 10067445eaf7ab0..7e64985ba437de1 100644 --- a/files/en-us/web/api/windowclient/visibilitystate/index.html +++ b/files/en-us/web/api/windowclient/visibilitystate/index.html @@ -64,6 +64,5 @@

      Browser compatibility

      -

      {{Compat("api.WindowClient.visibilityState")}}

      diff --git a/files/en-us/web/api/windoweventhandlers/index.html b/files/en-us/web/api/windoweventhandlers/index.html index 02c2650367ae3c9..108e2a702c51299 100644 --- a/files/en-us/web/api/windoweventhandlers/index.html +++ b/files/en-us/web/api/windoweventhandlers/index.html @@ -91,8 +91,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowEventHandlers")}}

      See also

      diff --git a/files/en-us/web/api/windoweventhandlers/onafterprint/index.html b/files/en-us/web/api/windoweventhandlers/onafterprint/index.html index ed89f00513432f5..a70c0b63f4adef3 100644 --- a/files/en-us/web/api/windoweventhandlers/onafterprint/index.html +++ b/files/en-us/web/api/windoweventhandlers/onafterprint/index.html @@ -40,8 +40,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowEventHandlers.onafterprint")}}

      See also

      diff --git a/files/en-us/web/api/windoweventhandlers/onbeforeprint/index.html b/files/en-us/web/api/windoweventhandlers/onbeforeprint/index.html index c5735f5073c94e8..7032506d90ee9f8 100644 --- a/files/en-us/web/api/windoweventhandlers/onbeforeprint/index.html +++ b/files/en-us/web/api/windoweventhandlers/onbeforeprint/index.html @@ -54,8 +54,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowEventHandlers.onbeforeprint")}}

      See also

      diff --git a/files/en-us/web/api/windoweventhandlers/onbeforeunload/index.html b/files/en-us/web/api/windoweventhandlers/onbeforeunload/index.html index 3471b2fd763207f..e86b91053c632e2 100644 --- a/files/en-us/web/api/windoweventhandlers/onbeforeunload/index.html +++ b/files/en-us/web/api/windoweventhandlers/onbeforeunload/index.html @@ -86,8 +86,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowEventHandlers.onbeforeunload")}}

      The HTML specification states that authors should use the {{domxref("Event.preventDefault()")}} method instead of using {{domxref("Event.returnValue")}} to prompt the user. However, this is not yet supported by all browsers.

      diff --git a/files/en-us/web/api/windoweventhandlers/onhashchange/index.html b/files/en-us/web/api/windoweventhandlers/onhashchange/index.html index 2a23a0b83a9ce2d..acb636791292e25 100644 --- a/files/en-us/web/api/windoweventhandlers/onhashchange/index.html +++ b/files/en-us/web/api/windoweventhandlers/onhashchange/index.html @@ -145,8 +145,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowEventHandlers.onhashchange")}}

      See also

      diff --git a/files/en-us/web/api/windoweventhandlers/onlanguagechange/index.html b/files/en-us/web/api/windoweventhandlers/onlanguagechange/index.html index 16a5942767bcec4..e22b3dc5a8e5686 100644 --- a/files/en-us/web/api/windoweventhandlers/onlanguagechange/index.html +++ b/files/en-us/web/api/windoweventhandlers/onlanguagechange/index.html @@ -54,8 +54,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowEventHandlers.onlanguagechange")}}

      See also

      diff --git a/files/en-us/web/api/windoweventhandlers/onmessage/index.html b/files/en-us/web/api/windoweventhandlers/onmessage/index.html index 9462b127b22491b..9af0a90de745f57 100644 --- a/files/en-us/web/api/windoweventhandlers/onmessage/index.html +++ b/files/en-us/web/api/windoweventhandlers/onmessage/index.html @@ -42,6 +42,5 @@

      Browser compatibility

      -

      {{Compat("api.WindowEventHandlers.onmessage")}}

      diff --git a/files/en-us/web/api/windoweventhandlers/onmessageerror/index.html b/files/en-us/web/api/windoweventhandlers/onmessageerror/index.html index c73096c67033c9e..cb382e3582accd9 100644 --- a/files/en-us/web/api/windoweventhandlers/onmessageerror/index.html +++ b/files/en-us/web/api/windoweventhandlers/onmessageerror/index.html @@ -41,7 +41,6 @@

      Browser compatibility

      -

      {{Compat("api.WindowEventHandlers.onmessageerror")}}

      diff --git a/files/en-us/web/api/windoweventhandlers/onpopstate/index.html b/files/en-us/web/api/windoweventhandlers/onpopstate/index.html index d82f6b55f91efe5..ad4221b9e967f9e 100644 --- a/files/en-us/web/api/windoweventhandlers/onpopstate/index.html +++ b/files/en-us/web/api/windoweventhandlers/onpopstate/index.html @@ -69,8 +69,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowEventHandlers.onpopstate")}}

      See also

      diff --git a/files/en-us/web/api/windoweventhandlers/onrejectionhandled/index.html b/files/en-us/web/api/windoweventhandlers/onrejectionhandled/index.html index 45d074005a1a135..8e262dc895f1580 100644 --- a/files/en-us/web/api/windoweventhandlers/onrejectionhandled/index.html +++ b/files/en-us/web/api/windoweventhandlers/onrejectionhandled/index.html @@ -47,6 +47,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowEventHandlers.onrejectionhandled")}}

      diff --git a/files/en-us/web/api/windoweventhandlers/onstorage/index.html b/files/en-us/web/api/windoweventhandlers/onstorage/index.html index 59671d6c324453b..78e121c24dc998e 100644 --- a/files/en-us/web/api/windoweventhandlers/onstorage/index.html +++ b/files/en-us/web/api/windoweventhandlers/onstorage/index.html @@ -52,8 +52,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowEventHandlers.onstorage")}}

      See also

      diff --git a/files/en-us/web/api/windoweventhandlers/onunhandledrejection/index.html b/files/en-us/web/api/windoweventhandlers/onunhandledrejection/index.html index 0c221524b9c3078..23b82053a326bcb 100644 --- a/files/en-us/web/api/windoweventhandlers/onunhandledrejection/index.html +++ b/files/en-us/web/api/windoweventhandlers/onunhandledrejection/index.html @@ -51,6 +51,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowEventHandlers.onunhandledrejection")}}

      diff --git a/files/en-us/web/api/windoweventhandlers/onunload/index.html b/files/en-us/web/api/windoweventhandlers/onunload/index.html index c2e67726a754ae6..913b1008e871c2c 100644 --- a/files/en-us/web/api/windoweventhandlers/onunload/index.html +++ b/files/en-us/web/api/windoweventhandlers/onunload/index.html @@ -60,8 +60,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowEventHandlers.onunload")}}

      In Firefox 1.5, using this event handler in your page prevents the browser from caching the page in the in-memory bfcache. See Using Firefox 1.5 caching for details.

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/atob/index.html b/files/en-us/web/api/windoworworkerglobalscope/atob/index.html index bb46f38226fdd18..169d9ad6a460733 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/atob/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/atob/index.html @@ -79,7 +79,6 @@

      Browser compatibility

      -

      {{Compat("api.WindowOrWorkerGlobalScope.atob")}}

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/btoa/index.html b/files/en-us/web/api/windoworworkerglobalscope/btoa/index.html index aa17a03caff1bce..4027c84e997abcf 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/btoa/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/btoa/index.html @@ -133,7 +133,6 @@

      Browser compatibility

      -

      {{Compat("api.WindowOrWorkerGlobalScope.btoa")}}

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/caches/index.html b/files/en-us/web/api/windoworworkerglobalscope/caches/index.html index bcfe312f0e2a8f0..8f83aea6151e971 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/caches/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/caches/index.html @@ -72,8 +72,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowOrWorkerGlobalScope.caches")}}

      See also

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/clearinterval/index.html b/files/en-us/web/api/windoworworkerglobalscope/clearinterval/index.html index 7291704b1b3e128..d69fa62cba6c319 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/clearinterval/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/clearinterval/index.html @@ -62,8 +62,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowOrWorkerGlobalScope.clearInterval")}}

      See also

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/cleartimeout/index.html b/files/en-us/web/api/windoworworkerglobalscope/cleartimeout/index.html index 342ab81250aaa6c..38d7aa3b22acb86 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/cleartimeout/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/cleartimeout/index.html @@ -84,8 +84,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowOrWorkerGlobalScope.clearTimeout")}}

      See also

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/createimagebitmap/index.html b/files/en-us/web/api/windoworworkerglobalscope/createimagebitmap/index.html index 02e7f8874da26e5..1947c2a79199002 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/createimagebitmap/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/createimagebitmap/index.html @@ -95,8 +95,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowOrWorkerGlobalScope.createImageBitmap")}}

      See also

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/crossoriginisolated/index.html b/files/en-us/web/api/windoworworkerglobalscope/crossoriginisolated/index.html index 48568baadf40413..ee1041e8b4f0ccb 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/crossoriginisolated/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/crossoriginisolated/index.html @@ -52,8 +52,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowOrWorkerGlobalScope.crossOriginIsolated")}}

      See also

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/fetch/index.html b/files/en-us/web/api/windoworworkerglobalscope/fetch/index.html index cd5332dbe3f7af2..c948af40d8346ea 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/fetch/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/fetch/index.html @@ -177,8 +177,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowOrWorkerGlobalScope.fetch")}}

      See also

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/index.html b/files/en-us/web/api/windoworworkerglobalscope/index.html index ded39b9a207d267..ee198aed2cfbc03 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/index.html @@ -83,8 +83,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowOrWorkerGlobalScope")}}

      See also

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/indexeddb/index.html b/files/en-us/web/api/windoworworkerglobalscope/indexeddb/index.html index 701788a767d5d55..3f28721e6e6c6b2 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/indexeddb/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/indexeddb/index.html @@ -61,7 +61,6 @@

      Browser compatibility

      -

      {{Compat("api.WindowOrWorkerGlobalScope.indexedDB")}}

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/issecurecontext/index.html b/files/en-us/web/api/windoworworkerglobalscope/issecurecontext/index.html index b46b117545ce2e9..0ebf6503bb444da 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/issecurecontext/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/issecurecontext/index.html @@ -43,8 +43,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowOrWorkerGlobalScope.isSecureContext")}}

      See also

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/origin/index.html b/files/en-us/web/api/windoworworkerglobalscope/origin/index.html index 33709c62ba1cf06..fbe7c917b8fdfde 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/origin/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/origin/index.html @@ -54,6 +54,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowOrWorkerGlobalScope.origin")}}

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/setinterval/index.html b/files/en-us/web/api/windoworworkerglobalscope/setinterval/index.html index 4284a4b09c3ae7e..782dbf31b43b8eb 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/setinterval/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/setinterval/index.html @@ -626,7 +626,6 @@

      Browser compatibility

      -

      {{Compat("api.WindowOrWorkerGlobalScope.setInterval")}}

      diff --git a/files/en-us/web/api/windoworworkerglobalscope/settimeout/index.html b/files/en-us/web/api/windoworworkerglobalscope/settimeout/index.html index 8dece42a73c11d9..7f1ef5dae0ca66e 100644 --- a/files/en-us/web/api/windoworworkerglobalscope/settimeout/index.html +++ b/files/en-us/web/api/windoworworkerglobalscope/settimeout/index.html @@ -404,8 +404,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WindowOrWorkerGlobalScope.setTimeout")}}

      See also

      diff --git a/files/en-us/web/api/worker/index.html b/files/en-us/web/api/worker/index.html index f81698839b5edb1..3c3b04780970add 100644 --- a/files/en-us/web/api/worker/index.html +++ b/files/en-us/web/api/worker/index.html @@ -41,7 +41,6 @@

      Event handlers

      Is an {{domxref("EventHandler")}} representing the code to be called when the {{event("messageerror")}} event is raised.
      -

      Methods

      Inherits methods from its parent, {{domxref("EventTarget")}}, and implements methods from {{domxref("AbstractWorker")}}.

      @@ -109,8 +108,6 @@

      Browser compatibility

      Support varies for different types of workers. See each worker type's page for specifics.

      - -

      {{Compat("api.Worker")}}

      Cross-origin worker error behaviour

      diff --git a/files/en-us/web/api/worker/message_event/index.html b/files/en-us/web/api/worker/message_event/index.html index 1d7b7718cfb84ad..19a06c78050d294 100644 --- a/files/en-us/web/api/worker/message_event/index.html +++ b/files/en-us/web/api/worker/message_event/index.html @@ -70,8 +70,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Worker.message_event")}}

      See also

      diff --git a/files/en-us/web/api/worker/messageerror_event/index.html b/files/en-us/web/api/worker/messageerror_event/index.html index 2c4418bbee9cca6..8ee4cb97e86367e 100644 --- a/files/en-us/web/api/worker/messageerror_event/index.html +++ b/files/en-us/web/api/worker/messageerror_event/index.html @@ -76,8 +76,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Worker.messageerror_event")}}

      See also

      diff --git a/files/en-us/web/api/worker/onmessage/index.html b/files/en-us/web/api/worker/onmessage/index.html index 7f00f6dd3cc7e44..dad89b207908ccc 100644 --- a/files/en-us/web/api/worker/onmessage/index.html +++ b/files/en-us/web/api/worker/onmessage/index.html @@ -72,8 +72,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Worker.onmessage")}}

      See also

      diff --git a/files/en-us/web/api/worker/onmessageerror/index.html b/files/en-us/web/api/worker/onmessageerror/index.html index 96cd01b9eb1862c..7be13f33b1b9d3b 100644 --- a/files/en-us/web/api/worker/onmessageerror/index.html +++ b/files/en-us/web/api/worker/onmessageerror/index.html @@ -38,8 +38,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Worker.onmessageerror")}}

      See also

      diff --git a/files/en-us/web/api/worker/postmessage/index.html b/files/en-us/web/api/worker/postmessage/index.html index 89059d2b56c4eef..31ed2b87696b901 100644 --- a/files/en-us/web/api/worker/postmessage/index.html +++ b/files/en-us/web/api/worker/postmessage/index.html @@ -151,8 +151,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Worker.postMessage")}}

      [1] Internet Explorer does not support {{domxref("Transferable")}} objects.

      diff --git a/files/en-us/web/api/worker/terminate/index.html b/files/en-us/web/api/worker/terminate/index.html index 7f892f2350a44c4..918730ed40d968b 100644 --- a/files/en-us/web/api/worker/terminate/index.html +++ b/files/en-us/web/api/worker/terminate/index.html @@ -54,8 +54,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Worker.terminate")}}

      See also

      diff --git a/files/en-us/web/api/worker/worker/index.html b/files/en-us/web/api/worker/worker/index.html index 5f50921cec839d2..b920164ee4ca50f 100644 --- a/files/en-us/web/api/worker/worker/index.html +++ b/files/en-us/web/api/worker/worker/index.html @@ -75,8 +75,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.Worker.Worker")}}

      diff --git a/files/en-us/web/api/workerglobalscope/close/index.html b/files/en-us/web/api/workerglobalscope/close/index.html index 602a139b02af7d0..7a03401a4cbdc2b 100644 --- a/files/en-us/web/api/workerglobalscope/close/index.html +++ b/files/en-us/web/api/workerglobalscope/close/index.html @@ -33,8 +33,6 @@

      Example

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.close")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/console/index.html b/files/en-us/web/api/workerglobalscope/console/index.html index 48c7df1be1ec4e3..1c2a95161fbd14b 100644 --- a/files/en-us/web/api/workerglobalscope/console/index.html +++ b/files/en-us/web/api/workerglobalscope/console/index.html @@ -38,8 +38,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.console")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/dump/index.html b/files/en-us/web/api/workerglobalscope/dump/index.html index 2f12b789bc9d4b3..13141e6a08bdfbe 100644 --- a/files/en-us/web/api/workerglobalscope/dump/index.html +++ b/files/en-us/web/api/workerglobalscope/dump/index.html @@ -45,8 +45,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.dump")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/importscripts/index.html b/files/en-us/web/api/workerglobalscope/importscripts/index.html index 6a11de74092fc42..e10ce25e9716f7f 100644 --- a/files/en-us/web/api/workerglobalscope/importscripts/index.html +++ b/files/en-us/web/api/workerglobalscope/importscripts/index.html @@ -60,8 +60,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.importScripts")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/index.html b/files/en-us/web/api/workerglobalscope/index.html index 90711994b532619..9c6fddb368543cd 100644 --- a/files/en-us/web/api/workerglobalscope/index.html +++ b/files/en-us/web/api/workerglobalscope/index.html @@ -157,8 +157,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/languagechange_event/index.html b/files/en-us/web/api/workerglobalscope/languagechange_event/index.html index 8aeb089b6101aeb..b072e9ae3391adc 100644 --- a/files/en-us/web/api/workerglobalscope/languagechange_event/index.html +++ b/files/en-us/web/api/workerglobalscope/languagechange_event/index.html @@ -65,8 +65,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.languagechange_event")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/location/index.html b/files/en-us/web/api/workerglobalscope/location/index.html index c24b3a79519cc4f..488ce2ddedb3703 100644 --- a/files/en-us/web/api/workerglobalscope/location/index.html +++ b/files/en-us/web/api/workerglobalscope/location/index.html @@ -67,8 +67,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.location")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/navigator/index.html b/files/en-us/web/api/workerglobalscope/navigator/index.html index 081f246066e8a83..d94ac7688114729 100644 --- a/files/en-us/web/api/workerglobalscope/navigator/index.html +++ b/files/en-us/web/api/workerglobalscope/navigator/index.html @@ -62,8 +62,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.navigator")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/onclose/index.html b/files/en-us/web/api/workerglobalscope/onclose/index.html index e689d61ac28eef2..058095462d287af 100644 --- a/files/en-us/web/api/workerglobalscope/onclose/index.html +++ b/files/en-us/web/api/workerglobalscope/onclose/index.html @@ -40,8 +40,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.onclose")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/onerror/index.html b/files/en-us/web/api/workerglobalscope/onerror/index.html index 62d5d40d996c9af..71af839039312ed 100644 --- a/files/en-us/web/api/workerglobalscope/onerror/index.html +++ b/files/en-us/web/api/workerglobalscope/onerror/index.html @@ -46,8 +46,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.onerror")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/onlanguagechange/index.html b/files/en-us/web/api/workerglobalscope/onlanguagechange/index.html index 86a6d72208dc03a..d108cdf89138415 100644 --- a/files/en-us/web/api/workerglobalscope/onlanguagechange/index.html +++ b/files/en-us/web/api/workerglobalscope/onlanguagechange/index.html @@ -45,8 +45,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.onlanguagechange")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/onoffline/index.html b/files/en-us/web/api/workerglobalscope/onoffline/index.html index 75e19c06eab2ef6..dfcd9f63af0e768 100644 --- a/files/en-us/web/api/workerglobalscope/onoffline/index.html +++ b/files/en-us/web/api/workerglobalscope/onoffline/index.html @@ -45,8 +45,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.onoffline")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/ononline/index.html b/files/en-us/web/api/workerglobalscope/ononline/index.html index 318adb3b30a49b7..7da7e2dc3d99a15 100644 --- a/files/en-us/web/api/workerglobalscope/ononline/index.html +++ b/files/en-us/web/api/workerglobalscope/ononline/index.html @@ -45,8 +45,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.ononline")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/performance/index.html b/files/en-us/web/api/workerglobalscope/performance/index.html index 98bc779c1c28c8f..0f6120f8b99f5ac 100644 --- a/files/en-us/web/api/workerglobalscope/performance/index.html +++ b/files/en-us/web/api/workerglobalscope/performance/index.html @@ -71,8 +71,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerGlobalScope.performance")}}

      See also

      diff --git a/files/en-us/web/api/workerglobalscope/self/index.html b/files/en-us/web/api/workerglobalscope/self/index.html index f30b43896ab4e06..8cf8e54917c650a 100644 --- a/files/en-us/web/api/workerglobalscope/self/index.html +++ b/files/en-us/web/api/workerglobalscope/self/index.html @@ -77,8 +77,6 @@

      Browser compatibility

       

      - -

      {{Compat("api.WorkerGlobalScope.self")}}

       

      diff --git a/files/en-us/web/api/workerlocation/index.html b/files/en-us/web/api/workerlocation/index.html index 7aa85aa4201e364..975dfc666964de3 100644 --- a/files/en-us/web/api/workerlocation/index.html +++ b/files/en-us/web/api/workerlocation/index.html @@ -66,8 +66,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerLocation")}}

      See also

      diff --git a/files/en-us/web/api/workernavigator/connection/index.html b/files/en-us/web/api/workernavigator/connection/index.html index aec4f4fde99b8ea..91d934c68c60195 100644 --- a/files/en-us/web/api/workernavigator/connection/index.html +++ b/files/en-us/web/api/workernavigator/connection/index.html @@ -38,8 +38,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerNavigator.connection")}}

      See also

      diff --git a/files/en-us/web/api/workernavigator/index.html b/files/en-us/web/api/workernavigator/index.html index eb7ee5820a6a534..654a65bc87b34f8 100644 --- a/files/en-us/web/api/workernavigator/index.html +++ b/files/en-us/web/api/workernavigator/index.html @@ -79,8 +79,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerNavigator")}}

      See also

      diff --git a/files/en-us/web/api/workernavigator/locks/index.html b/files/en-us/web/api/workernavigator/locks/index.html index a9fd73974287b5b..df1e0656b338e4a 100644 --- a/files/en-us/web/api/workernavigator/locks/index.html +++ b/files/en-us/web/api/workernavigator/locks/index.html @@ -40,6 +40,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WorkerNavigator.locks")}}

      diff --git a/files/en-us/web/api/workernavigator/permissions/index.html b/files/en-us/web/api/workernavigator/permissions/index.html index 7dabb28484def06..5d1ca61cd022ebb 100644 --- a/files/en-us/web/api/workernavigator/permissions/index.html +++ b/files/en-us/web/api/workernavigator/permissions/index.html @@ -56,7 +56,6 @@

      Browser Support

      -

      {{Compat("api.WorkerNavigator.permissions")}}

      diff --git a/files/en-us/web/api/worklet/index.html b/files/en-us/web/api/worklet/index.html index 3f1276eded1fb6e..af2b1751ea49406 100644 --- a/files/en-us/web/api/worklet/index.html +++ b/files/en-us/web/api/worklet/index.html @@ -86,7 +86,6 @@

      Browser compatibility

      -

      {{Compat("api.Worklet")}}

      diff --git a/files/en-us/web/api/writablestream/index.html b/files/en-us/web/api/writablestream/index.html index 9b5f17b864a7313..2ffe0050ff7cb65 100644 --- a/files/en-us/web/api/writablestream/index.html +++ b/files/en-us/web/api/writablestream/index.html @@ -141,7 +141,6 @@

      Browser Compatibility

      -

      {{Compat("api.WritableStream")}}

      diff --git a/files/en-us/web/api/writablestreamdefaultcontroller/error/index.html b/files/en-us/web/api/writablestreamdefaultcontroller/error/index.html index 4168781b4e8bc37..598ba051a34be13 100644 --- a/files/en-us/web/api/writablestreamdefaultcontroller/error/index.html +++ b/files/en-us/web/api/writablestreamdefaultcontroller/error/index.html @@ -77,6 +77,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WritableStreamDefaultController.error")}}

      diff --git a/files/en-us/web/api/writablestreamdefaultcontroller/index.html b/files/en-us/web/api/writablestreamdefaultcontroller/index.html index a79d52a67881538..4255e256f1f174f 100644 --- a/files/en-us/web/api/writablestreamdefaultcontroller/index.html +++ b/files/en-us/web/api/writablestreamdefaultcontroller/index.html @@ -72,6 +72,5 @@

      Browser compatibility

      -

      {{Compat("api.WritableStreamDefaultController")}}

      diff --git a/files/en-us/web/api/writablestreamdefaultwriter/abort/index.html b/files/en-us/web/api/writablestreamdefaultwriter/abort/index.html index d2ff998e1d9474a..1817f94f76714c6 100644 --- a/files/en-us/web/api/writablestreamdefaultwriter/abort/index.html +++ b/files/en-us/web/api/writablestreamdefaultwriter/abort/index.html @@ -82,6 +82,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WritableStreamDefaultWriter.abort")}}

      diff --git a/files/en-us/web/api/writablestreamdefaultwriter/close/index.html b/files/en-us/web/api/writablestreamdefaultwriter/close/index.html index 0a3fb59d816d9e6..bad1be716d6dfe8 100644 --- a/files/en-us/web/api/writablestreamdefaultwriter/close/index.html +++ b/files/en-us/web/api/writablestreamdefaultwriter/close/index.html @@ -126,6 +126,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WritableStreamDefaultWriter.close")}}

      diff --git a/files/en-us/web/api/writablestreamdefaultwriter/closed/index.html b/files/en-us/web/api/writablestreamdefaultwriter/closed/index.html index 460f709016b2c23..b6e1ffc01de1545 100644 --- a/files/en-us/web/api/writablestreamdefaultwriter/closed/index.html +++ b/files/en-us/web/api/writablestreamdefaultwriter/closed/index.html @@ -68,6 +68,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WritableStreamDefaultWriter.closed")}}

      diff --git a/files/en-us/web/api/writablestreamdefaultwriter/desiredsize/index.html b/files/en-us/web/api/writablestreamdefaultwriter/desiredsize/index.html index 4185a1d02db6be9..497e4980d3f6fa6 100644 --- a/files/en-us/web/api/writablestreamdefaultwriter/desiredsize/index.html +++ b/files/en-us/web/api/writablestreamdefaultwriter/desiredsize/index.html @@ -73,6 +73,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WritableStreamDefaultWriter.desiredSize")}}

      diff --git a/files/en-us/web/api/writablestreamdefaultwriter/index.html b/files/en-us/web/api/writablestreamdefaultwriter/index.html index 84626da52601033..f08052002530f55 100644 --- a/files/en-us/web/api/writablestreamdefaultwriter/index.html +++ b/files/en-us/web/api/writablestreamdefaultwriter/index.html @@ -136,8 +136,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WritableStreamDefaultWriter")}}

      diff --git a/files/en-us/web/api/writablestreamdefaultwriter/ready/index.html b/files/en-us/web/api/writablestreamdefaultwriter/ready/index.html index c426ecc4a646c3a..c8df5b924829718 100644 --- a/files/en-us/web/api/writablestreamdefaultwriter/ready/index.html +++ b/files/en-us/web/api/writablestreamdefaultwriter/ready/index.html @@ -79,6 +79,4 @@

      Specifications

      Browser Compatibility

      - -

      {{Compat("api.WritableStreamDefaultWriter.ready")}}

      diff --git a/files/en-us/web/api/writablestreamdefaultwriter/releaselock/index.html b/files/en-us/web/api/writablestreamdefaultwriter/releaselock/index.html index e57ef84cf76cbcf..bda0b8378d5fe4a 100644 --- a/files/en-us/web/api/writablestreamdefaultwriter/releaselock/index.html +++ b/files/en-us/web/api/writablestreamdefaultwriter/releaselock/index.html @@ -68,6 +68,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WritableStreamDefaultWriter.releaseLock")}}

      diff --git a/files/en-us/web/api/writablestreamdefaultwriter/writablestreamdefaultwriter/index.html b/files/en-us/web/api/writablestreamdefaultwriter/writablestreamdefaultwriter/index.html index 8b1d43ef1e49453..b5107718d5526e7 100644 --- a/files/en-us/web/api/writablestreamdefaultwriter/writablestreamdefaultwriter/index.html +++ b/files/en-us/web/api/writablestreamdefaultwriter/writablestreamdefaultwriter/index.html @@ -130,6 +130,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WritableStreamDefaultWriter.WritableStreamDefaultWriter")}}

      diff --git a/files/en-us/web/api/writablestreamdefaultwriter/write/index.html b/files/en-us/web/api/writablestreamdefaultwriter/write/index.html index 28c5ac1181234a9..6fead65c9e76fd0 100644 --- a/files/en-us/web/api/writablestreamdefaultwriter/write/index.html +++ b/files/en-us/web/api/writablestreamdefaultwriter/write/index.html @@ -129,6 +129,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.WritableStreamDefaultWriter.write")}}

      diff --git a/files/en-us/web/api/xdomainrequest/abort/index.html b/files/en-us/web/api/xdomainrequest/abort/index.html index 9dfe4a6ac52475c..47a1a1c34eaef4a 100644 --- a/files/en-us/web/api/xdomainrequest/abort/index.html +++ b/files/en-us/web/api/xdomainrequest/abort/index.html @@ -31,6 +31,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XDomainRequest.abort")}}

      diff --git a/files/en-us/web/api/xdomainrequest/index.html b/files/en-us/web/api/xdomainrequest/index.html index 698bd71ce3196e0..0323bdfbd1b2d89 100644 --- a/files/en-us/web/api/xdomainrequest/index.html +++ b/files/en-us/web/api/xdomainrequest/index.html @@ -106,6 +106,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XDomainRequest")}}

      diff --git a/files/en-us/web/api/xdomainrequest/onerror/index.html b/files/en-us/web/api/xdomainrequest/onerror/index.html index 39804cb7e3bf9bc..4b824ae54aa0603 100644 --- a/files/en-us/web/api/xdomainrequest/onerror/index.html +++ b/files/en-us/web/api/xdomainrequest/onerror/index.html @@ -51,6 +51,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XDomainRequest.onerror")}}

      diff --git a/files/en-us/web/api/xdomainrequest/onload/index.html b/files/en-us/web/api/xdomainrequest/onload/index.html index cdf51b581b1ee15..fa4e47b74dbf3c3 100644 --- a/files/en-us/web/api/xdomainrequest/onload/index.html +++ b/files/en-us/web/api/xdomainrequest/onload/index.html @@ -38,6 +38,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XDomainRequest.onload")}}

      diff --git a/files/en-us/web/api/xdomainrequest/onprogress/index.html b/files/en-us/web/api/xdomainrequest/onprogress/index.html index 89c614eb4b0a7db..2b2be82b480f253 100644 --- a/files/en-us/web/api/xdomainrequest/onprogress/index.html +++ b/files/en-us/web/api/xdomainrequest/onprogress/index.html @@ -54,6 +54,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XDomainRequest.onprogress")}}

      diff --git a/files/en-us/web/api/xdomainrequest/ontimeout/index.html b/files/en-us/web/api/xdomainrequest/ontimeout/index.html index e6ebb914394dfd3..82c6a15e7c53150 100644 --- a/files/en-us/web/api/xdomainrequest/ontimeout/index.html +++ b/files/en-us/web/api/xdomainrequest/ontimeout/index.html @@ -47,6 +47,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XDomainRequest.ontimeout")}}

      diff --git a/files/en-us/web/api/xdomainrequest/open/index.html b/files/en-us/web/api/xdomainrequest/open/index.html index a2dc5e0f5c93c61..093ff7d07b7d492 100644 --- a/files/en-us/web/api/xdomainrequest/open/index.html +++ b/files/en-us/web/api/xdomainrequest/open/index.html @@ -38,6 +38,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XDomainRequest.open")}}

      diff --git a/files/en-us/web/api/xdomainrequest/responsetext/index.html b/files/en-us/web/api/xdomainrequest/responsetext/index.html index 966abad9c3b0c2a..fca40616be190aa 100644 --- a/files/en-us/web/api/xdomainrequest/responsetext/index.html +++ b/files/en-us/web/api/xdomainrequest/responsetext/index.html @@ -33,6 +33,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XDomainRequest.responseText")}}

      diff --git a/files/en-us/web/api/xdomainrequest/send/index.html b/files/en-us/web/api/xdomainrequest/send/index.html index 8525fe658db45f7..d220c31023cee59 100644 --- a/files/en-us/web/api/xdomainrequest/send/index.html +++ b/files/en-us/web/api/xdomainrequest/send/index.html @@ -40,6 +40,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XDomainRequest.send")}}

      diff --git a/files/en-us/web/api/xdomainrequest/timeout/index.html b/files/en-us/web/api/xdomainrequest/timeout/index.html index a11789c0d6ebc77..f3ab7d9b8ba1291 100644 --- a/files/en-us/web/api/xdomainrequest/timeout/index.html +++ b/files/en-us/web/api/xdomainrequest/timeout/index.html @@ -32,6 +32,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XDomainRequest.timeout")}}

      diff --git a/files/en-us/web/api/xmldocument/async/index.html b/files/en-us/web/api/xmldocument/async/index.html index 399bfdcb063a4da..b50e84e23fc02a1 100644 --- a/files/en-us/web/api/xmldocument/async/index.html +++ b/files/en-us/web/api/xmldocument/async/index.html @@ -32,8 +32,6 @@

      Example

      Browser compatibility

      - -

      {{Compat("api.XMLDocument.async")}}

      See also

      diff --git a/files/en-us/web/api/xmldocument/index.html b/files/en-us/web/api/xmldocument/index.html index 92f6fa8b13bd5c4..00e2dd996a34420 100644 --- a/files/en-us/web/api/xmldocument/index.html +++ b/files/en-us/web/api/xmldocument/index.html @@ -56,8 +56,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLDocument")}}

      See also

      diff --git a/files/en-us/web/api/xmldocument/load/index.html b/files/en-us/web/api/xmldocument/load/index.html index d648153dd692ddc..dc7a38181085fa1 100644 --- a/files/en-us/web/api/xmldocument/load/index.html +++ b/files/en-us/web/api/xmldocument/load/index.html @@ -37,8 +37,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLDocument.load")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/abort/index.html b/files/en-us/web/api/xmlhttprequest/abort/index.html index 719426581fbc7f6..a19c2775ca97a67 100644 --- a/files/en-us/web/api/xmlhttprequest/abort/index.html +++ b/files/en-us/web/api/xmlhttprequest/abort/index.html @@ -68,8 +68,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.abort")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/abort_event/index.html b/files/en-us/web/api/xmlhttprequest/abort_event/index.html index 7a564aa3e3764fb..5e6d7cf733496fa 100644 --- a/files/en-us/web/api/xmlhttprequest/abort_event/index.html +++ b/files/en-us/web/api/xmlhttprequest/abort_event/index.html @@ -133,8 +133,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.abort_event")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/error_event/index.html b/files/en-us/web/api/xmlhttprequest/error_event/index.html index 06416404e1b29c8..b65e0c8e8095b01 100644 --- a/files/en-us/web/api/xmlhttprequest/error_event/index.html +++ b/files/en-us/web/api/xmlhttprequest/error_event/index.html @@ -133,8 +133,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.error_event")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/getallresponseheaders/index.html b/files/en-us/web/api/xmlhttprequest/getallresponseheaders/index.html index 15efa042efa4352..d5802bd9d11c4dc 100644 --- a/files/en-us/web/api/xmlhttprequest/getallresponseheaders/index.html +++ b/files/en-us/web/api/xmlhttprequest/getallresponseheaders/index.html @@ -110,8 +110,6 @@

      Specifications

      Browser compatibility

      - -
      {{Compat("api.XMLHttpRequest.getAllResponseHeaders")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/getresponseheader/index.html b/files/en-us/web/api/xmlhttprequest/getresponseheader/index.html index 071015ea24f4fa0..09ee7e4802883e5 100644 --- a/files/en-us/web/api/xmlhttprequest/getresponseheader/index.html +++ b/files/en-us/web/api/xmlhttprequest/getresponseheader/index.html @@ -78,8 +78,6 @@

      Specifications

      Browser compatibility

      - -
      {{Compat("api.XMLHttpRequest.getResponseHeader")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/html_in_xmlhttprequest/index.html b/files/en-us/web/api/xmlhttprequest/html_in_xmlhttprequest/index.html index 39c3f51e5411dbc..7d49ff07ee91698 100644 --- a/files/en-us/web/api/xmlhttprequest/html_in_xmlhttprequest/index.html +++ b/files/en-us/web/api/xmlhttprequest/html_in_xmlhttprequest/index.html @@ -154,8 +154,6 @@

      Browser compatibility

      XMLHttpRequest interface

      - -

      {{Compat("api.XMLHttpRequest")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/index.html b/files/en-us/web/api/xmlhttprequest/index.html index 6d4f3f6375cc13a..4b8fcce75bd22f5 100644 --- a/files/en-us/web/api/xmlhttprequest/index.html +++ b/files/en-us/web/api/xmlhttprequest/index.html @@ -172,8 +172,6 @@

      Specifications

      Browser compatibility

      - -
      {{Compat("api.XMLHttpRequest")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/load_event/index.html b/files/en-us/web/api/xmlhttprequest/load_event/index.html index d08e1cb294d87f3..602a1c97fdb07e6 100644 --- a/files/en-us/web/api/xmlhttprequest/load_event/index.html +++ b/files/en-us/web/api/xmlhttprequest/load_event/index.html @@ -133,8 +133,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.load_event")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/loadend_event/index.html b/files/en-us/web/api/xmlhttprequest/loadend_event/index.html index 103d6230a1cd914..9dc467eebefba4d 100644 --- a/files/en-us/web/api/xmlhttprequest/loadend_event/index.html +++ b/files/en-us/web/api/xmlhttprequest/loadend_event/index.html @@ -136,8 +136,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.loadend_event")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/loadstart_event/index.html b/files/en-us/web/api/xmlhttprequest/loadstart_event/index.html index 326e30a99e0321b..e7025f1a0633dea 100644 --- a/files/en-us/web/api/xmlhttprequest/loadstart_event/index.html +++ b/files/en-us/web/api/xmlhttprequest/loadstart_event/index.html @@ -136,8 +136,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.loadstart_event")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/onreadystatechange/index.html b/files/en-us/web/api/xmlhttprequest/onreadystatechange/index.html index 48087448e1a1ca1..148cae48d27046c 100644 --- a/files/en-us/web/api/xmlhttprequest/onreadystatechange/index.html +++ b/files/en-us/web/api/xmlhttprequest/onreadystatechange/index.html @@ -70,6 +70,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.onreadystatechange")}}

      diff --git a/files/en-us/web/api/xmlhttprequest/overridemimetype/index.html b/files/en-us/web/api/xmlhttprequest/overridemimetype/index.html index f841e8a2675ba0d..6a642f87ab4e8c8 100644 --- a/files/en-us/web/api/xmlhttprequest/overridemimetype/index.html +++ b/files/en-us/web/api/xmlhttprequest/overridemimetype/index.html @@ -67,8 +67,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.overrideMimeType")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/progress_event/index.html b/files/en-us/web/api/xmlhttprequest/progress_event/index.html index 11a4a7092d1a633..837549a4bca48c1 100644 --- a/files/en-us/web/api/xmlhttprequest/progress_event/index.html +++ b/files/en-us/web/api/xmlhttprequest/progress_event/index.html @@ -134,8 +134,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.progress_event")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/readystate/index.html b/files/en-us/web/api/xmlhttprequest/readystate/index.html index c597a0c6304ef76..e7009e25848a4dd 100644 --- a/files/en-us/web/api/xmlhttprequest/readystate/index.html +++ b/files/en-us/web/api/xmlhttprequest/readystate/index.html @@ -101,6 +101,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.readyState")}}

      diff --git a/files/en-us/web/api/xmlhttprequest/response/index.html b/files/en-us/web/api/xmlhttprequest/response/index.html index d110ed55400cd63..dd22ec4355e5ad2 100644 --- a/files/en-us/web/api/xmlhttprequest/response/index.html +++ b/files/en-us/web/api/xmlhttprequest/response/index.html @@ -34,7 +34,6 @@

      Value

      {{page("/en-US/docs/Web/API/XMLHttpRequestResponseType", "Values")}}

      -

      Example

      This example presents a function, load(), which loads and processes a page from the server. It works by creating an {{domxref("XMLHttpRequest")}} object and creating a listener for {{event("readystatechange")}} events such that when readyState changes to DONE (4), the response is obtained and passed into the callback function provided to load().

      @@ -77,8 +76,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.response")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/responsetext/index.html b/files/en-us/web/api/xmlhttprequest/responsetext/index.html index af7087147693cc8..2022f1c6381a4c8 100644 --- a/files/en-us/web/api/xmlhttprequest/responsetext/index.html +++ b/files/en-us/web/api/xmlhttprequest/responsetext/index.html @@ -76,6 +76,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.responseText")}}

      diff --git a/files/en-us/web/api/xmlhttprequest/responsetype/index.html b/files/en-us/web/api/xmlhttprequest/responsetype/index.html index fafb4e2c00c91ae..953fee8348f034b 100644 --- a/files/en-us/web/api/xmlhttprequest/responsetype/index.html +++ b/files/en-us/web/api/xmlhttprequest/responsetype/index.html @@ -76,8 +76,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.responseType")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/responseurl/index.html b/files/en-us/web/api/xmlhttprequest/responseurl/index.html index 514d2a423db2b0c..41dbec86f63ab93 100644 --- a/files/en-us/web/api/xmlhttprequest/responseurl/index.html +++ b/files/en-us/web/api/xmlhttprequest/responseurl/index.html @@ -44,6 +44,4 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.responseURL")}}

      diff --git a/files/en-us/web/api/xmlhttprequest/responsexml/index.html b/files/en-us/web/api/xmlhttprequest/responsexml/index.html index 45df5698adeb798..18438376e10d948 100644 --- a/files/en-us/web/api/xmlhttprequest/responsexml/index.html +++ b/files/en-us/web/api/xmlhttprequest/responsexml/index.html @@ -87,8 +87,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.responseXML")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/send/index.html b/files/en-us/web/api/xmlhttprequest/send/index.html index fe2bb8288c8943c..e76b42a851d4360 100644 --- a/files/en-us/web/api/xmlhttprequest/send/index.html +++ b/files/en-us/web/api/xmlhttprequest/send/index.html @@ -122,8 +122,6 @@

      Specifications

      Browser compatibility

      - -
      {{Compat("api.XMLHttpRequest.send")}}

      See also

      diff --git a/files/en-us/web/api/xmlhttprequest/sendasbinary/index.html b/files/en-us/web/api/xmlhttprequest/sendasbinary/index.html index 0249b325e938385..4795c17ad4906ed 100644 --- a/files/en-us/web/api/xmlhttprequest/sendasbinary/index.html +++ b/files/en-us/web/api/xmlhttprequest/sendasbinary/index.html @@ -67,8 +67,6 @@

      Polyfill

      Browser compatibility

      - -

      {{Compat("api.XMLHttpRequest.sendAsBinary")}}

        diff --git a/files/en-us/web/api/xmlhttprequest/setrequestheader/index.html b/files/en-us/web/api/xmlhttprequest/setrequestheader/index.html index 257ab6bd022bd7a..83e5258baa121ce 100644 --- a/files/en-us/web/api/xmlhttprequest/setrequestheader/index.html +++ b/files/en-us/web/api/xmlhttprequest/setrequestheader/index.html @@ -69,8 +69,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequest.setRequestHeader")}}

        See also

        diff --git a/files/en-us/web/api/xmlhttprequest/status/index.html b/files/en-us/web/api/xmlhttprequest/status/index.html index 0a9be179a38ad0c..d14e66e3cebd0fc 100644 --- a/files/en-us/web/api/xmlhttprequest/status/index.html +++ b/files/en-us/web/api/xmlhttprequest/status/index.html @@ -66,8 +66,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequest.status")}}

        See also

        diff --git a/files/en-us/web/api/xmlhttprequest/statustext/index.html b/files/en-us/web/api/xmlhttprequest/statustext/index.html index 64252c55cc81910..bd44eb50f3df6f0 100644 --- a/files/en-us/web/api/xmlhttprequest/statustext/index.html +++ b/files/en-us/web/api/xmlhttprequest/statustext/index.html @@ -67,8 +67,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequest.statusText")}}

        See also

        diff --git a/files/en-us/web/api/xmlhttprequest/timeout/index.html b/files/en-us/web/api/xmlhttprequest/timeout/index.html index a6911fb2fcc2b46..d1a9368ce758c5a 100644 --- a/files/en-us/web/api/xmlhttprequest/timeout/index.html +++ b/files/en-us/web/api/xmlhttprequest/timeout/index.html @@ -60,6 +60,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequest.timeout")}}

        diff --git a/files/en-us/web/api/xmlhttprequest/upload/index.html b/files/en-us/web/api/xmlhttprequest/upload/index.html index 62cb9cb07b81204..85368e9370aae58 100644 --- a/files/en-us/web/api/xmlhttprequest/upload/index.html +++ b/files/en-us/web/api/xmlhttprequest/upload/index.html @@ -89,8 +89,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequest.upload")}}

        See also

        diff --git a/files/en-us/web/api/xmlhttprequest/withcredentials/index.html b/files/en-us/web/api/xmlhttprequest/withcredentials/index.html index 6b1f41384a71b2b..7cf268108edf9e2 100644 --- a/files/en-us/web/api/xmlhttprequest/withcredentials/index.html +++ b/files/en-us/web/api/xmlhttprequest/withcredentials/index.html @@ -52,6 +52,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequest.withCredentials")}}

        diff --git a/files/en-us/web/api/xmlhttprequesteventtarget/index.html b/files/en-us/web/api/xmlhttprequesteventtarget/index.html index f7c0d2e789a59ae..bee220e01c6657d 100644 --- a/files/en-us/web/api/xmlhttprequesteventtarget/index.html +++ b/files/en-us/web/api/xmlhttprequesteventtarget/index.html @@ -53,8 +53,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequestEventTarget")}}

        See also

        diff --git a/files/en-us/web/api/xmlhttprequesteventtarget/onabort/index.html b/files/en-us/web/api/xmlhttprequesteventtarget/onabort/index.html index af968e1d4524bde..44c893ba342ce12 100644 --- a/files/en-us/web/api/xmlhttprequesteventtarget/onabort/index.html +++ b/files/en-us/web/api/xmlhttprequesteventtarget/onabort/index.html @@ -57,6 +57,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequestEventTarget.onabort")}}

        diff --git a/files/en-us/web/api/xmlhttprequesteventtarget/onerror/index.html b/files/en-us/web/api/xmlhttprequesteventtarget/onerror/index.html index ae9aa913e2932d4..77e7933768a469e 100644 --- a/files/en-us/web/api/xmlhttprequesteventtarget/onerror/index.html +++ b/files/en-us/web/api/xmlhttprequesteventtarget/onerror/index.html @@ -55,6 +55,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequestEventTarget.onerror")}}

        diff --git a/files/en-us/web/api/xmlhttprequesteventtarget/onload/index.html b/files/en-us/web/api/xmlhttprequesteventtarget/onload/index.html index b48b2d25ec10670..af34d7c0caba6d1 100644 --- a/files/en-us/web/api/xmlhttprequesteventtarget/onload/index.html +++ b/files/en-us/web/api/xmlhttprequesteventtarget/onload/index.html @@ -55,6 +55,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequestEventTarget.onload")}}

        diff --git a/files/en-us/web/api/xmlhttprequesteventtarget/onloadstart/index.html b/files/en-us/web/api/xmlhttprequesteventtarget/onloadstart/index.html index 7a96106daf75873..012b1e91454b44f 100644 --- a/files/en-us/web/api/xmlhttprequesteventtarget/onloadstart/index.html +++ b/files/en-us/web/api/xmlhttprequesteventtarget/onloadstart/index.html @@ -55,6 +55,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequestEventTarget.onloadstart")}}

        diff --git a/files/en-us/web/api/xmlhttprequesteventtarget/onprogress/index.html b/files/en-us/web/api/xmlhttprequesteventtarget/onprogress/index.html index 69743465d49f713..606e64bb44a5578 100644 --- a/files/en-us/web/api/xmlhttprequesteventtarget/onprogress/index.html +++ b/files/en-us/web/api/xmlhttprequesteventtarget/onprogress/index.html @@ -67,6 +67,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequestEventTarget.onprogress")}}

        diff --git a/files/en-us/web/api/xmlhttprequestresponsetype/index.html b/files/en-us/web/api/xmlhttprequestresponsetype/index.html index 9bc0b650d007ad5..6b4c451d3ca05dd 100644 --- a/files/en-us/web/api/xmlhttprequestresponsetype/index.html +++ b/files/en-us/web/api/xmlhttprequestresponsetype/index.html @@ -62,8 +62,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XMLHttpRequest.responseType")}}

        See also

        diff --git a/files/en-us/web/api/xmlserializer/index.html b/files/en-us/web/api/xmlserializer/index.html index dc6083a0d09d406..5fa96aed3ceb19d 100644 --- a/files/en-us/web/api/xmlserializer/index.html +++ b/files/en-us/web/api/xmlserializer/index.html @@ -87,7 +87,6 @@

        Browser compatibility

        -

        {{Compat("api.XMLSerializer")}}

        diff --git a/files/en-us/web/api/xpathevaluator/createexpression/index.html b/files/en-us/web/api/xpathevaluator/createexpression/index.html index 8dc27b784d592fe..b06d00714cf8120 100644 --- a/files/en-us/web/api/xpathevaluator/createexpression/index.html +++ b/files/en-us/web/api/xpathevaluator/createexpression/index.html @@ -84,8 +84,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XPathEvaluator.createExpression")}}

        See also

        diff --git a/files/en-us/web/api/xpathevaluator/creatensresolver/index.html b/files/en-us/web/api/xpathevaluator/creatensresolver/index.html index 986420cf0ec3870..f84b234a0567d18 100644 --- a/files/en-us/web/api/xpathevaluator/creatensresolver/index.html +++ b/files/en-us/web/api/xpathevaluator/creatensresolver/index.html @@ -52,8 +52,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XPathEvaluator.createNSResolver")}}

        See also

        diff --git a/files/en-us/web/api/xpathevaluator/evaluate/index.html b/files/en-us/web/api/xpathevaluator/evaluate/index.html index 344cccb78e359b3..1c604340566c5d7 100644 --- a/files/en-us/web/api/xpathevaluator/evaluate/index.html +++ b/files/en-us/web/api/xpathevaluator/evaluate/index.html @@ -102,6 +102,5 @@

        Browser compatibility

        -

        {{Compat("api.XPathEvaluator.evaluate()")}}

        diff --git a/files/en-us/web/api/xpathevaluator/index.html b/files/en-us/web/api/xpathevaluator/index.html index cee932c7a937674..577131be229eb0b 100644 --- a/files/en-us/web/api/xpathevaluator/index.html +++ b/files/en-us/web/api/xpathevaluator/index.html @@ -71,8 +71,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XPathEvaluator")}}

        See also

        diff --git a/files/en-us/web/api/xpathexception/code/index.html b/files/en-us/web/api/xpathexception/code/index.html index 3ff7e9c74fa8647..430af1b1ef87f75 100644 --- a/files/en-us/web/api/xpathexception/code/index.html +++ b/files/en-us/web/api/xpathexception/code/index.html @@ -42,6 +42,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XPathException.code")}}

        diff --git a/files/en-us/web/api/xpathexception/index.html b/files/en-us/web/api/xpathexception/index.html index 0b8d2779d1d0400..a0243f41f2cc78b 100644 --- a/files/en-us/web/api/xpathexception/index.html +++ b/files/en-us/web/api/xpathexception/index.html @@ -63,8 +63,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XPathException")}}

        See also

        diff --git a/files/en-us/web/api/xpathexpression/evaluate/index.html b/files/en-us/web/api/xpathexpression/evaluate/index.html index 91025438ea0f70a..4af99789adcf730 100644 --- a/files/en-us/web/api/xpathexpression/evaluate/index.html +++ b/files/en-us/web/api/xpathexpression/evaluate/index.html @@ -99,6 +99,5 @@

        Browser compatibility

        -

        {{Compat("api.XPathExpression.evaluate()")}}

        diff --git a/files/en-us/web/api/xpathexpression/index.html b/files/en-us/web/api/xpathexpression/index.html index 6628924d48db3cb..0b0c0eed4b08d67 100644 --- a/files/en-us/web/api/xpathexpression/index.html +++ b/files/en-us/web/api/xpathexpression/index.html @@ -67,8 +67,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XPathExpression")}}

        See also

        diff --git a/files/en-us/web/api/xpathnsresolver/index.html b/files/en-us/web/api/xpathnsresolver/index.html index 36e1742b1959ad0..c11b57f0885f2e9 100644 --- a/files/en-us/web/api/xpathnsresolver/index.html +++ b/files/en-us/web/api/xpathnsresolver/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XPathNSResolver")}}

        See also

        diff --git a/files/en-us/web/api/xpathnsresolver/lookupnamespaceuri/index.html b/files/en-us/web/api/xpathnsresolver/lookupnamespaceuri/index.html index 028f922975085c0..664d01131c757f8 100644 --- a/files/en-us/web/api/xpathnsresolver/lookupnamespaceuri/index.html +++ b/files/en-us/web/api/xpathnsresolver/lookupnamespaceuri/index.html @@ -49,8 +49,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XPathNSResolver.lookupNamespaceURI")}}

        See also

        diff --git a/files/en-us/web/api/xpathresult/booleanvalue/index.html b/files/en-us/web/api/xpathresult/booleanvalue/index.html index 824d31bc62b6261..7a9171c00fa2a3e 100644 --- a/files/en-us/web/api/xpathresult/booleanvalue/index.html +++ b/files/en-us/web/api/xpathresult/booleanvalue/index.html @@ -72,6 +72,5 @@

        Browser compatibility

        -

        {{Compat("api.XPathResult.booleanValue")}}

        diff --git a/files/en-us/web/api/xpathresult/index.html b/files/en-us/web/api/xpathresult/index.html index 8207ca401405775..36cacef9b9ae77d 100644 --- a/files/en-us/web/api/xpathresult/index.html +++ b/files/en-us/web/api/xpathresult/index.html @@ -124,8 +124,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XPathResult")}}

        See also

        diff --git a/files/en-us/web/api/xpathresult/invaliditeratorstate/index.html b/files/en-us/web/api/xpathresult/invaliditeratorstate/index.html index 7bf467d231f957b..0b089284ec9faa2 100644 --- a/files/en-us/web/api/xpathresult/invaliditeratorstate/index.html +++ b/files/en-us/web/api/xpathresult/invaliditeratorstate/index.html @@ -68,6 +68,5 @@

        Browser compatibility

        -

        {{Compat("api.XPathResult.invalidIteratorState")}}

        diff --git a/files/en-us/web/api/xpathresult/iteratenext/index.html b/files/en-us/web/api/xpathresult/iteratenext/index.html index 9c38586920d5c5a..ef9d3d87fececdb 100644 --- a/files/en-us/web/api/xpathresult/iteratenext/index.html +++ b/files/en-us/web/api/xpathresult/iteratenext/index.html @@ -79,6 +79,5 @@

        Browser compatibility

        -

        {{Compat("api.XPathResult.iterateNext()")}}

        diff --git a/files/en-us/web/api/xpathresult/numbervalue/index.html b/files/en-us/web/api/xpathresult/numbervalue/index.html index ea20e3bf24f1f64..59fd99a724df2a6 100644 --- a/files/en-us/web/api/xpathresult/numbervalue/index.html +++ b/files/en-us/web/api/xpathresult/numbervalue/index.html @@ -72,6 +72,5 @@

        Browser compatibility

        -

        {{Compat("api.XPathResult.numberValue")}}

        diff --git a/files/en-us/web/api/xpathresult/resulttype/index.html b/files/en-us/web/api/xpathresult/resulttype/index.html index 5ca9a5d98a4dbd7..5ffe116afb1e6bc 100644 --- a/files/en-us/web/api/xpathresult/resulttype/index.html +++ b/files/en-us/web/api/xpathresult/resulttype/index.html @@ -132,6 +132,5 @@

        Browser compatibility

        -

        {{Compat("api.XPathResult.resultType")}}

        diff --git a/files/en-us/web/api/xpathresult/singlenodevalue/index.html b/files/en-us/web/api/xpathresult/singlenodevalue/index.html index fd39880d669a092..f74afac9985b6c7 100644 --- a/files/en-us/web/api/xpathresult/singlenodevalue/index.html +++ b/files/en-us/web/api/xpathresult/singlenodevalue/index.html @@ -72,6 +72,5 @@

        Browser compatibility

        -

        {{Compat("api.XPathResult.singleNodeValue")}}

        diff --git a/files/en-us/web/api/xpathresult/snapshotitem/index.html b/files/en-us/web/api/xpathresult/snapshotitem/index.html index 447dff8faea8648..0830c0d901f9ab6 100644 --- a/files/en-us/web/api/xpathresult/snapshotitem/index.html +++ b/files/en-us/web/api/xpathresult/snapshotitem/index.html @@ -76,6 +76,5 @@

        Browser compatibility

        -

        {{Compat("api.XPathResult.snapshotItem()")}}

        diff --git a/files/en-us/web/api/xpathresult/snapshotlength/index.html b/files/en-us/web/api/xpathresult/snapshotlength/index.html index 0b6035ab8153dfd..4c54287a82d50e7 100644 --- a/files/en-us/web/api/xpathresult/snapshotlength/index.html +++ b/files/en-us/web/api/xpathresult/snapshotlength/index.html @@ -72,6 +72,5 @@

        Browser compatibility

        -

        {{Compat("api.XPathResult.snapshotLength")}}

        diff --git a/files/en-us/web/api/xpathresult/stringvalue/index.html b/files/en-us/web/api/xpathresult/stringvalue/index.html index ac4cc7e965ffc5e..16acc4e0b5d4d91 100644 --- a/files/en-us/web/api/xpathresult/stringvalue/index.html +++ b/files/en-us/web/api/xpathresult/stringvalue/index.html @@ -72,6 +72,5 @@

        Browser compatibility

        -

        {{Compat("api.XPathResult.stringValue")}}

        diff --git a/files/en-us/web/api/xrframe/getpose/index.html b/files/en-us/web/api/xrframe/getpose/index.html index 4880c5c787dffdf..4481f00dfb343f0 100644 --- a/files/en-us/web/api/xrframe/getpose/index.html +++ b/files/en-us/web/api/xrframe/getpose/index.html @@ -57,6 +57,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRFrame.getPose")}}

        diff --git a/files/en-us/web/api/xrframe/getviewerpose/index.html b/files/en-us/web/api/xrframe/getviewerpose/index.html index 913490df54f9e20..9ccaaad815ec9d3 100644 --- a/files/en-us/web/api/xrframe/getviewerpose/index.html +++ b/files/en-us/web/api/xrframe/getviewerpose/index.html @@ -76,6 +76,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRFrame.getViewerPose")}}

        diff --git a/files/en-us/web/api/xrframe/index.html b/files/en-us/web/api/xrframe/index.html index 7c60c9384fa985b..9e411946225abe6 100644 --- a/files/en-us/web/api/xrframe/index.html +++ b/files/en-us/web/api/xrframe/index.html @@ -60,8 +60,6 @@

        Specifications

        Browser compatibility

        - -
        {{Compat("api.XRFrame")}}

        See also

        diff --git a/files/en-us/web/api/xrinputsource/gripspace/index.html b/files/en-us/web/api/xrinputsource/gripspace/index.html index 5a3a523332451e4..7d3029cd1a77101 100644 --- a/files/en-us/web/api/xrinputsource/gripspace/index.html +++ b/files/en-us/web/api/xrinputsource/gripspace/index.html @@ -91,6 +91,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRInputSource.gripSpace")}}

        diff --git a/files/en-us/web/api/xrinputsource/index.html b/files/en-us/web/api/xrinputsource/index.html index bceb7a3a3ad06a4..5d53c3392b8bd15 100644 --- a/files/en-us/web/api/xrinputsource/index.html +++ b/files/en-us/web/api/xrinputsource/index.html @@ -92,8 +92,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRInputSource")}}

        See also

        diff --git a/files/en-us/web/api/xrreferencespaceeventinit/index.html b/files/en-us/web/api/xrreferencespaceeventinit/index.html index 8985913b3b35533..1fb183d7174792e 100644 --- a/files/en-us/web/api/xrreferencespaceeventinit/index.html +++ b/files/en-us/web/api/xrreferencespaceeventinit/index.html @@ -28,8 +28,6 @@

        Properties

        - -
        {{domxref("XRReferenceSpaceEventInit.referenceSpace", "referenceSpace")}}
        The {{domxref("XRReferenceSpace")}} from which the event originated.
        diff --git a/files/en-us/web/api/xrrenderstate/baselayer/index.html b/files/en-us/web/api/xrrenderstate/baselayer/index.html index 4dc894d20dc8494..46ae34419c71a84 100644 --- a/files/en-us/web/api/xrrenderstate/baselayer/index.html +++ b/files/en-us/web/api/xrrenderstate/baselayer/index.html @@ -72,6 +72,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRRenderState.baseLayer")}}

        diff --git a/files/en-us/web/api/xrrenderstate/depthfar/index.html b/files/en-us/web/api/xrrenderstate/depthfar/index.html index d427d99a753e9a3..8fa992ed9dd3b26 100644 --- a/files/en-us/web/api/xrrenderstate/depthfar/index.html +++ b/files/en-us/web/api/xrrenderstate/depthfar/index.html @@ -46,6 +46,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRRenderState.XRRenderState.depthFar")}}

        diff --git a/files/en-us/web/api/xrrenderstate/depthnear/index.html b/files/en-us/web/api/xrrenderstate/depthnear/index.html index 6562116ac0fa681..ffd19ec43cd2f8e 100644 --- a/files/en-us/web/api/xrrenderstate/depthnear/index.html +++ b/files/en-us/web/api/xrrenderstate/depthnear/index.html @@ -46,6 +46,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRRenderState.depthNear")}}

        diff --git a/files/en-us/web/api/xrrenderstate/inlineverticalfieldofview/index.html b/files/en-us/web/api/xrrenderstate/inlineverticalfieldofview/index.html index 05fe7ffb5531c61..1f988b386a64a1f 100644 --- a/files/en-us/web/api/xrrenderstate/inlineverticalfieldofview/index.html +++ b/files/en-us/web/api/xrrenderstate/inlineverticalfieldofview/index.html @@ -40,8 +40,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRRenderState.inlineVerticalFieldOfView")}}

        See also

        diff --git a/files/en-us/web/api/xrrenderstate/xrrenderstate.inlineverticalfieldofview/index.html b/files/en-us/web/api/xrrenderstate/xrrenderstate.inlineverticalfieldofview/index.html index 11f3dc770dadcd0..b3ec6e2f87685ca 100644 --- a/files/en-us/web/api/xrrenderstate/xrrenderstate.inlineverticalfieldofview/index.html +++ b/files/en-us/web/api/xrrenderstate/xrrenderstate.inlineverticalfieldofview/index.html @@ -46,6 +46,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRRenderState.XRRenderState.inlineVerticalFieldOfView")}}

        diff --git a/files/en-us/web/api/xrsession/requestreferencespace/index.html b/files/en-us/web/api/xrsession/requestreferencespace/index.html index b066fb31551d149..27dfa442f53fe69 100644 --- a/files/en-us/web/api/xrsession/requestreferencespace/index.html +++ b/files/en-us/web/api/xrsession/requestreferencespace/index.html @@ -67,6 +67,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRSession.requestReferenceSpace")}}

        diff --git a/files/en-us/web/api/xrsessionevent/session/index.html b/files/en-us/web/api/xrsessionevent/session/index.html index 94b563cf1a38325..d20b7bc58111cc3 100644 --- a/files/en-us/web/api/xrsessionevent/session/index.html +++ b/files/en-us/web/api/xrsessionevent/session/index.html @@ -74,6 +74,4 @@

        Specifications

        Browser compatibility

        - -
        {{Compat("api.XRSessionEvent.session")}}
        diff --git a/files/en-us/web/api/xrsessionevent/xrsessionevent/index.html b/files/en-us/web/api/xrsessionevent/xrsessionevent/index.html index 1329b0a455fd6e0..80c61248d897694 100644 --- a/files/en-us/web/api/xrsessionevent/xrsessionevent/index.html +++ b/files/en-us/web/api/xrsessionevent/xrsessionevent/index.html @@ -71,6 +71,4 @@

        Specifications

        Browser compatibility

        - -
        {{Compat("api.XRSessionEvent.XRSessionEvent")}}
        diff --git a/files/en-us/web/api/xrsessioneventinit/index.html b/files/en-us/web/api/xrsessioneventinit/index.html index 24ce21bb3ee00c0..6242d70256fc436 100644 --- a/files/en-us/web/api/xrsessioneventinit/index.html +++ b/files/en-us/web/api/xrsessioneventinit/index.html @@ -57,6 +57,4 @@

        Specifications

        Browser compatibility

        - -
        {{Compat("api.XRSessionEventInit")}}
        diff --git a/files/en-us/web/api/xrsessioneventinit/session/index.html b/files/en-us/web/api/xrsessioneventinit/session/index.html index 336cd1e26fa9b27..61741866a349360 100644 --- a/files/en-us/web/api/xrsessioneventinit/session/index.html +++ b/files/en-us/web/api/xrsessioneventinit/session/index.html @@ -60,6 +60,4 @@

        Specifications

        Browser compatibility

        - -
        {{Compat("api.XRSessionEventInit.session")}}
        diff --git a/files/en-us/web/api/xrspace/index.html b/files/en-us/web/api/xrspace/index.html index 4d11fde563be31b..f4573f610bff133 100644 --- a/files/en-us/web/api/xrspace/index.html +++ b/files/en-us/web/api/xrspace/index.html @@ -62,6 +62,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRSpace")}}

        diff --git a/files/en-us/web/api/xrsystem/index.html b/files/en-us/web/api/xrsystem/index.html index 40c44e2ad9fbb06..bba2d0a583db5ab 100644 --- a/files/en-us/web/api/xrsystem/index.html +++ b/files/en-us/web/api/xrsystem/index.html @@ -108,6 +108,4 @@

        Specifications

        Browser compatibility

        - -
        {{Compat("api.XRSystem")}}
        diff --git a/files/en-us/web/api/xrwebgllayer/antialias/index.html b/files/en-us/web/api/xrwebgllayer/antialias/index.html index d8241ebc6bdf9d4..8a95fb9c29a2db9 100644 --- a/files/en-us/web/api/xrwebgllayer/antialias/index.html +++ b/files/en-us/web/api/xrwebgllayer/antialias/index.html @@ -73,8 +73,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayer.antialias")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayer/framebuffer/index.html b/files/en-us/web/api/xrwebgllayer/framebuffer/index.html index 54f3ec60df44ec5..cc9bef6bdb7a64b 100644 --- a/files/en-us/web/api/xrwebgllayer/framebuffer/index.html +++ b/files/en-us/web/api/xrwebgllayer/framebuffer/index.html @@ -88,8 +88,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayer.framebuffer")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayer/framebufferheight/index.html b/files/en-us/web/api/xrwebgllayer/framebufferheight/index.html index 373517e6d4a83b1..65098e74d316f1e 100644 --- a/files/en-us/web/api/xrwebgllayer/framebufferheight/index.html +++ b/files/en-us/web/api/xrwebgllayer/framebufferheight/index.html @@ -66,8 +66,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayer.framebufferHeight")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayer/framebufferwidth/index.html b/files/en-us/web/api/xrwebgllayer/framebufferwidth/index.html index 3709ab11c2853f2..a8d1da5d8b7ff3b 100644 --- a/files/en-us/web/api/xrwebgllayer/framebufferwidth/index.html +++ b/files/en-us/web/api/xrwebgllayer/framebufferwidth/index.html @@ -65,8 +65,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayer.framebufferWidth")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayer/getnativeframebufferscalefactor/index.html b/files/en-us/web/api/xrwebgllayer/getnativeframebufferscalefactor/index.html index c0c2ba372fbc194..9b7d4e7dd7c24e8 100644 --- a/files/en-us/web/api/xrwebgllayer/getnativeframebufferscalefactor/index.html +++ b/files/en-us/web/api/xrwebgllayer/getnativeframebufferscalefactor/index.html @@ -111,8 +111,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayer.getNativeFramebufferScaleFactor")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayer/getviewport/index.html b/files/en-us/web/api/xrwebgllayer/getviewport/index.html index d40800c8c8f4e4f..e1e047c2125966e 100644 --- a/files/en-us/web/api/xrwebgllayer/getviewport/index.html +++ b/files/en-us/web/api/xrwebgllayer/getviewport/index.html @@ -95,8 +95,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayer.getViewport")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayer/ignoredepthvalues/index.html b/files/en-us/web/api/xrwebgllayer/ignoredepthvalues/index.html index b0bf3806234e78d..20151bcc56136aa 100644 --- a/files/en-us/web/api/xrwebgllayer/ignoredepthvalues/index.html +++ b/files/en-us/web/api/xrwebgllayer/ignoredepthvalues/index.html @@ -73,8 +73,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayer.ignoreDepthValues")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayer/index.html b/files/en-us/web/api/xrwebgllayer/index.html index 4b24b5cd8d89e5f..3c681ceb2af04f9 100644 --- a/files/en-us/web/api/xrwebgllayer/index.html +++ b/files/en-us/web/api/xrwebgllayer/index.html @@ -107,8 +107,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayer")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayer/xrwebgllayer/index.html b/files/en-us/web/api/xrwebgllayer/xrwebgllayer/index.html index bc8050af474c912..fe6f056cb801ece 100644 --- a/files/en-us/web/api/xrwebgllayer/xrwebgllayer/index.html +++ b/files/en-us/web/api/xrwebgllayer/xrwebgllayer/index.html @@ -82,8 +82,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayer.XRWebGLLayer")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayerinit/alpha/index.html b/files/en-us/web/api/xrwebgllayerinit/alpha/index.html index 7195e1de463bf0b..8be5e6bc18ab26d 100644 --- a/files/en-us/web/api/xrwebgllayerinit/alpha/index.html +++ b/files/en-us/web/api/xrwebgllayerinit/alpha/index.html @@ -63,8 +63,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayerInit.alpha")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayerinit/antialias/index.html b/files/en-us/web/api/xrwebgllayerinit/antialias/index.html index 95fab9ab3e1ea9e..5e44bf93dfb43c0 100644 --- a/files/en-us/web/api/xrwebgllayerinit/antialias/index.html +++ b/files/en-us/web/api/xrwebgllayerinit/antialias/index.html @@ -82,8 +82,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayerInit.antialias")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayerinit/depth/index.html b/files/en-us/web/api/xrwebgllayerinit/depth/index.html index f597df50527df23..69aca293cd316c4 100644 --- a/files/en-us/web/api/xrwebgllayerinit/depth/index.html +++ b/files/en-us/web/api/xrwebgllayerinit/depth/index.html @@ -81,8 +81,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayerInit.depth")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayerinit/framebufferscalefactor/index.html b/files/en-us/web/api/xrwebgllayerinit/framebufferscalefactor/index.html index 7b448b24cdefe1a..158fce30fd207c9 100644 --- a/files/en-us/web/api/xrwebgllayerinit/framebufferscalefactor/index.html +++ b/files/en-us/web/api/xrwebgllayerinit/framebufferscalefactor/index.html @@ -79,8 +79,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayerInit.framebufferScaleFactor")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayerinit/ignoredepthvalues/index.html b/files/en-us/web/api/xrwebgllayerinit/ignoredepthvalues/index.html index d3af413b1ac0478..e8300e02b8b8d6a 100644 --- a/files/en-us/web/api/xrwebgllayerinit/ignoredepthvalues/index.html +++ b/files/en-us/web/api/xrwebgllayerinit/ignoredepthvalues/index.html @@ -80,8 +80,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayerInit.ignoreDepthValues")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayerinit/index.html b/files/en-us/web/api/xrwebgllayerinit/index.html index 38bb5df51e15151..9e16372442c8213 100644 --- a/files/en-us/web/api/xrwebgllayerinit/index.html +++ b/files/en-us/web/api/xrwebgllayerinit/index.html @@ -72,8 +72,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayerInit")}}

        See also

        diff --git a/files/en-us/web/api/xrwebgllayerinit/stencil/index.html b/files/en-us/web/api/xrwebgllayerinit/stencil/index.html index 11309b538084717..0f4c4cb2563a075 100644 --- a/files/en-us/web/api/xrwebgllayerinit/stencil/index.html +++ b/files/en-us/web/api/xrwebgllayerinit/stencil/index.html @@ -66,8 +66,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("api.XRWebGLLayerInit.stencil")}}

        See also

        diff --git a/files/en-us/web/api/xsltprocessor/basic_example/index.html b/files/en-us/web/api/xsltprocessor/basic_example/index.html index 36081f6cefd2da9..993238f6aac08ec 100644 --- a/files/en-us/web/api/xsltprocessor/basic_example/index.html +++ b/files/en-us/web/api/xsltprocessor/basic_example/index.html @@ -26,7 +26,6 @@

        Basic Example

        XSL Stylesheet (example.xsl) :

        -
        <?xml version="1.0"?>
         <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
         
        diff --git a/files/en-us/web/api/xsltprocessor/index.html b/files/en-us/web/api/xsltprocessor/index.html
        index 876c67ab1f2127e..ae785eb4154c67a 100644
        --- a/files/en-us/web/api/xsltprocessor/index.html
        +++ b/files/en-us/web/api/xsltprocessor/index.html
        @@ -124,8 +124,6 @@ 

        Gecko IDL

        Browser compatibility

        - -

        {{Compat("api.XSLTProcessor")}}

        See also

        diff --git a/files/en-us/web/css/--_star_/index.html b/files/en-us/web/css/--_star_/index.html index ead458695b5c231..095caa79ba58fe2 100644 --- a/files/en-us/web/css/--_star_/index.html +++ b/files/en-us/web/css/--_star_/index.html @@ -96,8 +96,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.custom-property")}}

        See also

        diff --git a/files/en-us/web/css/-moz-context-properties/index.html b/files/en-us/web/css/-moz-context-properties/index.html index 1f7ffbe84b7a49c..cb0b11150b5882b 100644 --- a/files/en-us/web/css/-moz-context-properties/index.html +++ b/files/en-us/web/css/-moz-context-properties/index.html @@ -85,8 +85,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-moz-context-properties")}}

        See also

        diff --git a/files/en-us/web/css/-moz-float-edge/index.html b/files/en-us/web/css/-moz-float-edge/index.html index 3853c79dca4a832..5c94b1f944cb036 100644 --- a/files/en-us/web/css/-moz-float-edge/index.html +++ b/files/en-us/web/css/-moz-float-edge/index.html @@ -78,8 +78,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-moz-float-edge")}}

        See also

        diff --git a/files/en-us/web/css/-moz-force-broken-image-icon/index.html b/files/en-us/web/css/-moz-force-broken-image-icon/index.html index 119c6a183dca57d..6d2ea39906ac83d 100644 --- a/files/en-us/web/css/-moz-force-broken-image-icon/index.html +++ b/files/en-us/web/css/-moz-force-broken-image-icon/index.html @@ -64,8 +64,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-moz-force-broken-image-icon")}}

        See also

        diff --git a/files/en-us/web/css/-moz-image-rect/index.html b/files/en-us/web/css/-moz-image-rect/index.html index be8506198e0d80f..2b6eccbb12013dd 100644 --- a/files/en-us/web/css/-moz-image-rect/index.html +++ b/files/en-us/web/css/-moz-image-rect/index.html @@ -146,8 +146,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.types.-moz-image-rect")}}

        See also

        diff --git a/files/en-us/web/css/-moz-image-region/index.html b/files/en-us/web/css/-moz-image-region/index.html index f1365f4f5b1a6de..622fa8e5891ea64 100644 --- a/files/en-us/web/css/-moz-image-region/index.html +++ b/files/en-us/web/css/-moz-image-region/index.html @@ -69,8 +69,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-moz-image-region")}}

        See also

        diff --git a/files/en-us/web/css/-moz-orient/index.html b/files/en-us/web/css/-moz-orient/index.html index 102209964ff62b5..fdf545bcb568800 100644 --- a/files/en-us/web/css/-moz-orient/index.html +++ b/files/en-us/web/css/-moz-orient/index.html @@ -71,8 +71,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-moz-orient")}}

        See also

        diff --git a/files/en-us/web/css/-moz-outline-radius-bottomleft/index.html b/files/en-us/web/css/-moz-outline-radius-bottomleft/index.html index e1a7d3cea618486..60be93ee36fc326 100644 --- a/files/en-us/web/css/-moz-outline-radius-bottomleft/index.html +++ b/files/en-us/web/css/-moz-outline-radius-bottomleft/index.html @@ -64,8 +64,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-moz-outline-radius-bottomleft")}}

        See also

        diff --git a/files/en-us/web/css/-moz-outline-radius-bottomright/index.html b/files/en-us/web/css/-moz-outline-radius-bottomright/index.html index b9e32d1b65f0099..cd1180069350034 100644 --- a/files/en-us/web/css/-moz-outline-radius-bottomright/index.html +++ b/files/en-us/web/css/-moz-outline-radius-bottomright/index.html @@ -64,8 +64,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-moz-outline-radius-bottomright")}}

        See also

        diff --git a/files/en-us/web/css/-moz-outline-radius-topleft/index.html b/files/en-us/web/css/-moz-outline-radius-topleft/index.html index 7f624fb8a01feaa..f88397c82f412ed 100644 --- a/files/en-us/web/css/-moz-outline-radius-topleft/index.html +++ b/files/en-us/web/css/-moz-outline-radius-topleft/index.html @@ -62,8 +62,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-moz-outline-radius-topleft")}}

        See also

        diff --git a/files/en-us/web/css/-moz-outline-radius-topright/index.html b/files/en-us/web/css/-moz-outline-radius-topright/index.html index d8daaf6a27e839b..9c6766815effc10 100644 --- a/files/en-us/web/css/-moz-outline-radius-topright/index.html +++ b/files/en-us/web/css/-moz-outline-radius-topright/index.html @@ -64,8 +64,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-moz-outline-radius-topright")}}

        See also

        diff --git a/files/en-us/web/css/-moz-outline-radius/index.html b/files/en-us/web/css/-moz-outline-radius/index.html index 9d8fde999d6fc25..ee4ca727c085584 100644 --- a/files/en-us/web/css/-moz-outline-radius/index.html +++ b/files/en-us/web/css/-moz-outline-radius/index.html @@ -108,8 +108,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-moz-outline-radius")}}

        See also

        diff --git a/files/en-us/web/css/-moz-user-focus/index.html b/files/en-us/web/css/-moz-user-focus/index.html index cd4a070e1d4ccd1..1848864c8f52355 100644 --- a/files/en-us/web/css/-moz-user-focus/index.html +++ b/files/en-us/web/css/-moz-user-focus/index.html @@ -80,8 +80,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-moz-user-focus")}}

        See also

        diff --git a/files/en-us/web/css/-moz-user-input/index.html b/files/en-us/web/css/-moz-user-input/index.html index e22a31e96720a02..aef336286c0427b 100644 --- a/files/en-us/web/css/-moz-user-input/index.html +++ b/files/en-us/web/css/-moz-user-input/index.html @@ -68,8 +68,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-moz-user-input")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-border-before/index.html b/files/en-us/web/css/-webkit-border-before/index.html index c94357b19153847..9ea68f2c3de8159 100644 --- a/files/en-us/web/css/-webkit-border-before/index.html +++ b/files/en-us/web/css/-webkit-border-before/index.html @@ -88,8 +88,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-border-before")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-box-reflect/index.html b/files/en-us/web/css/-webkit-box-reflect/index.html index 311bf33483ef458..c34303d502d2b94 100644 --- a/files/en-us/web/css/-webkit-box-reflect/index.html +++ b/files/en-us/web/css/-webkit-box-reflect/index.html @@ -61,8 +61,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-box-reflect")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-line-clamp/index.html b/files/en-us/web/css/-webkit-line-clamp/index.html index 57ae178eb4a8741..3274e4f0c66a931 100644 --- a/files/en-us/web/css/-webkit-line-clamp/index.html +++ b/files/en-us/web/css/-webkit-line-clamp/index.html @@ -98,8 +98,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-line-clamp")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-mask-attachment/index.html b/files/en-us/web/css/-webkit-mask-attachment/index.html index 2c2a88661a610e6..c09312be278424a 100644 --- a/files/en-us/web/css/-webkit-mask-attachment/index.html +++ b/files/en-us/web/css/-webkit-mask-attachment/index.html @@ -64,8 +64,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-mask-attachment")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-mask-box-image/index.html b/files/en-us/web/css/-webkit-mask-box-image/index.html index 83cae72aa52d20f..c5386959a87deb4 100644 --- a/files/en-us/web/css/-webkit-mask-box-image/index.html +++ b/files/en-us/web/css/-webkit-mask-box-image/index.html @@ -93,8 +93,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-mask-box-image")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-mask-composite/index.html b/files/en-us/web/css/-webkit-mask-composite/index.html index b75511a00a32139..735861cba386cb4 100644 --- a/files/en-us/web/css/-webkit-mask-composite/index.html +++ b/files/en-us/web/css/-webkit-mask-composite/index.html @@ -92,8 +92,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-mask-composite")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-mask-position-x/index.html b/files/en-us/web/css/-webkit-mask-position-x/index.html index 218636db22f6ba3..fc43d93abc1a8b0 100644 --- a/files/en-us/web/css/-webkit-mask-position-x/index.html +++ b/files/en-us/web/css/-webkit-mask-position-x/index.html @@ -81,8 +81,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-mask-position-x")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-mask-position-y/index.html b/files/en-us/web/css/-webkit-mask-position-y/index.html index c459c12c6dcbce6..93b89217e776e8b 100644 --- a/files/en-us/web/css/-webkit-mask-position-y/index.html +++ b/files/en-us/web/css/-webkit-mask-position-y/index.html @@ -81,8 +81,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-mask-position-y")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-mask-repeat-x/index.html b/files/en-us/web/css/-webkit-mask-repeat-x/index.html index c11e80f000fc913..822cefa3b19a867 100644 --- a/files/en-us/web/css/-webkit-mask-repeat-x/index.html +++ b/files/en-us/web/css/-webkit-mask-repeat-x/index.html @@ -86,8 +86,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-mask-repeat-x")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-mask-repeat-y/index.html b/files/en-us/web/css/-webkit-mask-repeat-y/index.html index ccd35ce6ff1e26d..2c2068c3ed20a9e 100644 --- a/files/en-us/web/css/-webkit-mask-repeat-y/index.html +++ b/files/en-us/web/css/-webkit-mask-repeat-y/index.html @@ -86,8 +86,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-mask-repeat-y")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-overflow-scrolling/index.html b/files/en-us/web/css/-webkit-overflow-scrolling/index.html index 706d1ba06de12f7..1744ff2098170a5 100644 --- a/files/en-us/web/css/-webkit-overflow-scrolling/index.html +++ b/files/en-us/web/css/-webkit-overflow-scrolling/index.html @@ -79,8 +79,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-overflow-scrolling")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-print-color-adjust/index.html b/files/en-us/web/css/-webkit-print-color-adjust/index.html index cc30dccce06a0f5..f8a08dffb783ff6 100644 --- a/files/en-us/web/css/-webkit-print-color-adjust/index.html +++ b/files/en-us/web/css/-webkit-print-color-adjust/index.html @@ -60,8 +60,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-print-color-adjust")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-tap-highlight-color/index.html b/files/en-us/web/css/-webkit-tap-highlight-color/index.html index 1b08897ea824e9f..31610385507cf91 100644 --- a/files/en-us/web/css/-webkit-tap-highlight-color/index.html +++ b/files/en-us/web/css/-webkit-tap-highlight-color/index.html @@ -41,8 +41,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-tap-highlight-color")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-text-fill-color/index.html b/files/en-us/web/css/-webkit-text-fill-color/index.html index 6d40c6820edb593..06f0a7ff9a1e997 100644 --- a/files/en-us/web/css/-webkit-text-fill-color/index.html +++ b/files/en-us/web/css/-webkit-text-fill-color/index.html @@ -89,8 +89,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-text-fill-color")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-text-security/index.html b/files/en-us/web/css/-webkit-text-security/index.html index a4dd31e2edc88bb..62d28c3fe9a1523 100644 --- a/files/en-us/web/css/-webkit-text-security/index.html +++ b/files/en-us/web/css/-webkit-text-security/index.html @@ -56,8 +56,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-text-security")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-text-stroke-color/index.html b/files/en-us/web/css/-webkit-text-stroke-color/index.html index eda6fe36ca50d3a..d982a9fe2eb91e6 100644 --- a/files/en-us/web/css/-webkit-text-stroke-color/index.html +++ b/files/en-us/web/css/-webkit-text-stroke-color/index.html @@ -100,8 +100,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-text-stroke-color")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-text-stroke-width/index.html b/files/en-us/web/css/-webkit-text-stroke-width/index.html index 9dfe4e8cb6c2eff..27ee3bf6141c115 100644 --- a/files/en-us/web/css/-webkit-text-stroke-width/index.html +++ b/files/en-us/web/css/-webkit-text-stroke-width/index.html @@ -110,8 +110,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-text-stroke-width")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-text-stroke/index.html b/files/en-us/web/css/-webkit-text-stroke/index.html index 0629129ba5190ae..e3330dd002c1638 100644 --- a/files/en-us/web/css/-webkit-text-stroke/index.html +++ b/files/en-us/web/css/-webkit-text-stroke/index.html @@ -100,8 +100,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-text-stroke")}}

        See also

        diff --git a/files/en-us/web/css/-webkit-touch-callout/index.html b/files/en-us/web/css/-webkit-touch-callout/index.html index 262474173f40784..13648b82f31659e 100644 --- a/files/en-us/web/css/-webkit-touch-callout/index.html +++ b/files/en-us/web/css/-webkit-touch-callout/index.html @@ -60,8 +60,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.-webkit-touch-callout")}}

        See also

        diff --git a/files/en-us/web/css/@charset/index.html b/files/en-us/web/css/@charset/index.html index 0c7a34a1c9c23d6..b0c48de5851ff12 100644 --- a/files/en-us/web/css/@charset/index.html +++ b/files/en-us/web/css/@charset/index.html @@ -76,8 +76,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.charset")}}

        See also

        diff --git a/files/en-us/web/css/@counter-style/additive-symbols/index.html b/files/en-us/web/css/@counter-style/additive-symbols/index.html index 5f4dcd382558ccd..60dcd452ea6c40d 100644 --- a/files/en-us/web/css/@counter-style/additive-symbols/index.html +++ b/files/en-us/web/css/@counter-style/additive-symbols/index.html @@ -79,8 +79,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.counter-style.additive-symbols")}}

        See also

        diff --git a/files/en-us/web/css/@counter-style/fallback/index.html b/files/en-us/web/css/@counter-style/fallback/index.html index cae82bed20fcace..747560e5d87d3bd 100644 --- a/files/en-us/web/css/@counter-style/fallback/index.html +++ b/files/en-us/web/css/@counter-style/fallback/index.html @@ -94,8 +94,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.counter-style.fallback")}}

        See also

        diff --git a/files/en-us/web/css/@counter-style/index.html b/files/en-us/web/css/@counter-style/index.html index ee6e6ead2a4042f..f6a8d07c50408d0 100644 --- a/files/en-us/web/css/@counter-style/index.html +++ b/files/en-us/web/css/@counter-style/index.html @@ -149,8 +149,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.counter-style")}}

        Quantum CSS notes

        diff --git a/files/en-us/web/css/@counter-style/negative/index.html b/files/en-us/web/css/@counter-style/negative/index.html index f7e4cf80bb57784..db604c738b389bd 100644 --- a/files/en-us/web/css/@counter-style/negative/index.html +++ b/files/en-us/web/css/@counter-style/negative/index.html @@ -91,8 +91,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.counter-style.negative")}}

        See also

        diff --git a/files/en-us/web/css/@counter-style/pad/index.html b/files/en-us/web/css/@counter-style/pad/index.html index 0b17e104d0aa0ab..dbfe7ce14920552 100644 --- a/files/en-us/web/css/@counter-style/pad/index.html +++ b/files/en-us/web/css/@counter-style/pad/index.html @@ -88,8 +88,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.counter-style.pad")}}

        See also

        diff --git a/files/en-us/web/css/@counter-style/prefix/index.html b/files/en-us/web/css/@counter-style/prefix/index.html index b3a03c44311433f..2767c9f349e587f 100644 --- a/files/en-us/web/css/@counter-style/prefix/index.html +++ b/files/en-us/web/css/@counter-style/prefix/index.html @@ -28,7 +28,6 @@

        Values

        Specifies a <symbol> that is prepended to the marker representation. It may be a {{cssxref("<string>")}}, {{cssxref("<image>")}}, or {{cssxref("<custom-ident>")}}.
        -

        Formal definition

        {{cssinfo}}

        @@ -89,8 +88,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.counter-style.prefix")}}

        See also

        diff --git a/files/en-us/web/css/@counter-style/range/index.html b/files/en-us/web/css/@counter-style/range/index.html index 46f306d131a6fd5..41c35a9ee32544a 100644 --- a/files/en-us/web/css/@counter-style/range/index.html +++ b/files/en-us/web/css/@counter-style/range/index.html @@ -123,8 +123,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.counter-style.range")}}

        See also

        diff --git a/files/en-us/web/css/@counter-style/speak-as/index.html b/files/en-us/web/css/@counter-style/speak-as/index.html index 9d8d40025ec5b14..9c49cf8a8bdf021 100644 --- a/files/en-us/web/css/@counter-style/speak-as/index.html +++ b/files/en-us/web/css/@counter-style/speak-as/index.html @@ -49,7 +49,6 @@

        Values

        The name of another counter style, specified as a {{cssxref("<custom-ident>")}}. If included, the counter will be spoken out in the form specified in that counter style, kind of like specifying the {{cssxref("fallback")}} descriptor. If the specified style does not exist, speak-as defaults to auto.
        -

        Accessibility concerns

        Assistive technology support is very limited for the speak-as property. Do not rely on it to convey information critical to understanding the page's purpose.

        @@ -95,7 +94,6 @@

        Result

        {{ EmbedLiveSample('Setting_the_spoken_form_for_a_counter') }}

        -

        Specifications

        @@ -117,8 +115,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.counter-style.speak-as")}}

        See also

        diff --git a/files/en-us/web/css/@counter-style/suffix/index.html b/files/en-us/web/css/@counter-style/suffix/index.html index 5d244f4f78a511f..808de1179e97c72 100644 --- a/files/en-us/web/css/@counter-style/suffix/index.html +++ b/files/en-us/web/css/@counter-style/suffix/index.html @@ -86,8 +86,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.counter-style.suffix")}}

        See also

        diff --git a/files/en-us/web/css/@counter-style/symbols/index.html b/files/en-us/web/css/@counter-style/symbols/index.html index ea6fede82410f05..2136c38ed8e881f 100644 --- a/files/en-us/web/css/@counter-style/symbols/index.html +++ b/files/en-us/web/css/@counter-style/symbols/index.html @@ -101,8 +101,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.counter-style.symbols")}}

        See also

        diff --git a/files/en-us/web/css/@counter-style/system/index.html b/files/en-us/web/css/@counter-style/system/index.html index 7ca92de350625a0..f4b1640973aa59e 100644 --- a/files/en-us/web/css/@counter-style/system/index.html +++ b/files/en-us/web/css/@counter-style/system/index.html @@ -393,8 +393,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.counter-style.system")}}

        See also

        diff --git a/files/en-us/web/css/@document/index.html b/files/en-us/web/css/@document/index.html index e4f976a3bc6293e..df3a8e4471943eb 100644 --- a/files/en-us/web/css/@document/index.html +++ b/files/en-us/web/css/@document/index.html @@ -74,8 +74,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.document")}}

        See also

        diff --git a/files/en-us/web/css/@font-face/font-display/index.html b/files/en-us/web/css/@font-face/font-display/index.html index 7987cd53409631c..a70dbdeaffd6fc1 100644 --- a/files/en-us/web/css/@font-face/font-display/index.html +++ b/files/en-us/web/css/@font-face/font-display/index.html @@ -57,7 +57,6 @@

        The font display timeline

        If the font face is not loaded, the user agent treats it as a failed load causing normal font fallback.
        -

        Formal definition

        {{cssinfo}}

        @@ -99,8 +98,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.font-face.font-display")}}

        See also

        diff --git a/files/en-us/web/css/@font-face/font-family/index.html b/files/en-us/web/css/@font-face/font-family/index.html index cdb249c4481f1b4..af9ec6f4dc9ca9e 100644 --- a/files/en-us/web/css/@font-face/font-family/index.html +++ b/files/en-us/web/css/@font-face/font-family/index.html @@ -69,8 +69,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.font-face.font-family")}}

        See also

        diff --git a/files/en-us/web/css/@font-face/font-stretch/index.html b/files/en-us/web/css/@font-face/font-stretch/index.html index c671c0eacf2f09b..ef526eee96e016d 100644 --- a/files/en-us/web/css/@font-face/font-stretch/index.html +++ b/files/en-us/web/css/@font-face/font-stretch/index.html @@ -142,8 +142,6 @@

        Setting a percentage range font-stretch: 87.5% 112.5%; } - -

        Specifications

        @@ -170,8 +168,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.font-face.font-stretch")}}

        See also

        diff --git a/files/en-us/web/css/@font-face/font-style/index.html b/files/en-us/web/css/@font-face/font-style/index.html index 838007be55e700e..27d33990c89b62e 100644 --- a/files/en-us/web/css/@font-face/font-style/index.html +++ b/files/en-us/web/css/@font-face/font-style/index.html @@ -103,8 +103,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.font-face.font-style")}}

        See also

        diff --git a/files/en-us/web/css/@font-face/font-variation-settings/index.html b/files/en-us/web/css/@font-face/font-variation-settings/index.html index ec58e5abd8003d2..3fac7fb61f0a3e6 100644 --- a/files/en-us/web/css/@font-face/font-variation-settings/index.html +++ b/files/en-us/web/css/@font-face/font-variation-settings/index.html @@ -73,8 +73,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.font-face.font-variation-settings")}}

        See also

        diff --git a/files/en-us/web/css/@font-face/font-weight/index.html b/files/en-us/web/css/@font-face/font-weight/index.html index 966798f4bfc5c0c..8defc2f4440c0dc 100644 --- a/files/en-us/web/css/@font-face/font-weight/index.html +++ b/files/en-us/web/css/@font-face/font-weight/index.html @@ -159,8 +159,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.font-face.font-weight")}}

        See also

        diff --git a/files/en-us/web/css/@font-face/index.html b/files/en-us/web/css/@font-face/index.html index eee2eff05b7e953..f68ae065774392d 100644 --- a/files/en-us/web/css/@font-face/index.html +++ b/files/en-us/web/css/@font-face/index.html @@ -189,8 +189,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.font-face")}}

        See also

        diff --git a/files/en-us/web/css/@font-face/src/index.html b/files/en-us/web/css/@font-face/src/index.html index 46fa919b3d8b46a..f917e93a103cc00 100644 --- a/files/en-us/web/css/@font-face/src/index.html +++ b/files/en-us/web/css/@font-face/src/index.html @@ -90,8 +90,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.font-face.src")}}

        See also

        diff --git a/files/en-us/web/css/@font-face/unicode-range/index.html b/files/en-us/web/css/@font-face/unicode-range/index.html index fce735f8356bb31..02c46e273774f84 100644 --- a/files/en-us/web/css/@font-face/unicode-range/index.html +++ b/files/en-us/web/css/@font-face/unicode-range/index.html @@ -98,8 +98,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.font-face.unicode-range")}}

        See also

        diff --git a/files/en-us/web/css/@font-feature-values/index.html b/files/en-us/web/css/@font-feature-values/index.html index fd1df1b1e7578b5..c6045caeffda345 100644 --- a/files/en-us/web/css/@font-feature-values/index.html +++ b/files/en-us/web/css/@font-feature-values/index.html @@ -85,7 +85,6 @@

        Browser compatibility

        -

        {{Compat("css.at-rules.font-feature-values")}}

        diff --git a/files/en-us/web/css/@import/index.html b/files/en-us/web/css/@import/index.html index 3ed606ccdb64200..153b445ff7ade95 100644 --- a/files/en-us/web/css/@import/index.html +++ b/files/en-us/web/css/@import/index.html @@ -97,8 +97,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.import")}}

        See also

        diff --git a/files/en-us/web/css/@media/-moz-device-pixel-ratio/index.html b/files/en-us/web/css/@media/-moz-device-pixel-ratio/index.html index 443abc17a17f2ac..d51d92f5fc0913e 100644 --- a/files/en-us/web/css/@media/-moz-device-pixel-ratio/index.html +++ b/files/en-us/web/css/@media/-moz-device-pixel-ratio/index.html @@ -52,8 +52,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.-moz-device-pixel-ratio")}}

        See also

        diff --git a/files/en-us/web/css/@media/-webkit-animation/index.html b/files/en-us/web/css/@media/-webkit-animation/index.html index 04a858523dc1d50..6d5462690a3fe5f 100644 --- a/files/en-us/web/css/@media/-webkit-animation/index.html +++ b/files/en-us/web/css/@media/-webkit-animation/index.html @@ -45,8 +45,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.-webkit-animation")}}

        See also

        diff --git a/files/en-us/web/css/@media/-webkit-device-pixel-ratio/index.html b/files/en-us/web/css/@media/-webkit-device-pixel-ratio/index.html index 836baf4697932bb..3efcf2fa50427a0 100644 --- a/files/en-us/web/css/@media/-webkit-device-pixel-ratio/index.html +++ b/files/en-us/web/css/@media/-webkit-device-pixel-ratio/index.html @@ -102,8 +102,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.-webkit-device-pixel-ratio")}}

        See also

        diff --git a/files/en-us/web/css/@media/-webkit-transform-2d/index.html b/files/en-us/web/css/@media/-webkit-transform-2d/index.html index ad812b8db98b2e0..1b6efde10cdcfe8 100644 --- a/files/en-us/web/css/@media/-webkit-transform-2d/index.html +++ b/files/en-us/web/css/@media/-webkit-transform-2d/index.html @@ -52,8 +52,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.-webkit-transform-2d")}}

        See also

        diff --git a/files/en-us/web/css/@media/-webkit-transform-3d/index.html b/files/en-us/web/css/@media/-webkit-transform-3d/index.html index 56c3607be8756cc..9ebe94942000590 100644 --- a/files/en-us/web/css/@media/-webkit-transform-3d/index.html +++ b/files/en-us/web/css/@media/-webkit-transform-3d/index.html @@ -76,8 +76,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.-webkit-transform-3d")}}

        See also

        diff --git a/files/en-us/web/css/@media/-webkit-transition/index.html b/files/en-us/web/css/@media/-webkit-transition/index.html index 263dba5bff9d00d..31fb21b763428b0 100644 --- a/files/en-us/web/css/@media/-webkit-transition/index.html +++ b/files/en-us/web/css/@media/-webkit-transition/index.html @@ -53,8 +53,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.-webkit-transition")}}

        See also

        diff --git a/files/en-us/web/css/@media/any-hover/index.html b/files/en-us/web/css/@media/any-hover/index.html index c2835e23af70388..e1fe17b263c7f03 100644 --- a/files/en-us/web/css/@media/any-hover/index.html +++ b/files/en-us/web/css/@media/any-hover/index.html @@ -64,8 +64,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.any-hover")}}

        See also

        diff --git a/files/en-us/web/css/@media/any-pointer/index.html b/files/en-us/web/css/@media/any-pointer/index.html index 67bc7c6c4cb0800..4bf535febebe24e 100644 --- a/files/en-us/web/css/@media/any-pointer/index.html +++ b/files/en-us/web/css/@media/any-pointer/index.html @@ -96,8 +96,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.any-pointer")}}

        See also

        diff --git a/files/en-us/web/css/@media/aspect-ratio/index.html b/files/en-us/web/css/@media/aspect-ratio/index.html index 2d1a0ee0f9fdda6..014740f6ef96c35 100644 --- a/files/en-us/web/css/@media/aspect-ratio/index.html +++ b/files/en-us/web/css/@media/aspect-ratio/index.html @@ -122,8 +122,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.aspect-ratio")}}

        See also

        diff --git a/files/en-us/web/css/@media/color-gamut/index.html b/files/en-us/web/css/@media/color-gamut/index.html index d6cd3c62742d455..ba5063c580b432c 100644 --- a/files/en-us/web/css/@media/color-gamut/index.html +++ b/files/en-us/web/css/@media/color-gamut/index.html @@ -64,8 +64,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.color-gamut")}}

        See also

        diff --git a/files/en-us/web/css/@media/color-index/index.html b/files/en-us/web/css/@media/color-index/index.html index e9f0f6fee4e6432..19a0cb14a087c00 100644 --- a/files/en-us/web/css/@media/color-index/index.html +++ b/files/en-us/web/css/@media/color-index/index.html @@ -80,8 +80,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.color-index")}}

        See also

        diff --git a/files/en-us/web/css/@media/color/index.html b/files/en-us/web/css/@media/color/index.html index 7a990710c48b238..330085799da514a 100644 --- a/files/en-us/web/css/@media/color/index.html +++ b/files/en-us/web/css/@media/color/index.html @@ -79,8 +79,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.color")}}

        See also

        diff --git a/files/en-us/web/css/@media/device-aspect-ratio/index.html b/files/en-us/web/css/@media/device-aspect-ratio/index.html index c716f6c88468929..161a2918594f7a4 100644 --- a/files/en-us/web/css/@media/device-aspect-ratio/index.html +++ b/files/en-us/web/css/@media/device-aspect-ratio/index.html @@ -58,6 +58,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.device-aspect-ratio")}}

        diff --git a/files/en-us/web/css/@media/device-height/index.html b/files/en-us/web/css/@media/device-height/index.html index add6a9e07801de4..be47c3c3e6e2647 100644 --- a/files/en-us/web/css/@media/device-height/index.html +++ b/files/en-us/web/css/@media/device-height/index.html @@ -49,8 +49,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.device-height")}}

        See also

        diff --git a/files/en-us/web/css/@media/device-width/index.html b/files/en-us/web/css/@media/device-width/index.html index c8baefb7310d216..3bfd10fa892068c 100644 --- a/files/en-us/web/css/@media/device-width/index.html +++ b/files/en-us/web/css/@media/device-width/index.html @@ -49,8 +49,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.device-width")}}

        See also

        diff --git a/files/en-us/web/css/@media/display-mode/index.html b/files/en-us/web/css/@media/display-mode/index.html index d5112da635527a8..ca0bfda7cc12b43 100644 --- a/files/en-us/web/css/@media/display-mode/index.html +++ b/files/en-us/web/css/@media/display-mode/index.html @@ -85,8 +85,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.display-mode")}}

        See also

        diff --git a/files/en-us/web/css/@media/grid/index.html b/files/en-us/web/css/@media/grid/index.html index f441518a973f88f..f1f7b721ab7c08e 100644 --- a/files/en-us/web/css/@media/grid/index.html +++ b/files/en-us/web/css/@media/grid/index.html @@ -84,8 +84,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.grid")}}

        See also

        diff --git a/files/en-us/web/css/@media/height/index.html b/files/en-us/web/css/@media/height/index.html index 6614bd2101b2e25..39e95d8467d56df 100644 --- a/files/en-us/web/css/@media/height/index.html +++ b/files/en-us/web/css/@media/height/index.html @@ -76,8 +76,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.height")}}

        See also

        diff --git a/files/en-us/web/css/@media/hover/index.html b/files/en-us/web/css/@media/hover/index.html index e916968651a73b2..73eb863e9127d36 100644 --- a/files/en-us/web/css/@media/hover/index.html +++ b/files/en-us/web/css/@media/hover/index.html @@ -62,8 +62,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.hover")}}

        See also

        diff --git a/files/en-us/web/css/@media/index.html b/files/en-us/web/css/@media/index.html index 11abf825dc41c67..f5eee5fa3432f3b 100644 --- a/files/en-us/web/css/@media/index.html +++ b/files/en-us/web/css/@media/index.html @@ -150,8 +150,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media")}}

        See also

        diff --git a/files/en-us/web/css/@media/inverted-colors/index.html b/files/en-us/web/css/@media/inverted-colors/index.html index fc8b45202d6a509..28ca7ede341e834 100644 --- a/files/en-us/web/css/@media/inverted-colors/index.html +++ b/files/en-us/web/css/@media/inverted-colors/index.html @@ -75,8 +75,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.inverted-colors")}}

        See also

        diff --git a/files/en-us/web/css/@media/monochrome/index.html b/files/en-us/web/css/@media/monochrome/index.html index eb280ea2bae7f9d..117e0d930e23ce4 100644 --- a/files/en-us/web/css/@media/monochrome/index.html +++ b/files/en-us/web/css/@media/monochrome/index.html @@ -75,6 +75,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.monochrome")}}

        diff --git a/files/en-us/web/css/@media/orientation/index.html b/files/en-us/web/css/@media/orientation/index.html index f08e0b8369a9c3e..e63d0b768168821 100644 --- a/files/en-us/web/css/@media/orientation/index.html +++ b/files/en-us/web/css/@media/orientation/index.html @@ -91,6 +91,4 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.orientation")}}

        diff --git a/files/en-us/web/css/@media/overflow-block/index.html b/files/en-us/web/css/@media/overflow-block/index.html index a0912f1bb6bfc59..beb0c970e6d4a9c 100644 --- a/files/en-us/web/css/@media/overflow-block/index.html +++ b/files/en-us/web/css/@media/overflow-block/index.html @@ -67,8 +67,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.overflow-block")}}

        See also

        diff --git a/files/en-us/web/css/@media/overflow-inline/index.html b/files/en-us/web/css/@media/overflow-inline/index.html index f7f61f03b74e89c..3e144a64c5f0555 100644 --- a/files/en-us/web/css/@media/overflow-inline/index.html +++ b/files/en-us/web/css/@media/overflow-inline/index.html @@ -67,6 +67,4 @@

        Specifications

        Browser compatibility

        - -
        {{Compat("css.at-rules.media.overflow-inline")}}
        diff --git a/files/en-us/web/css/@media/pointer/index.html b/files/en-us/web/css/@media/pointer/index.html index 06be611561c6d3e..2b92d57f586aa06 100644 --- a/files/en-us/web/css/@media/pointer/index.html +++ b/files/en-us/web/css/@media/pointer/index.html @@ -95,8 +95,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.pointer")}}

        See also

        diff --git a/files/en-us/web/css/@media/prefers-color-scheme/index.html b/files/en-us/web/css/@media/prefers-color-scheme/index.html index 415f02f56c55527..e7de24e7f9b2f23 100644 --- a/files/en-us/web/css/@media/prefers-color-scheme/index.html +++ b/files/en-us/web/css/@media/prefers-color-scheme/index.html @@ -89,8 +89,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.prefers-color-scheme")}}

        See also

        diff --git a/files/en-us/web/css/@media/prefers-contrast/index.html b/files/en-us/web/css/@media/prefers-contrast/index.html index cafefe473aecedd..2e689f13b20c54f 100644 --- a/files/en-us/web/css/@media/prefers-contrast/index.html +++ b/files/en-us/web/css/@media/prefers-contrast/index.html @@ -74,8 +74,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.prefers-contrast")}}

        See also

        diff --git a/files/en-us/web/css/@media/prefers-reduced-data/index.html b/files/en-us/web/css/@media/prefers-reduced-data/index.html index 8fc918c6c73cae6..72abcf5d4d31878 100644 --- a/files/en-us/web/css/@media/prefers-reduced-data/index.html +++ b/files/en-us/web/css/@media/prefers-reduced-data/index.html @@ -89,8 +89,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.prefers-reduced-data")}}

        See also

        diff --git a/files/en-us/web/css/@media/prefers-reduced-motion/index.html b/files/en-us/web/css/@media/prefers-reduced-motion/index.html index d0f32d0aa6f2f2f..0128e710a9b522f 100644 --- a/files/en-us/web/css/@media/prefers-reduced-motion/index.html +++ b/files/en-us/web/css/@media/prefers-reduced-motion/index.html @@ -118,8 +118,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.prefers-reduced-motion")}}

        See also

        diff --git a/files/en-us/web/css/@media/resolution/index.html b/files/en-us/web/css/@media/resolution/index.html index 37094e538e7c7c0..614203aa592b193 100644 --- a/files/en-us/web/css/@media/resolution/index.html +++ b/files/en-us/web/css/@media/resolution/index.html @@ -71,8 +71,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.resolution")}}

        See also

        diff --git a/files/en-us/web/css/@media/scan/index.html b/files/en-us/web/css/@media/scan/index.html index 82d240f84e6938a..2e8b75bdbf6cc30 100644 --- a/files/en-us/web/css/@media/scan/index.html +++ b/files/en-us/web/css/@media/scan/index.html @@ -80,8 +80,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.scan")}}

        See also

        diff --git a/files/en-us/web/css/@media/scripting/index.html b/files/en-us/web/css/@media/scripting/index.html index 7142dc0e977b8c3..64405a8d06c6775 100644 --- a/files/en-us/web/css/@media/scripting/index.html +++ b/files/en-us/web/css/@media/scripting/index.html @@ -83,8 +83,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.scripting")}}

        See also

        diff --git a/files/en-us/web/css/@media/shape/index.html b/files/en-us/web/css/@media/shape/index.html index 6be812c8f1b29d7..065a684d4ee5f21 100644 --- a/files/en-us/web/css/@media/shape/index.html +++ b/files/en-us/web/css/@media/shape/index.html @@ -80,8 +80,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.shape")}}

        See also

        diff --git a/files/en-us/web/css/@media/update-frequency/index.html b/files/en-us/web/css/@media/update-frequency/index.html index 1d05843955180a2..fe77f2a1528b89d 100644 --- a/files/en-us/web/css/@media/update-frequency/index.html +++ b/files/en-us/web/css/@media/update-frequency/index.html @@ -75,8 +75,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.update")}}

        See also

        diff --git a/files/en-us/web/css/@media/width/index.html b/files/en-us/web/css/@media/width/index.html index aa060a3fbbe57e0..9f6afa586265017 100644 --- a/files/en-us/web/css/@media/width/index.html +++ b/files/en-us/web/css/@media/width/index.html @@ -76,8 +76,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.media.width")}}

        See also

        diff --git a/files/en-us/web/css/@namespace/index.html b/files/en-us/web/css/@namespace/index.html index a7c818a5487d29e..2b39aabade795ac 100644 --- a/files/en-us/web/css/@namespace/index.html +++ b/files/en-us/web/css/@namespace/index.html @@ -80,8 +80,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.namespace")}}

        See also

        diff --git a/files/en-us/web/css/@page/bleed/index.html b/files/en-us/web/css/@page/bleed/index.html index 48ba254c9d84409..0ef8a1377da526d 100644 --- a/files/en-us/web/css/@page/bleed/index.html +++ b/files/en-us/web/css/@page/bleed/index.html @@ -73,8 +73,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.page.bleed")}}

        See also

        diff --git a/files/en-us/web/css/@page/index.html b/files/en-us/web/css/@page/index.html index 93561578ce39d96..73a7300812593e8 100644 --- a/files/en-us/web/css/@page/index.html +++ b/files/en-us/web/css/@page/index.html @@ -98,8 +98,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.page")}}

        See also

        diff --git a/files/en-us/web/css/@page/marks/index.html b/files/en-us/web/css/@page/marks/index.html index 1469212f4bdadd7..f662e7787ac135d 100644 --- a/files/en-us/web/css/@page/marks/index.html +++ b/files/en-us/web/css/@page/marks/index.html @@ -17,7 +17,6 @@

        Crop marks and cross marks are printed outside the page box. To have room to show crop and cross marks, the final pages will have to be somewhat bigger than the page box.

        -

        Syntax

        /* Keyword values */
        @@ -78,8 +77,6 @@ 

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.page.marks")}}

        See also

        diff --git a/files/en-us/web/css/@page/size/index.html b/files/en-us/web/css/@page/size/index.html index 50ffbdccc0dbc63..750f6d071bc5e78 100644 --- a/files/en-us/web/css/@page/size/index.html +++ b/files/en-us/web/css/@page/size/index.html @@ -126,8 +126,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.page.size")}}

        See also

        diff --git a/files/en-us/web/css/@supports/index.html b/files/en-us/web/css/@supports/index.html index dd4ee9f8054cb30..4b6bfd78f2ddd82 100644 --- a/files/en-us/web/css/@supports/index.html +++ b/files/en-us/web/css/@supports/index.html @@ -188,8 +188,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.supports")}}

        See also

        diff --git a/files/en-us/web/css/@viewport/index.html b/files/en-us/web/css/@viewport/index.html index 2050f17c16c50c1..34996695cd79775 100644 --- a/files/en-us/web/css/@viewport/index.html +++ b/files/en-us/web/css/@viewport/index.html @@ -119,8 +119,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.at-rules.viewport")}}

        See also

        diff --git a/files/en-us/web/css/_colon_-moz-broken/index.html b/files/en-us/web/css/_colon_-moz-broken/index.html index 46a72b9c22431ca..51b5d258c9782e6 100644 --- a/files/en-us/web/css/_colon_-moz-broken/index.html +++ b/files/en-us/web/css/_colon_-moz-broken/index.html @@ -45,8 +45,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-broken")}}

        See also

        diff --git a/files/en-us/web/css/_colon_-moz-drag-over/index.html b/files/en-us/web/css/_colon_-moz-drag-over/index.html index 32dfb63eb179b76..bc6227ae526962f 100644 --- a/files/en-us/web/css/_colon_-moz-drag-over/index.html +++ b/files/en-us/web/css/_colon_-moz-drag-over/index.html @@ -49,8 +49,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors:-moz-drag-over")}}

        See also

        diff --git a/files/en-us/web/css/_colon_-moz-focusring/index.html b/files/en-us/web/css/_colon_-moz-focusring/index.html index 7bfb27e58efa215..364feedf84ec7bb 100644 --- a/files/en-us/web/css/_colon_-moz-focusring/index.html +++ b/files/en-us/web/css/_colon_-moz-focusring/index.html @@ -58,8 +58,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-focusring")}}

        See also

        diff --git a/files/en-us/web/css/_colon_-moz-only-whitespace/index.html b/files/en-us/web/css/_colon_-moz-only-whitespace/index.html index e6878cfc11a42f6..5129ccc9f9dedf0 100644 --- a/files/en-us/web/css/_colon_-moz-only-whitespace/index.html +++ b/files/en-us/web/css/_colon_-moz-only-whitespace/index.html @@ -52,8 +52,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-only-whitespace")}}

        See also

        diff --git a/files/en-us/web/css/_colon_-moz-submit-invalid/index.html b/files/en-us/web/css/_colon_-moz-submit-invalid/index.html index 581468dfbd672f4..2f171293e092667 100644 --- a/files/en-us/web/css/_colon_-moz-submit-invalid/index.html +++ b/files/en-us/web/css/_colon_-moz-submit-invalid/index.html @@ -26,8 +26,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-submit-invalid")}}

        See also

        diff --git a/files/en-us/web/css/_colon_-moz-ui-valid/index.html b/files/en-us/web/css/_colon_-moz-ui-valid/index.html index e9c3551667b1d3c..e12040e96805ae6 100644 --- a/files/en-us/web/css/_colon_-moz-ui-valid/index.html +++ b/files/en-us/web/css/_colon_-moz-ui-valid/index.html @@ -37,8 +37,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-ui-valid")}}

        See also

        diff --git a/files/en-us/web/css/_colon_-moz-window-inactive/index.html b/files/en-us/web/css/_colon_-moz-window-inactive/index.html index df56568a91ec00a..67cf6b23bb38dfe 100644 --- a/files/en-us/web/css/_colon_-moz-window-inactive/index.html +++ b/files/en-us/web/css/_colon_-moz-window-inactive/index.html @@ -55,8 +55,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-window-inactive")}}

        See also

        diff --git a/files/en-us/web/css/_colon_-webkit-autofill/index.html b/files/en-us/web/css/_colon_-webkit-autofill/index.html index 9a0270c62f39e92..9b97a5b2a7e694a 100644 --- a/files/en-us/web/css/_colon_-webkit-autofill/index.html +++ b/files/en-us/web/css/_colon_-webkit-autofill/index.html @@ -25,8 +25,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-autofill")}}

        See also

        diff --git a/files/en-us/web/css/_colon_active/index.html b/files/en-us/web/css/_colon_active/index.html index 99f99624f8d12b3..9685ef4f9333c7b 100644 --- a/files/en-us/web/css/_colon_active/index.html +++ b/files/en-us/web/css/_colon_active/index.html @@ -118,7 +118,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.active")}}

        diff --git a/files/en-us/web/css/_colon_blank/index.html b/files/en-us/web/css/_colon_blank/index.html index bdadfee68274c01..575544043accf89 100644 --- a/files/en-us/web/css/_colon_blank/index.html +++ b/files/en-us/web/css/_colon_blank/index.html @@ -67,8 +67,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.blank")}}

        See also

        diff --git a/files/en-us/web/css/_colon_checked/index.html b/files/en-us/web/css/_colon_checked/index.html index 55a43a75ccdfecc..bccd8474ba7db35 100644 --- a/files/en-us/web/css/_colon_checked/index.html +++ b/files/en-us/web/css/_colon_checked/index.html @@ -200,7 +200,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.checked")}}

        See also

        diff --git a/files/en-us/web/css/_colon_default/index.html b/files/en-us/web/css/_colon_default/index.html index 870f38aa37dc779..fbf2328258165bd 100644 --- a/files/en-us/web/css/_colon_default/index.html +++ b/files/en-us/web/css/_colon_default/index.html @@ -98,7 +98,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.default")}}

        See also

        diff --git a/files/en-us/web/css/_colon_defined/index.html b/files/en-us/web/css/_colon_defined/index.html index a71e6fcda86dfce..5f11134f907974d 100644 --- a/files/en-us/web/css/_colon_defined/index.html +++ b/files/en-us/web/css/_colon_defined/index.html @@ -106,7 +106,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.defined")}}

        diff --git a/files/en-us/web/css/_colon_dir/index.html b/files/en-us/web/css/_colon_dir/index.html index d09373599715585..b22052339341e7c 100644 --- a/files/en-us/web/css/_colon_dir/index.html +++ b/files/en-us/web/css/_colon_dir/index.html @@ -99,7 +99,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.dir")}}

        diff --git a/files/en-us/web/css/_colon_disabled/index.html b/files/en-us/web/css/_colon_disabled/index.html index 9dc8ed6973e3a07..a3f25328eccf121 100644 --- a/files/en-us/web/css/_colon_disabled/index.html +++ b/files/en-us/web/css/_colon_disabled/index.html @@ -116,7 +116,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.disabled")}}

        diff --git a/files/en-us/web/css/_colon_empty/index.html b/files/en-us/web/css/_colon_empty/index.html index 3857ca2a69e30de..211e7e9c12e5cd7 100644 --- a/files/en-us/web/css/_colon_empty/index.html +++ b/files/en-us/web/css/_colon_empty/index.html @@ -103,8 +103,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.empty")}}

        See also

        diff --git a/files/en-us/web/css/_colon_enabled/index.html b/files/en-us/web/css/_colon_enabled/index.html index 51bd863ad0f72c8..d1607e3303145a4 100644 --- a/files/en-us/web/css/_colon_enabled/index.html +++ b/files/en-us/web/css/_colon_enabled/index.html @@ -89,8 +89,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.enabled")}}

        See also

        diff --git a/files/en-us/web/css/_colon_first-child/index.html b/files/en-us/web/css/_colon_first-child/index.html index 7cc77a3125dbe9b..9dd3ca32e44e349 100644 --- a/files/en-us/web/css/_colon_first-child/index.html +++ b/files/en-us/web/css/_colon_first-child/index.html @@ -120,8 +120,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.first-child")}}

        See also

        diff --git a/files/en-us/web/css/_colon_first-of-type/index.html b/files/en-us/web/css/_colon_first-of-type/index.html index b59192e836b463c..e7e9c2db0967e3e 100644 --- a/files/en-us/web/css/_colon_first-of-type/index.html +++ b/files/en-us/web/css/_colon_first-of-type/index.html @@ -103,7 +103,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.first-of-type")}}

        diff --git a/files/en-us/web/css/_colon_first/index.html b/files/en-us/web/css/_colon_first/index.html index c4e468304149673..b7fee3de530136e 100644 --- a/files/en-us/web/css/_colon_first/index.html +++ b/files/en-us/web/css/_colon_first/index.html @@ -88,8 +88,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.first")}}

        See also

        diff --git a/files/en-us/web/css/_colon_focus-visible/index.html b/files/en-us/web/css/_colon_focus-visible/index.html index 9cb36f2239e25dc..18c5b2c5966a6b4 100644 --- a/files/en-us/web/css/_colon_focus-visible/index.html +++ b/files/en-us/web/css/_colon_focus-visible/index.html @@ -122,8 +122,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.focus-visible")}}

        See also

        diff --git a/files/en-us/web/css/_colon_focus-within/index.html b/files/en-us/web/css/_colon_focus-within/index.html index 3afac07798434b3..92021e2c420d694 100644 --- a/files/en-us/web/css/_colon_focus-within/index.html +++ b/files/en-us/web/css/_colon_focus-within/index.html @@ -85,8 +85,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.focus-within")}}

        See also

        diff --git a/files/en-us/web/css/_colon_focus/index.html b/files/en-us/web/css/_colon_focus/index.html index 1fc46483248e318..dc82a494e94de21 100644 --- a/files/en-us/web/css/_colon_focus/index.html +++ b/files/en-us/web/css/_colon_focus/index.html @@ -104,7 +104,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.focus")}}

        diff --git a/files/en-us/web/css/_colon_fullscreen/index.html b/files/en-us/web/css/_colon_fullscreen/index.html index d08bc02c97f3ca8..3de93823f463a6d 100644 --- a/files/en-us/web/css/_colon_fullscreen/index.html +++ b/files/en-us/web/css/_colon_fullscreen/index.html @@ -80,7 +80,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.fullscreen")}}

        diff --git a/files/en-us/web/css/_colon_has/index.html b/files/en-us/web/css/_colon_has/index.html index 104c9a0e8614843..a696a42ab446b3e 100644 --- a/files/en-us/web/css/_colon_has/index.html +++ b/files/en-us/web/css/_colon_has/index.html @@ -62,8 +62,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.has")}}

        See also

        diff --git a/files/en-us/web/css/_colon_host/index.html b/files/en-us/web/css/_colon_host/index.html index 810f1069f35298a..73fe7952f053d50 100644 --- a/files/en-us/web/css/_colon_host/index.html +++ b/files/en-us/web/css/_colon_host/index.html @@ -85,7 +85,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.host")}}

        diff --git a/files/en-us/web/css/_colon_hover/index.html b/files/en-us/web/css/_colon_hover/index.html index fb3ad71a830ebb4..e07ec299e3c9d4b 100644 --- a/files/en-us/web/css/_colon_hover/index.html +++ b/files/en-us/web/css/_colon_hover/index.html @@ -93,7 +93,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.hover")}}

        diff --git a/files/en-us/web/css/_colon_in-range/index.html b/files/en-us/web/css/_colon_in-range/index.html index 54b1e57b5d02816..20b5f99299003bd 100644 --- a/files/en-us/web/css/_colon_in-range/index.html +++ b/files/en-us/web/css/_colon_in-range/index.html @@ -106,7 +106,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.in-range")}}

        diff --git a/files/en-us/web/css/_colon_indeterminate/index.html b/files/en-us/web/css/_colon_indeterminate/index.html index d3b489537ccd80d..13d0375a1292cfd 100644 --- a/files/en-us/web/css/_colon_indeterminate/index.html +++ b/files/en-us/web/css/_colon_indeterminate/index.html @@ -126,7 +126,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.indeterminate")}}

        See also

        diff --git a/files/en-us/web/css/_colon_invalid/index.html b/files/en-us/web/css/_colon_invalid/index.html index 3c69c112674b7b9..3e8751010ad4fda 100644 --- a/files/en-us/web/css/_colon_invalid/index.html +++ b/files/en-us/web/css/_colon_invalid/index.html @@ -137,7 +137,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.invalid")}}

        diff --git a/files/en-us/web/css/_colon_is/index.html b/files/en-us/web/css/_colon_is/index.html index e7782006d9d24b7..37f0da7956f4819 100644 --- a/files/en-us/web/css/_colon_is/index.html +++ b/files/en-us/web/css/_colon_is/index.html @@ -251,8 +251,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.is")}}

        See also

        diff --git a/files/en-us/web/css/_colon_lang/index.html b/files/en-us/web/css/_colon_lang/index.html index cbf9086d36dc87a..9ccba1017c50e45 100644 --- a/files/en-us/web/css/_colon_lang/index.html +++ b/files/en-us/web/css/_colon_lang/index.html @@ -90,7 +90,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.lang")}}

        diff --git a/files/en-us/web/css/_colon_last-of-type/index.html b/files/en-us/web/css/_colon_last-of-type/index.html index f6786521d001b4a..250fba05eea3a47 100644 --- a/files/en-us/web/css/_colon_last-of-type/index.html +++ b/files/en-us/web/css/_colon_last-of-type/index.html @@ -102,7 +102,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.last-of-type")}}

        diff --git a/files/en-us/web/css/_colon_link/index.html b/files/en-us/web/css/_colon_link/index.html index 052361705f82fbd..ab4148bd069190c 100644 --- a/files/en-us/web/css/_colon_link/index.html +++ b/files/en-us/web/css/_colon_link/index.html @@ -94,7 +94,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.link")}}

        diff --git a/files/en-us/web/css/_colon_not/index.html b/files/en-us/web/css/_colon_not/index.html index 8ba49d0792b7d01..9c4f27dbac84906 100644 --- a/files/en-us/web/css/_colon_not/index.html +++ b/files/en-us/web/css/_colon_not/index.html @@ -126,7 +126,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.not")}}

        See also

        diff --git a/files/en-us/web/css/_colon_nth-child/index.html b/files/en-us/web/css/_colon_nth-child/index.html index 8f3228c00cf37aa..d107651b9143d49 100644 --- a/files/en-us/web/css/_colon_nth-child/index.html +++ b/files/en-us/web/css/_colon_nth-child/index.html @@ -192,7 +192,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.nth-child")}}

        diff --git a/files/en-us/web/css/_colon_nth-last-child/index.html b/files/en-us/web/css/_colon_nth-last-child/index.html index 6e1577509c28ea4..46fc9ca094d6b41 100644 --- a/files/en-us/web/css/_colon_nth-last-child/index.html +++ b/files/en-us/web/css/_colon_nth-last-child/index.html @@ -184,7 +184,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.nth-last-child")}}

        diff --git a/files/en-us/web/css/_colon_nth-last-of-type/index.html b/files/en-us/web/css/_colon_nth-last-of-type/index.html index 3bc65b1f2baf57f..a7cc01f08bee97e 100644 --- a/files/en-us/web/css/_colon_nth-last-of-type/index.html +++ b/files/en-us/web/css/_colon_nth-last-of-type/index.html @@ -86,7 +86,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.nth-last-of-type")}}

        diff --git a/files/en-us/web/css/_colon_nth-of-type/index.html b/files/en-us/web/css/_colon_nth-of-type/index.html index 402218fd758e688..401ac7a1091471b 100644 --- a/files/en-us/web/css/_colon_nth-of-type/index.html +++ b/files/en-us/web/css/_colon_nth-of-type/index.html @@ -100,7 +100,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.nth-of-type")}}

        diff --git a/files/en-us/web/css/_colon_only-child/index.html b/files/en-us/web/css/_colon_only-child/index.html index 11074a864aef026..5605e17ac80c54f 100644 --- a/files/en-us/web/css/_colon_only-child/index.html +++ b/files/en-us/web/css/_colon_only-child/index.html @@ -126,7 +126,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.only-child")}}

        diff --git a/files/en-us/web/css/_colon_only-of-type/index.html b/files/en-us/web/css/_colon_only-of-type/index.html index 9693efac5570f7d..c2ce4d3dd8dea51 100644 --- a/files/en-us/web/css/_colon_only-of-type/index.html +++ b/files/en-us/web/css/_colon_only-of-type/index.html @@ -85,7 +85,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.only-of-type")}}

        diff --git a/files/en-us/web/css/_colon_optional/index.html b/files/en-us/web/css/_colon_optional/index.html index 2aa9aad19a344a9..c7f5ee1af2668fe 100644 --- a/files/en-us/web/css/_colon_optional/index.html +++ b/files/en-us/web/css/_colon_optional/index.html @@ -111,8 +111,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.optional")}}

        See also

        diff --git a/files/en-us/web/css/_colon_out-of-range/index.html b/files/en-us/web/css/_colon_out-of-range/index.html index fb236f55af8ec8e..b764fba693daa12 100644 --- a/files/en-us/web/css/_colon_out-of-range/index.html +++ b/files/en-us/web/css/_colon_out-of-range/index.html @@ -104,7 +104,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.out-of-range")}}

        diff --git a/files/en-us/web/css/_colon_picture-in-picture/index.html b/files/en-us/web/css/_colon_picture-in-picture/index.html index d86f10c9c1e960a..e7d32932ac15a2f 100644 --- a/files/en-us/web/css/_colon_picture-in-picture/index.html +++ b/files/en-us/web/css/_colon_picture-in-picture/index.html @@ -72,7 +72,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.picture-in-picture")}}

        diff --git a/files/en-us/web/css/_colon_placeholder-shown/index.html b/files/en-us/web/css/_colon_placeholder-shown/index.html index 4f15839f688fff0..0d8fe5175473a83 100644 --- a/files/en-us/web/css/_colon_placeholder-shown/index.html +++ b/files/en-us/web/css/_colon_placeholder-shown/index.html @@ -128,8 +128,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.placeholder-shown")}}

        See also

        diff --git a/files/en-us/web/css/_colon_read-only/index.html b/files/en-us/web/css/_colon_read-only/index.html index e2dd59685d36947..1ab19402c1be3a3 100644 --- a/files/en-us/web/css/_colon_read-only/index.html +++ b/files/en-us/web/css/_colon_read-only/index.html @@ -108,8 +108,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.read-only")}}

        See also

        diff --git a/files/en-us/web/css/_colon_read-write/index.html b/files/en-us/web/css/_colon_read-write/index.html index 61dc52868f418a1..172bb9c5d3bf305 100644 --- a/files/en-us/web/css/_colon_read-write/index.html +++ b/files/en-us/web/css/_colon_read-write/index.html @@ -108,8 +108,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.read-write")}}

        See also

        diff --git a/files/en-us/web/css/_colon_required/index.html b/files/en-us/web/css/_colon_required/index.html index 52d5ac5ebbb0f37..b00f06c143857c2 100644 --- a/files/en-us/web/css/_colon_required/index.html +++ b/files/en-us/web/css/_colon_required/index.html @@ -115,8 +115,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.required")}}

        See also

        diff --git a/files/en-us/web/css/_colon_root/index.html b/files/en-us/web/css/_colon_root/index.html index c1fefdb4fe956ba..e97b9dee9b1a278 100644 --- a/files/en-us/web/css/_colon_root/index.html +++ b/files/en-us/web/css/_colon_root/index.html @@ -64,8 +64,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.root")}}

        See also

        diff --git a/files/en-us/web/css/_colon_state/index.html b/files/en-us/web/css/_colon_state/index.html index 04b1f5bf7d43a8e..76d49c02f1248a3 100644 --- a/files/en-us/web/css/_colon_state/index.html +++ b/files/en-us/web/css/_colon_state/index.html @@ -60,8 +60,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.state")}}

        See also

        diff --git a/files/en-us/web/css/_colon_target-within/index.html b/files/en-us/web/css/_colon_target-within/index.html index 5849b3041f3801a..21d53dd1d263558 100644 --- a/files/en-us/web/css/_colon_target-within/index.html +++ b/files/en-us/web/css/_colon_target-within/index.html @@ -85,8 +85,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.target-within")}}

        See also

        diff --git a/files/en-us/web/css/_colon_target/index.html b/files/en-us/web/css/_colon_target/index.html index af4e07ed1c933d1..d77e01128f7781b 100644 --- a/files/en-us/web/css/_colon_target/index.html +++ b/files/en-us/web/css/_colon_target/index.html @@ -203,8 +203,6 @@

        Specifications

        Browser compatibility

        - -
        {{Compat("css.selectors.target")}}

        See also

        diff --git a/files/en-us/web/css/_colon_user-invalid/index.html b/files/en-us/web/css/_colon_user-invalid/index.html index a563d6fdd080915..0de2e69000d00cc 100644 --- a/files/en-us/web/css/_colon_user-invalid/index.html +++ b/files/en-us/web/css/_colon_user-invalid/index.html @@ -47,8 +47,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.user-invalid")}}

        See also

        diff --git a/files/en-us/web/css/_colon_valid/index.html b/files/en-us/web/css/_colon_valid/index.html index 5e0d0cc6c7644b7..66fc5a555790e29 100644 --- a/files/en-us/web/css/_colon_valid/index.html +++ b/files/en-us/web/css/_colon_valid/index.html @@ -116,7 +116,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.valid")}}

        diff --git a/files/en-us/web/css/_colon_visited/index.html b/files/en-us/web/css/_colon_visited/index.html index 5f02414dad9e443..a866bf41da7e02e 100644 --- a/files/en-us/web/css/_colon_visited/index.html +++ b/files/en-us/web/css/_colon_visited/index.html @@ -109,8 +109,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.visited")}}

        See also

        diff --git a/files/en-us/web/css/_colon_where/index.html b/files/en-us/web/css/_colon_where/index.html index 162170759cdb7cd..62d3df91732f68a 100644 --- a/files/en-us/web/css/_colon_where/index.html +++ b/files/en-us/web/css/_colon_where/index.html @@ -149,7 +149,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.where")}}

        diff --git a/files/en-us/web/css/_doublecolon_-moz-color-swatch/index.html b/files/en-us/web/css/_doublecolon_-moz-color-swatch/index.html index 4487f1d9f6b3e5d..15718d11213891c 100644 --- a/files/en-us/web/css/_doublecolon_-moz-color-swatch/index.html +++ b/files/en-us/web/css/_doublecolon_-moz-color-swatch/index.html @@ -47,8 +47,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-color-swatch")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-moz-focus-inner/index.html b/files/en-us/web/css/_doublecolon_-moz-focus-inner/index.html index 8906459705486a8..2b861fefa149f6c 100644 --- a/files/en-us/web/css/_doublecolon_-moz-focus-inner/index.html +++ b/files/en-us/web/css/_doublecolon_-moz-focus-inner/index.html @@ -56,8 +56,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-focus-inner")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-moz-page-sequence/index.html b/files/en-us/web/css/_doublecolon_-moz-page-sequence/index.html index d85fae52585360e..c3c308eb6bf9092 100644 --- a/files/en-us/web/css/_doublecolon_-moz-page-sequence/index.html +++ b/files/en-us/web/css/_doublecolon_-moz-page-sequence/index.html @@ -24,8 +24,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-page-sequence")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-moz-page/index.html b/files/en-us/web/css/_doublecolon_-moz-page/index.html index 2bb9006d761f8c4..4b62fece8995107 100644 --- a/files/en-us/web/css/_doublecolon_-moz-page/index.html +++ b/files/en-us/web/css/_doublecolon_-moz-page/index.html @@ -25,8 +25,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-page")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-moz-range-progress/index.html b/files/en-us/web/css/_doublecolon_-moz-range-progress/index.html index 628da0a4c8e49e6..63be8d75f73a7fe 100644 --- a/files/en-us/web/css/_doublecolon_-moz-range-progress/index.html +++ b/files/en-us/web/css/_doublecolon_-moz-range-progress/index.html @@ -50,8 +50,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-range-progress")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-moz-range-thumb/index.html b/files/en-us/web/css/_doublecolon_-moz-range-thumb/index.html index 3a6bb4b35a7d35e..59210b19adfd2e4 100644 --- a/files/en-us/web/css/_doublecolon_-moz-range-thumb/index.html +++ b/files/en-us/web/css/_doublecolon_-moz-range-thumb/index.html @@ -49,8 +49,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-range-thumb")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-moz-range-track/index.html b/files/en-us/web/css/_doublecolon_-moz-range-track/index.html index 5ed1656ed3e6798..d3865ea281f32fe 100644 --- a/files/en-us/web/css/_doublecolon_-moz-range-track/index.html +++ b/files/en-us/web/css/_doublecolon_-moz-range-track/index.html @@ -49,8 +49,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-range-track")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-moz-scrolled-page-sequence/index.html b/files/en-us/web/css/_doublecolon_-moz-scrolled-page-sequence/index.html index 069267e3820c5d0..52f68f4bc71fd53 100644 --- a/files/en-us/web/css/_doublecolon_-moz-scrolled-page-sequence/index.html +++ b/files/en-us/web/css/_doublecolon_-moz-scrolled-page-sequence/index.html @@ -25,8 +25,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-moz-scrolled-page-sequence")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-inner-spin-button/index.html b/files/en-us/web/css/_doublecolon_-webkit-inner-spin-button/index.html index 01c5140480bd3c4..3b1e47672286b22 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-inner-spin-button/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-inner-spin-button/index.html @@ -47,8 +47,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-inner-spin-button")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-meter-bar/index.html b/files/en-us/web/css/_doublecolon_-webkit-meter-bar/index.html index d259efb752ac224..1317f1baa545b62 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-meter-bar/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-meter-bar/index.html @@ -49,8 +49,6 @@

        Result

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-meter-bar")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-meter-even-less-good-value/index.html b/files/en-us/web/css/_doublecolon_-webkit-meter-even-less-good-value/index.html index 2b2e06cee8a7c46..423cac05ac152cf 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-meter-even-less-good-value/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-meter-even-less-good-value/index.html @@ -41,8 +41,6 @@

        Result

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-meter-even-less-good-value")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-meter-inner-element/index.html b/files/en-us/web/css/_doublecolon_-webkit-meter-inner-element/index.html index a3372dec7eb563a..d476fcc710da43e 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-meter-inner-element/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-meter-inner-element/index.html @@ -50,8 +50,6 @@

        Result

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-meter-inner-element")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-meter-optimum-value/index.html b/files/en-us/web/css/_doublecolon_-webkit-meter-optimum-value/index.html index bef93a2df3dd407..802f1a401094018 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-meter-optimum-value/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-meter-optimum-value/index.html @@ -50,8 +50,6 @@

        Result

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-meter-optimum-value")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-meter-suboptimum-value/index.html b/files/en-us/web/css/_doublecolon_-webkit-meter-suboptimum-value/index.html index e897a2f4576c664..e73ccdb45b264bc 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-meter-suboptimum-value/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-meter-suboptimum-value/index.html @@ -43,8 +43,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-meter-suboptimum-value")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-outer-spin-button/index.html b/files/en-us/web/css/_doublecolon_-webkit-outer-spin-button/index.html index a3d75b6c45e0306..eca0ee50477a9fb 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-outer-spin-button/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-outer-spin-button/index.html @@ -47,8 +47,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-outer-spin-button")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-progress-bar/index.html b/files/en-us/web/css/_doublecolon_-webkit-progress-bar/index.html index 08b36fd70fae563..e4b980f28da34fb 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-progress-bar/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-progress-bar/index.html @@ -54,8 +54,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-progress-bar")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-progress-inner-element/index.html b/files/en-us/web/css/_doublecolon_-webkit-progress-inner-element/index.html index d77b170e38eb40a..9c9bde7886c6d7e 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-progress-inner-element/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-progress-inner-element/index.html @@ -60,8 +60,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-progress-inner-element")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-progress-value/index.html b/files/en-us/web/css/_doublecolon_-webkit-progress-value/index.html index 38d9ace249f7b0b..b44bbf1f3352551 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-progress-value/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-progress-value/index.html @@ -55,8 +55,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-progress-value")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-scrollbar/index.html b/files/en-us/web/css/_doublecolon_-webkit-scrollbar/index.html index 8b4c856886ad295..68d0f4f3496387f 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-scrollbar/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-scrollbar/index.html @@ -104,8 +104,6 @@

        Specifications

        Browser compatibility

        - -

        ::-webkit-scrollbar

        {{Compat("css.selectors.-webkit-scrollbar")}}

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-search-cancel-button/index.html b/files/en-us/web/css/_doublecolon_-webkit-search-cancel-button/index.html index 0e5d1c658886305..5490acc5220754e 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-search-cancel-button/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-search-cancel-button/index.html @@ -23,8 +23,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-search-cancel-button")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-search-results-button/index.html b/files/en-us/web/css/_doublecolon_-webkit-search-results-button/index.html index 3f0bc44da54a17f..ed7b6e123776538 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-search-results-button/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-search-results-button/index.html @@ -23,8 +23,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-search-results-button")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-slider-runnable-track/index.html b/files/en-us/web/css/_doublecolon_-webkit-slider-runnable-track/index.html index 3fb549a2c737e6a..e80816af5ac222f 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-slider-runnable-track/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-slider-runnable-track/index.html @@ -27,8 +27,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-slider-runnable-track")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_-webkit-slider-thumb/index.html b/files/en-us/web/css/_doublecolon_-webkit-slider-thumb/index.html index 6d7825926821bd1..29f82c522a88f45 100644 --- a/files/en-us/web/css/_doublecolon_-webkit-slider-thumb/index.html +++ b/files/en-us/web/css/_doublecolon_-webkit-slider-thumb/index.html @@ -26,8 +26,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.-webkit-slider-thumb")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_after/index.html b/files/en-us/web/css/_doublecolon_after/index.html index 970c6dcf24c27d4..5abbfbddbf2a2f7 100644 --- a/files/en-us/web/css/_doublecolon_after/index.html +++ b/files/en-us/web/css/_doublecolon_after/index.html @@ -164,7 +164,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.after")}}

        diff --git a/files/en-us/web/css/_doublecolon_backdrop/index.html b/files/en-us/web/css/_doublecolon_backdrop/index.html index 3d8a02676d2d81b..b908b5d9d2a44e4 100644 --- a/files/en-us/web/css/_doublecolon_backdrop/index.html +++ b/files/en-us/web/css/_doublecolon_backdrop/index.html @@ -73,7 +73,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.backdrop")}}

        diff --git a/files/en-us/web/css/_doublecolon_before/index.html b/files/en-us/web/css/_doublecolon_before/index.html index 0dfe251ab7e8bcd..196b6c9604d26a1 100644 --- a/files/en-us/web/css/_doublecolon_before/index.html +++ b/files/en-us/web/css/_doublecolon_before/index.html @@ -218,7 +218,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.before")}}

        diff --git a/files/en-us/web/css/_doublecolon_cue-region/index.html b/files/en-us/web/css/_doublecolon_cue-region/index.html index 83d27d0ea325609..d8b599103c4fb93 100644 --- a/files/en-us/web/css/_doublecolon_cue-region/index.html +++ b/files/en-us/web/css/_doublecolon_cue-region/index.html @@ -26,7 +26,6 @@

        Syntax

        {{CSSSyntax}}
        -

        Permitted properties

        Rules whose selectors include this element may only use the following CSS properties:

        @@ -67,7 +66,6 @@

        Permitted properties

      • white-space
      • -

        Specifications

        @@ -87,8 +85,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.cue-region")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_cue/index.html b/files/en-us/web/css/_doublecolon_cue/index.html index 4385bf37df3655a..91b239bab1471f5 100644 --- a/files/en-us/web/css/_doublecolon_cue/index.html +++ b/files/en-us/web/css/_doublecolon_cue/index.html @@ -27,7 +27,6 @@

        Syntax

        {{CSSSyntax}}
        -

        Permitted properties

        Rules whose selectors include this element may only use the following CSS properties:

        @@ -68,7 +67,6 @@

        Permitted properties

      • white-space
      • -

        Examples

        Styling WebVTT cues as white-on-black

        @@ -101,8 +99,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.cue")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_file-selector-button/index.html b/files/en-us/web/css/_doublecolon_file-selector-button/index.html index 2d2c2d75b6bfdad..ebca9b1c2f989ea 100644 --- a/files/en-us/web/css/_doublecolon_file-selector-button/index.html +++ b/files/en-us/web/css/_doublecolon_file-selector-button/index.html @@ -119,8 +119,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.file-selector-button")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_first-letter/index.html b/files/en-us/web/css/_doublecolon_first-letter/index.html index 124d82d9f1f66c1..4e7bb178501adc6 100644 --- a/files/en-us/web/css/_doublecolon_first-letter/index.html +++ b/files/en-us/web/css/_doublecolon_first-letter/index.html @@ -154,7 +154,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.first-letter")}}

        diff --git a/files/en-us/web/css/_doublecolon_first-line/index.html b/files/en-us/web/css/_doublecolon_first-line/index.html index dbc1d695b8f35f4..093a777dc0f79dc 100644 --- a/files/en-us/web/css/_doublecolon_first-line/index.html +++ b/files/en-us/web/css/_doublecolon_first-line/index.html @@ -53,7 +53,6 @@

        CSS

        color: blue; text-transform: uppercase; - /* WARNING: DO NOT USE THESE */ /* Many properties are invalid in ::first-line pseudo-elements */ margin-left: 20px; @@ -109,7 +108,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.first-line")}}

        diff --git a/files/en-us/web/css/_doublecolon_grammar-error/index.html b/files/en-us/web/css/_doublecolon_grammar-error/index.html index e492d43571d7fdf..bf70279100972a7 100644 --- a/files/en-us/web/css/_doublecolon_grammar-error/index.html +++ b/files/en-us/web/css/_doublecolon_grammar-error/index.html @@ -75,7 +75,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.grammar-error")}}

        diff --git a/files/en-us/web/css/_doublecolon_marker/index.html b/files/en-us/web/css/_doublecolon_marker/index.html index e6780251d2d6dec..a648c141fbfad19 100644 --- a/files/en-us/web/css/_doublecolon_marker/index.html +++ b/files/en-us/web/css/_doublecolon_marker/index.html @@ -89,7 +89,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.marker")}}

        diff --git a/files/en-us/web/css/_doublecolon_part/index.html b/files/en-us/web/css/_doublecolon_part/index.html index 6881e800de84133..b3dcacab45f78f5 100644 --- a/files/en-us/web/css/_doublecolon_part/index.html +++ b/files/en-us/web/css/_doublecolon_part/index.html @@ -112,8 +112,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.part")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_placeholder/index.html b/files/en-us/web/css/_doublecolon_placeholder/index.html index 2fa88ed1433cece..b4f2aee97cff033 100644 --- a/files/en-us/web/css/_doublecolon_placeholder/index.html +++ b/files/en-us/web/css/_doublecolon_placeholder/index.html @@ -149,7 +149,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.placeholder")}}

        diff --git a/files/en-us/web/css/_doublecolon_selection/index.html b/files/en-us/web/css/_doublecolon_selection/index.html index f2848cebca5ec8d..a100b8dc14f41a0 100644 --- a/files/en-us/web/css/_doublecolon_selection/index.html +++ b/files/en-us/web/css/_doublecolon_selection/index.html @@ -119,8 +119,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.selection")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_slotted/index.html b/files/en-us/web/css/_doublecolon_slotted/index.html index 2ad3d663e4e5651..daa40574bf9cbc1 100644 --- a/files/en-us/web/css/_doublecolon_slotted/index.html +++ b/files/en-us/web/css/_doublecolon_slotted/index.html @@ -104,8 +104,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.slotted")}}

        See also

        diff --git a/files/en-us/web/css/_doublecolon_spelling-error/index.html b/files/en-us/web/css/_doublecolon_spelling-error/index.html index c03f845db937bdb..54fb2382e0799df 100644 --- a/files/en-us/web/css/_doublecolon_spelling-error/index.html +++ b/files/en-us/web/css/_doublecolon_spelling-error/index.html @@ -75,7 +75,6 @@

        Browser compatibility

        -

        {{Compat("css.selectors.spelling-error")}}

        diff --git a/files/en-us/web/css/adjacent_sibling_combinator/index.html b/files/en-us/web/css/adjacent_sibling_combinator/index.html index a4e9874fdfd1bc6..2bbe5086e1f449b 100644 --- a/files/en-us/web/css/adjacent_sibling_combinator/index.html +++ b/files/en-us/web/css/adjacent_sibling_combinator/index.html @@ -74,8 +74,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.adjacent_sibling")}}

        See also

        diff --git a/files/en-us/web/css/align-content/index.html b/files/en-us/web/css/align-content/index.html index 25ecb13a0f356bb..ce38c31570ddbec 100644 --- a/files/en-us/web/css/align-content/index.html +++ b/files/en-us/web/css/align-content/index.html @@ -14,8 +14,6 @@
        {{EmbedInteractiveExample("pages/css/align-content.html")}}
        - -

        This property has no effect on single line flex containers (i.e. ones with flex-wrap: nowrap).

        Syntax

        @@ -275,8 +273,6 @@

        Specifications

        Browser compatibility

        - -

        Support in Flex layout

        {{Compat("css.properties.align-content.flex_context")}}

        @@ -285,7 +281,6 @@

        Support in Grid layout

        {{Compat("css.properties.align-content.grid_context")}}

        -

        See also

          diff --git a/files/en-us/web/css/align-items/index.html b/files/en-us/web/css/align-items/index.html index b8643e7dc6c4664..43b42ba10306c0e 100644 --- a/files/en-us/web/css/align-items/index.html +++ b/files/en-us/web/css/align-items/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/align-items.html")}}
          - -

          Syntax

          /* Basic keywords */
          @@ -263,8 +261,6 @@ 

          Specifications

          Browser compatibility

          - -

          Support in Flex layout

          {{Compat("css.properties.align-items.flex_context")}}

          diff --git a/files/en-us/web/css/align-self/index.html b/files/en-us/web/css/align-self/index.html index 48e16b52b7a1e0a..d6e222eebae61e6 100644 --- a/files/en-us/web/css/align-self/index.html +++ b/files/en-us/web/css/align-self/index.html @@ -15,8 +15,6 @@
          {{EmbedInteractiveExample("pages/css/align-self.html")}}
          - -

          The property doesn't apply to block-level boxes, or to table cells. If a flexbox item's cross-axis margin is auto, then align-self is ignored.

          Syntax

          @@ -156,8 +154,6 @@

          Specifications

          Browser compatibility

          - -

          Support in Flex layout

          {{Compat("css.properties.align-self.flex_context")}}

          diff --git a/files/en-us/web/css/all/index.html b/files/en-us/web/css/all/index.html index 133db35e8f6e33f..27dbd28cbfea49c 100644 --- a/files/en-us/web/css/all/index.html +++ b/files/en-us/web/css/all/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/all.html")}}
          - -

          Syntax

          /* Global values */
          @@ -161,8 +159,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.all")}}

          See also

          diff --git a/files/en-us/web/css/alternative_style_sheets/index.html b/files/en-us/web/css/alternative_style_sheets/index.html index 3f0d4eda7b796e2..922e8abb9848e4d 100644 --- a/files/en-us/web/css/alternative_style_sheets/index.html +++ b/files/en-us/web/css/alternative_style_sheets/index.html @@ -95,6 +95,4 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("html.elements.link.rel.alternate_stylesheet")}}

          diff --git a/files/en-us/web/css/angle-percentage/index.html b/files/en-us/web/css/angle-percentage/index.html index bc7dc1b47d1facc..bf3673e1b113955 100644 --- a/files/en-us/web/css/angle-percentage/index.html +++ b/files/en-us/web/css/angle-percentage/index.html @@ -48,8 +48,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.types.angle-percentage")}}

          See also

          diff --git a/files/en-us/web/css/angle/index.html b/files/en-us/web/css/angle/index.html index a151f0143bceb51..adf1fcc7e0f27ef 100644 --- a/files/en-us/web/css/angle/index.html +++ b/files/en-us/web/css/angle/index.html @@ -16,8 +16,6 @@
          {{EmbedInteractiveExample("pages/css/type-angle.html")}}
          - -

          Syntax

          The <angle> data type consists of a {{cssxref("<number>")}} followed by one of the units listed below. As with all dimensions, there is no space between the unit literal and the number. The angle unit is optional after the number 0.

          @@ -109,8 +107,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.types.angle")}}

          See also

          diff --git a/files/en-us/web/css/animation-delay/index.html b/files/en-us/web/css/animation-delay/index.html index b623db6b72fa852..0e7124cdf61b55d 100644 --- a/files/en-us/web/css/animation-delay/index.html +++ b/files/en-us/web/css/animation-delay/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/animation-delay.html")}}
          - -

          It is often convenient to use the shorthand property {{cssxref("animation")}} to set all animation properties at once.

          Syntax

          @@ -106,8 +104,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.animation-delay")}}

          See also

          diff --git a/files/en-us/web/css/animation-direction/index.html b/files/en-us/web/css/animation-direction/index.html index 7fd0f71983e3c8e..d80bed5d265eade 100644 --- a/files/en-us/web/css/animation-direction/index.html +++ b/files/en-us/web/css/animation-direction/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/animation-direction.html")}}
          - -

          It is often convenient to use the shorthand property {{cssxref("animation")}} to set all animation properties at once.

          Syntax

          @@ -117,7 +115,6 @@

          Browser compatibility

          -

          {{Compat("css.properties.animation-direction")}}

          diff --git a/files/en-us/web/css/animation-duration/index.html b/files/en-us/web/css/animation-duration/index.html index 56826fdaf3cf303..c5a3d8a7418ecef 100644 --- a/files/en-us/web/css/animation-duration/index.html +++ b/files/en-us/web/css/animation-duration/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/animation-duration.html")}}
          - -

          It is often convenient to use the shorthand property {{ cssxref("animation") }} to set all animation properties at once.

          Syntax

          @@ -105,8 +103,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.animation-duration")}}

          See also

          diff --git a/files/en-us/web/css/animation-fill-mode/index.html b/files/en-us/web/css/animation-fill-mode/index.html index 8e2abc1efedeca5..b395ab268180f90 100644 --- a/files/en-us/web/css/animation-fill-mode/index.html +++ b/files/en-us/web/css/animation-fill-mode/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/animation-fill-mode.html")}}
          - -

          It is often convenient to use the shorthand property {{cssxref("animation")}} to set all animation properties at once.

          Syntax

          @@ -177,8 +175,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.animation-fill-mode")}}

          See also

          diff --git a/files/en-us/web/css/animation-iteration-count/index.html b/files/en-us/web/css/animation-iteration-count/index.html index 0d715a52d0cefd0..ad4ca2fa815671e 100644 --- a/files/en-us/web/css/animation-iteration-count/index.html +++ b/files/en-us/web/css/animation-iteration-count/index.html @@ -16,8 +16,6 @@
          {{EmbedInteractiveExample("pages/css/animation-iteration-count.html")}}
          - -

          It is often convenient to use the shorthand property {{cssxref("animation")}} to set all animation properties at once.

          Syntax

          @@ -109,8 +107,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.animation-iteration-count")}}

          See also

          diff --git a/files/en-us/web/css/animation-name/index.html b/files/en-us/web/css/animation-name/index.html index c7539f9fbcf6c5d..b3c3b7ab73f8f39 100644 --- a/files/en-us/web/css/animation-name/index.html +++ b/files/en-us/web/css/animation-name/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/animation-name.html")}}
          - -

          It is often convenient to use the shorthand property {{cssxref("animation")}} to set all animation properties at once.

          Syntax

          @@ -111,7 +109,6 @@

          Browser compatibility

          -

          {{Compat("css.properties.animation-name")}}

          diff --git a/files/en-us/web/css/animation-play-state/index.html b/files/en-us/web/css/animation-play-state/index.html index 68006ef26b52969..a011f942ad19a52 100644 --- a/files/en-us/web/css/animation-play-state/index.html +++ b/files/en-us/web/css/animation-play-state/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/animation-play-state.html")}}
          - -

          Resuming a paused animation will start the animation from where it left off at the time it was paused, rather than starting over from the beginning of the animation sequence.

          Syntax

          @@ -108,8 +106,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.animation-play-state")}}

          See also

          diff --git a/files/en-us/web/css/animation-timing-function/index.html b/files/en-us/web/css/animation-timing-function/index.html index eae332e07affd1b..0d506119e11e4ee 100644 --- a/files/en-us/web/css/animation-timing-function/index.html +++ b/files/en-us/web/css/animation-timing-function/index.html @@ -261,8 +261,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.animation-timing-function")}}

          See also

          diff --git a/files/en-us/web/css/animation/index.html b/files/en-us/web/css/animation/index.html index 72dacf44ec8980b..8df0c3d6cf1e157 100644 --- a/files/en-us/web/css/animation/index.html +++ b/files/en-us/web/css/animation/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/animation.html")}}
          - -
          /* @keyframes duration | easing-function | delay |
           iteration-count | direction | fill-mode | play-state | name */
           animation: 3s ease-in 1s 2 reverse both paused slidein;
          @@ -346,8 +344,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.animation")}}

          Quantum CSS notes

          diff --git a/files/en-us/web/css/appearance/index.html b/files/en-us/web/css/appearance/index.html index c5b7b41184da695..05215c76b73d013 100644 --- a/files/en-us/web/css/appearance/index.html +++ b/files/en-us/web/css/appearance/index.html @@ -17,8 +17,6 @@
          {{EmbedInteractiveExample("pages/css/appearance.html")}}
          - -

          The -moz-appearance property was used in XUL stylesheets to design custom widgets with platform-appropriate styling. It was also used in the XBL implementations of the widgets that ship with the Mozilla platform. Starting with Gecko/Firefox 80, these uses were changed to -moz-default-appearance, which should never be used outside of internal stylesheets.

          @@ -1981,8 +1979,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.appearance")}}

          See also

          diff --git a/files/en-us/web/css/aspect-ratio/index.html b/files/en-us/web/css/aspect-ratio/index.html index 6a5a5f89f360a60..1cdd42f7420ff81 100644 --- a/files/en-us/web/css/aspect-ratio/index.html +++ b/files/en-us/web/css/aspect-ratio/index.html @@ -79,8 +79,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.aspect-ratio")}}

          See also

          diff --git a/files/en-us/web/css/attr()/index.html b/files/en-us/web/css/attr()/index.html index 21928cb4740ea78..d0f0608ef58bdd7 100644 --- a/files/en-us/web/css/attr()/index.html +++ b/files/en-us/web/css/attr()/index.html @@ -244,8 +244,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.types.attr")}}

          See also

          diff --git a/files/en-us/web/css/attribute_selectors/index.html b/files/en-us/web/css/attribute_selectors/index.html index 8b75ac5b067a048..5924dd14b2b1dff 100644 --- a/files/en-us/web/css/attribute_selectors/index.html +++ b/files/en-us/web/css/attribute_selectors/index.html @@ -233,8 +233,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.selectors.attribute")}}

          See also

          diff --git a/files/en-us/web/css/backdrop-filter/index.html b/files/en-us/web/css/backdrop-filter/index.html index 8f28aa329ba8734..e32592e0d3f0cbd 100644 --- a/files/en-us/web/css/backdrop-filter/index.html +++ b/files/en-us/web/css/backdrop-filter/index.html @@ -135,8 +135,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.backdrop-filter")}}

          See also

          diff --git a/files/en-us/web/css/backface-visibility/index.html b/files/en-us/web/css/backface-visibility/index.html index aea30d4da669e67..ba212dca09f9eb7 100644 --- a/files/en-us/web/css/backface-visibility/index.html +++ b/files/en-us/web/css/backface-visibility/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/backface-visibility.html")}}
          - -

          An element's back face is a mirror image of its front face. Though invisible in 2D, the back face can become visible when a transformation causes the element to be rotated in 3D space. (This property has no effect on 2D transforms, which have no perspective.)

          Syntax

          @@ -205,8 +203,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.backface-visibility")}}

          See also

          diff --git a/files/en-us/web/css/background-attachment/index.html b/files/en-us/web/css/background-attachment/index.html index 4ce22cbe00f8dba..940ea3ebe985c0e 100644 --- a/files/en-us/web/css/background-attachment/index.html +++ b/files/en-us/web/css/background-attachment/index.html @@ -141,8 +141,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.background-attachment")}}

          See also

          diff --git a/files/en-us/web/css/background-blend-mode/index.html b/files/en-us/web/css/background-blend-mode/index.html index c39f29eb52a3e2c..5def8915e1081a7 100644 --- a/files/en-us/web/css/background-blend-mode/index.html +++ b/files/en-us/web/css/background-blend-mode/index.html @@ -13,8 +13,6 @@
          {{EmbedInteractiveExample("pages/css/background-blend-mode.html")}}
          - -

          Blending modes should be defined in the same order as the {{cssxref("background-image")}} property. If the blending modes' and background images' list lengths are not equal, it will be repeated and/or truncated until lengths match.

          Syntax

          @@ -114,8 +112,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.background-blend-mode")}}

          See also

          diff --git a/files/en-us/web/css/background-clip/index.html b/files/en-us/web/css/background-clip/index.html index fc3cf58e9f75b10..3449b662d78c3f5 100644 --- a/files/en-us/web/css/background-clip/index.html +++ b/files/en-us/web/css/background-clip/index.html @@ -123,8 +123,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.background-clip")}}

          See also

          diff --git a/files/en-us/web/css/background-color/index.html b/files/en-us/web/css/background-color/index.html index 429a647101aa1ee..c9e37ba56a774ef 100644 --- a/files/en-us/web/css/background-color/index.html +++ b/files/en-us/web/css/background-color/index.html @@ -21,8 +21,6 @@
          {{EmbedInteractiveExample("pages/css/background-color.html")}}
          - -

          Syntax

          /* Keyword values */
          diff --git a/files/en-us/web/css/background-image/index.html b/files/en-us/web/css/background-image/index.html
          index eb28ebe5c14d1d3..05088b76f528396 100644
          --- a/files/en-us/web/css/background-image/index.html
          +++ b/files/en-us/web/css/background-image/index.html
          @@ -136,8 +136,6 @@ 

          Specifications

          Browser compatibility

          - -
          {{Compat("css.properties.background-image")}}

          See also

          diff --git a/files/en-us/web/css/background-origin/index.html b/files/en-us/web/css/background-origin/index.html index 836d950a0e2af3e..7bb3bd0591d9ee6 100644 --- a/files/en-us/web/css/background-origin/index.html +++ b/files/en-us/web/css/background-origin/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/background-origin.html")}}
          - -

          Note that background-origin is ignored when {{cssxref("background-attachment")}} is fixed.

          Syntax

          diff --git a/files/en-us/web/css/background-position-x/index.html b/files/en-us/web/css/background-position-x/index.html index ccde27f2112ecc8..9385ec628ef07c6 100644 --- a/files/en-us/web/css/background-position-x/index.html +++ b/files/en-us/web/css/background-position-x/index.html @@ -15,8 +15,6 @@
          {{EmbedInteractiveExample("pages/css/background-position-x.html")}}
          - -

          The value of this property is overridden by any declaration of the {{cssxref("background")}} or {{cssxref("background-position")}} shorthand properties applied to the element after it.

          Syntax

          diff --git a/files/en-us/web/css/background-position-y/index.html b/files/en-us/web/css/background-position-y/index.html index 9ae1cfaf024fa1e..988ecb15d9ef318 100644 --- a/files/en-us/web/css/background-position-y/index.html +++ b/files/en-us/web/css/background-position-y/index.html @@ -15,8 +15,6 @@
          {{EmbedInteractiveExample("pages/css/background-position-y.html")}}
          - -

          The value of this property is overridden by any declaration of the {{cssxref("background")}} or {{cssxref("background-position")}} shorthand properties applied to the element after it.

          Syntax

          diff --git a/files/en-us/web/css/background-position/index.html b/files/en-us/web/css/background-position/index.html index 115c57be1d344c0..a3d4c0e52567cc0 100644 --- a/files/en-us/web/css/background-position/index.html +++ b/files/en-us/web/css/background-position/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/background-position.html")}}
          - -

          Syntax

          /* Keyword values */
          diff --git a/files/en-us/web/css/background-repeat/index.html b/files/en-us/web/css/background-repeat/index.html
          index 837d91c2b7d9f59..2a0a9fb022f6871 100644
          --- a/files/en-us/web/css/background-repeat/index.html
          +++ b/files/en-us/web/css/background-repeat/index.html
          @@ -14,8 +14,6 @@
           
           
          {{EmbedInteractiveExample("pages/css/background-repeat.html")}}
          - -

          By default, the repeated images are clipped to the size of the element, but they can be scaled to fit (using round) or evenly distributed from end to end (using space).

          Syntax

          diff --git a/files/en-us/web/css/background-size/index.html b/files/en-us/web/css/background-size/index.html index b65037bf2c9ae01..5c96db30d56ba69 100644 --- a/files/en-us/web/css/background-size/index.html +++ b/files/en-us/web/css/background-size/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/background-size.html")}}
          - -

          Spaces not covered by a background image are filled with the {{cssxref("background-color")}} property, and the background color will be visible behind background images that have transparency/translucency.

          Syntax

          diff --git a/files/en-us/web/css/basic-shape/index.html b/files/en-us/web/css/basic-shape/index.html index 4977c6fa48b1238..259683177672a75 100644 --- a/files/en-us/web/css/basic-shape/index.html +++ b/files/en-us/web/css/basic-shape/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/type-basic-shape.html")}}
          - -

          Syntax

          The <basic-shape> data type is defined with one of the basic shape functions listed below.

          @@ -165,8 +163,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.types.basic-shape")}}

          See also

          diff --git a/files/en-us/web/css/blend-mode/index.html b/files/en-us/web/css/blend-mode/index.html index 05def5b1d8e0230..a0e074eb8056303 100644 --- a/files/en-us/web/css/blend-mode/index.html +++ b/files/en-us/web/css/blend-mode/index.html @@ -439,8 +439,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.types.blend-mode")}}

          See also

          diff --git a/files/en-us/web/css/block-size/index.html b/files/en-us/web/css/block-size/index.html index bb2f1aa1fad5a40..d8ac47c8f412a5a 100644 --- a/files/en-us/web/css/block-size/index.html +++ b/files/en-us/web/css/block-size/index.html @@ -94,8 +94,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.block-size")}}

          See also

          diff --git a/files/en-us/web/css/border-block-color/index.html b/files/en-us/web/css/border-block-color/index.html index 6457b8581089121..c94b89f1c5034ae 100644 --- a/files/en-us/web/css/border-block-color/index.html +++ b/files/en-us/web/css/border-block-color/index.html @@ -86,8 +86,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-block-color")}}

          See also

          diff --git a/files/en-us/web/css/border-block-end-color/index.html b/files/en-us/web/css/border-block-end-color/index.html index e3d5e93dc9e68a9..028a8f0246a007f 100644 --- a/files/en-us/web/css/border-block-end-color/index.html +++ b/files/en-us/web/css/border-block-end-color/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-block-end-color.html")}}
          - -

          Syntax

          border-block-end-color: yellow;
          @@ -94,8 +92,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-block-end-color")}}

          See also

          diff --git a/files/en-us/web/css/border-block-end-style/index.html b/files/en-us/web/css/border-block-end-style/index.html index 180b793c67b5d99..33bc08562a314e8 100644 --- a/files/en-us/web/css/border-block-end-style/index.html +++ b/files/en-us/web/css/border-block-end-style/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-block-end-style.html")}}
          - -

          Syntax

          /* <'border-style'> values */
          @@ -96,8 +94,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-block-end-style")}}

          See also

          diff --git a/files/en-us/web/css/border-block-end-width/index.html b/files/en-us/web/css/border-block-end-width/index.html index cd3375142ebb4de..451a5907099b5eb 100644 --- a/files/en-us/web/css/border-block-end-width/index.html +++ b/files/en-us/web/css/border-block-end-width/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-block-end-width.html")}}
          - -

          Syntax

          /* <'border-width'> values */
          @@ -95,8 +93,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-block-end-width")}}

          See also

          diff --git a/files/en-us/web/css/border-block-end/index.html b/files/en-us/web/css/border-block-end/index.html index bfd045cf6a2d7cb..573385a2e630039 100644 --- a/files/en-us/web/css/border-block-end/index.html +++ b/files/en-us/web/css/border-block-end/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-block-end.html")}}
          - -

          Constituent properties

          This property is a shorthand for the following CSS properties:

          @@ -112,8 +110,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-block-end")}}

          See also

          diff --git a/files/en-us/web/css/border-block-start-color/index.html b/files/en-us/web/css/border-block-start-color/index.html index 334f7cfb7374627..8504a724d0a9e66 100644 --- a/files/en-us/web/css/border-block-start-color/index.html +++ b/files/en-us/web/css/border-block-start-color/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-block-start-color.html")}}
          - -

          Syntax

          border-block-start-color: blue;
          @@ -94,8 +92,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-block-start-color")}}

          See also

          diff --git a/files/en-us/web/css/border-block-start-style/index.html b/files/en-us/web/css/border-block-start-style/index.html index 96d14b7dd5c98c1..98790ddb1238cca 100644 --- a/files/en-us/web/css/border-block-start-style/index.html +++ b/files/en-us/web/css/border-block-start-style/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-block-start-style.html")}}
          - -

          Syntax

          /* <'border-style'> values */
          @@ -96,8 +94,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-block-start-style")}}

          See also

          diff --git a/files/en-us/web/css/border-block-start-width/index.html b/files/en-us/web/css/border-block-start-width/index.html index 16c33fab3ddfe43..7a8f587cf564ea9 100644 --- a/files/en-us/web/css/border-block-start-width/index.html +++ b/files/en-us/web/css/border-block-start-width/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-block-start-width.html")}}
          - -

          Syntax

          /* <'border-width'> values */
          @@ -97,8 +95,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-block-start-width")}}

          See also

          diff --git a/files/en-us/web/css/border-block-start/index.html b/files/en-us/web/css/border-block-start/index.html index 0fe1206f19651c2..6ad3c3be66df0f8 100644 --- a/files/en-us/web/css/border-block-start/index.html +++ b/files/en-us/web/css/border-block-start/index.html @@ -20,8 +20,6 @@
          {{EmbedInteractiveExample("pages/css/border-block-start.html")}}
          - -

          Constituent properties

          This property is a shorthand for the following CSS properties:

          @@ -111,8 +109,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-block-start")}}

          See also

          diff --git a/files/en-us/web/css/border-block-style/index.html b/files/en-us/web/css/border-block-style/index.html index e13ff15ca683d51..41be1d7cb85cab0 100644 --- a/files/en-us/web/css/border-block-style/index.html +++ b/files/en-us/web/css/border-block-style/index.html @@ -89,8 +89,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-block-style")}}

          See also

          diff --git a/files/en-us/web/css/border-block-width/index.html b/files/en-us/web/css/border-block-width/index.html index 387607d857cb965..d5962c136081baa 100644 --- a/files/en-us/web/css/border-block-width/index.html +++ b/files/en-us/web/css/border-block-width/index.html @@ -87,8 +87,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-block-width")}}

          See also

          diff --git a/files/en-us/web/css/border-block/index.html b/files/en-us/web/css/border-block/index.html index 8233a1a97fde33e..6b0558b54201b5b 100644 --- a/files/en-us/web/css/border-block/index.html +++ b/files/en-us/web/css/border-block/index.html @@ -105,8 +105,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-block")}}

          See also

          diff --git a/files/en-us/web/css/border-bottom-color/index.html b/files/en-us/web/css/border-bottom-color/index.html index 9e7ebc27007f720..6359642df5fc3e6 100644 --- a/files/en-us/web/css/border-bottom-color/index.html +++ b/files/en-us/web/css/border-bottom-color/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-bottom-color.html")}}
          - -

          Syntax

          /* <color> values */
          @@ -103,8 +101,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-bottom-color")}}

          See also

          diff --git a/files/en-us/web/css/border-bottom-left-radius/index.html b/files/en-us/web/css/border-bottom-left-radius/index.html index 183f6d86562c454..6e7a8ce9184e571 100644 --- a/files/en-us/web/css/border-bottom-left-radius/index.html +++ b/files/en-us/web/css/border-bottom-left-radius/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-bottom-left-radius.html")}}
          - -

          The rounding can be a circle or an ellipse, or if one of the value is 0 no rounding is done and the corner is square.

          border-bottom-left-radius.png
          @@ -184,8 +182,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-bottom-left-radius")}}

          See also

          diff --git a/files/en-us/web/css/border-bottom-right-radius/index.html b/files/en-us/web/css/border-bottom-right-radius/index.html index 1dd7f439b49410b..ce3530407c5e818 100644 --- a/files/en-us/web/css/border-bottom-right-radius/index.html +++ b/files/en-us/web/css/border-bottom-right-radius/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-bottom-right-radius.html")}}
          - -

          The rounding can be a circle or an ellipse, or if one of the value is 0 no rounding is done and the corner is square.

          border-bottom-right-radius.png
          @@ -178,8 +176,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-bottom-right-radius")}}

          See also

          diff --git a/files/en-us/web/css/border-bottom-style/index.html b/files/en-us/web/css/border-bottom-style/index.html index 4c0481a9ec21a2f..eb3439d44a18777 100644 --- a/files/en-us/web/css/border-bottom-style/index.html +++ b/files/en-us/web/css/border-bottom-style/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-bottom-style.html")}}
          - -
          Note: The specification doesn't define how borders of different styles connect in the corners.

          Syntax

          @@ -126,8 +124,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-bottom-style")}}

          See also

          diff --git a/files/en-us/web/css/border-bottom-width/index.html b/files/en-us/web/css/border-bottom-width/index.html index ff96359640aa7bb..d1ca9b7b402e64b 100644 --- a/files/en-us/web/css/border-bottom-width/index.html +++ b/files/en-us/web/css/border-bottom-width/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-bottom-width.html")}}
          - -

          Syntax

          /* Keyword values */
          @@ -137,8 +135,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-bottom-width")}}

          See also

          diff --git a/files/en-us/web/css/border-bottom/index.html b/files/en-us/web/css/border-bottom/index.html index 67a012ada794006..deb8520f23724f8 100644 --- a/files/en-us/web/css/border-bottom/index.html +++ b/files/en-us/web/css/border-bottom/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-bottom.html")}}
          - -

          As with all shorthand properties, border-bottom always sets the values of all of the properties that it can set, even if they are not specified. It sets those that are not specified to their default values. This means that ...

          border-bottom-style: dotted;
          diff --git a/files/en-us/web/css/border-collapse/index.html b/files/en-us/web/css/border-collapse/index.html
          index 409e37df558b318..227b3c7d0f123a2 100644
          --- a/files/en-us/web/css/border-collapse/index.html
          +++ b/files/en-us/web/css/border-collapse/index.html
          @@ -15,8 +15,6 @@
           
           
          {{EmbedInteractiveExample("pages/css/border-collapse.html")}}
          - -

          When cells are collapsed, the {{cssxref("border-style")}} value of inset behaves like groove, and outset behaves like ridge.

          When cells are separated, the distance between cells is defined by the {{cssxref("border-spacing")}} property.

          @@ -137,8 +135,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-collapse")}}

          See also

          diff --git a/files/en-us/web/css/border-color/index.html b/files/en-us/web/css/border-color/index.html index c32af148a6f8195..df920061ea1a290 100644 --- a/files/en-us/web/css/border-color/index.html +++ b/files/en-us/web/css/border-color/index.html @@ -20,8 +20,6 @@
          {{EmbedInteractiveExample("pages/css/border-color.html")}}
          - -

          Each side can be set individually using {{CSSxRef("border-top-color")}}, {{CSSxRef("border-right-color")}}, {{CSSxRef("border-bottom-color")}}, and {{CSSxRef("border-left-color")}}; or using the writing mode-aware {{CSSxRef("border-block-start-color")}}, {{CSSxRef("border-block-end-color")}}, {{CSSxRef("border-inline-start-color")}}, and {{CSSxRef("border-inline-end-color")}}.

          You can find more information about border colors in {{SectionOnPage("/en-US/docs/Web/HTML/Applying_color", "Borders")}}.

          @@ -193,8 +191,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-color")}}

          See also

          diff --git a/files/en-us/web/css/border-end-end-radius/index.html b/files/en-us/web/css/border-end-end-radius/index.html index 65385df9ef7f370..7d2b16297ba3c60 100644 --- a/files/en-us/web/css/border-end-end-radius/index.html +++ b/files/en-us/web/css/border-end-end-radius/index.html @@ -100,8 +100,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-end-end-radius")}}

          See also

          diff --git a/files/en-us/web/css/border-end-start-radius/index.html b/files/en-us/web/css/border-end-start-radius/index.html index 6ca136a01b47b64..c4ffe6f2518e274 100644 --- a/files/en-us/web/css/border-end-start-radius/index.html +++ b/files/en-us/web/css/border-end-start-radius/index.html @@ -100,8 +100,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-end-start-radius")}}

          See also

          diff --git a/files/en-us/web/css/border-image-outset/index.html b/files/en-us/web/css/border-image-outset/index.html index a4baeb775a3d888..12ae7be54a9b888 100644 --- a/files/en-us/web/css/border-image-outset/index.html +++ b/files/en-us/web/css/border-image-outset/index.html @@ -16,8 +16,6 @@
          {{EmbedInteractiveExample("pages/css/border-image-outset.html")}}
          - -

          Syntax

          /* <length> value */
          @@ -112,8 +110,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-image-outset")}}

          See also

          diff --git a/files/en-us/web/css/border-image-repeat/index.html b/files/en-us/web/css/border-image-repeat/index.html index 5b80c686650a206..e203fea5a653885 100644 --- a/files/en-us/web/css/border-image-repeat/index.html +++ b/files/en-us/web/css/border-image-repeat/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-image-repeat.html")}}
          - -

          Syntax

          /* Keyword value */
          @@ -126,8 +124,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-image-repeat")}}

          See also

          diff --git a/files/en-us/web/css/border-image-slice/index.html b/files/en-us/web/css/border-image-slice/index.html index 4e92a6cddea6774..00ca23883cc4e96 100644 --- a/files/en-us/web/css/border-image-slice/index.html +++ b/files/en-us/web/css/border-image-slice/index.html @@ -15,8 +15,6 @@
          {{EmbedInteractiveExample("pages/css/border-image-slice.html")}}
          - -

          The slicing process creates nine regions in total: four corners, four edges, and a middle region. Four slice lines, set a given distance from their respective sides, control the size of the regions.

          The nine regions defined by the border-image or border-image-slice properties

          @@ -189,8 +187,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-image-slice")}}

          See also

          diff --git a/files/en-us/web/css/border-image-source/index.html b/files/en-us/web/css/border-image-source/index.html index 0c6464788be6294..7e155f418e70fa6 100644 --- a/files/en-us/web/css/border-image-source/index.html +++ b/files/en-us/web/css/border-image-source/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-image-source.html")}}
          - -

          The {{cssxref("border-image-slice")}} property is used to divide the source image into regions, which are then dynamically applied to the final border image.

          Syntax

          @@ -80,8 +78,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-image-source")}}

          See also

          diff --git a/files/en-us/web/css/border-image-width/index.html b/files/en-us/web/css/border-image-width/index.html index 0e438176cc92e08..69cb101d83f5b52 100644 --- a/files/en-us/web/css/border-image-width/index.html +++ b/files/en-us/web/css/border-image-width/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-image-width.html")}}
          - -

          If this property's value is greater than the element's {{cssxref("border-width")}}, the border image will extend beyond the padding (and/or content) edge.

          Syntax

          @@ -127,8 +125,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-image-width")}}

          See also

          diff --git a/files/en-us/web/css/border-image/index.html b/files/en-us/web/css/border-image/index.html index ba4487a6baedddc..e8c7c7a0d49e872 100644 --- a/files/en-us/web/css/border-image/index.html +++ b/files/en-us/web/css/border-image/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-image.html")}}
          - -

          Note: You should specify a separate {{cssxref("border-style")}} in case the border image fails to load. Indeed, this is required according to the specification, although not all browsers implement this requirement.

          @@ -166,8 +164,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-image")}}

          See also

          diff --git a/files/en-us/web/css/border-inline-color/index.html b/files/en-us/web/css/border-inline-color/index.html index 8dfe6d142d45b34..a1b6e2478331aa2 100644 --- a/files/en-us/web/css/border-inline-color/index.html +++ b/files/en-us/web/css/border-inline-color/index.html @@ -86,8 +86,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-inline-color")}}

          See also

          diff --git a/files/en-us/web/css/border-inline-end-color/index.html b/files/en-us/web/css/border-inline-end-color/index.html index 6926a6ed97f351a..4635a4b450b6499 100644 --- a/files/en-us/web/css/border-inline-end-color/index.html +++ b/files/en-us/web/css/border-inline-end-color/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-inline-end-color.html")}}
          - -

          Syntax

          border-inline-end-color: rebeccapurple;
          @@ -92,8 +90,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-inline-end-color")}}

          See also

          diff --git a/files/en-us/web/css/border-inline-end-style/index.html b/files/en-us/web/css/border-inline-end-style/index.html index c2fd51ad66c7f0e..78d8d9a8f4ccc99 100644 --- a/files/en-us/web/css/border-inline-end-style/index.html +++ b/files/en-us/web/css/border-inline-end-style/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-inline-end-style.html")}}
          - -

          Syntax

          /* <'border-style'> values */
          @@ -96,8 +94,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-inline-end-style")}}

          See also

          diff --git a/files/en-us/web/css/border-inline-end-width/index.html b/files/en-us/web/css/border-inline-end-width/index.html index 3884cf20c34c1ba..d50163cbcd2346d 100644 --- a/files/en-us/web/css/border-inline-end-width/index.html +++ b/files/en-us/web/css/border-inline-end-width/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-inline-end-width.html")}}
          - -

          Syntax

          /* <'border-width'> values */
          @@ -97,8 +95,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-inline-end-width")}}

          See also

          diff --git a/files/en-us/web/css/border-inline-end/index.html b/files/en-us/web/css/border-inline-end/index.html index 5088dd87e2e0fa1..f112bda2d753741 100644 --- a/files/en-us/web/css/border-inline-end/index.html +++ b/files/en-us/web/css/border-inline-end/index.html @@ -20,8 +20,6 @@
          {{EmbedInteractiveExample("pages/css/border-inline-end.html")}}
          - -

          Constituent properties

          This property is a shorthand for the following CSS properties:

          @@ -111,8 +109,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-inline-end")}}

          See also

          diff --git a/files/en-us/web/css/border-inline-start-color/index.html b/files/en-us/web/css/border-inline-start-color/index.html index 06a7e22a278c49e..c7b48688c8caf4d 100644 --- a/files/en-us/web/css/border-inline-start-color/index.html +++ b/files/en-us/web/css/border-inline-start-color/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-inline-start-color.html")}}
          - -

          Syntax

          border-inline-start-color: red;
          @@ -90,8 +88,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-inline-start-color")}}

          See also

          diff --git a/files/en-us/web/css/border-inline-start-style/index.html b/files/en-us/web/css/border-inline-start-style/index.html index f9b70a29699fc7e..e35a6b76c1fb481 100644 --- a/files/en-us/web/css/border-inline-start-style/index.html +++ b/files/en-us/web/css/border-inline-start-style/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-inline-start-style.html")}}
          - -

          Syntax

          /* <'border-style'> values */
          @@ -94,8 +92,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-inline-start-style")}}

          See also

          diff --git a/files/en-us/web/css/border-inline-start-width/index.html b/files/en-us/web/css/border-inline-start-width/index.html index 7bf6a4ba1ec90e8..3dbc0d14cfe93f3 100644 --- a/files/en-us/web/css/border-inline-start-width/index.html +++ b/files/en-us/web/css/border-inline-start-width/index.html @@ -19,8 +19,6 @@
          {{EmbedInteractiveExample("pages/css/border-inline-start-width.html")}}
          - -

          Syntax

          /* <'border-width'> values */
          @@ -91,8 +89,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-inline-start-width")}}

          See also

          diff --git a/files/en-us/web/css/border-inline-start/index.html b/files/en-us/web/css/border-inline-start/index.html index cb887517a9019c0..7cd95df35628a47 100644 --- a/files/en-us/web/css/border-inline-start/index.html +++ b/files/en-us/web/css/border-inline-start/index.html @@ -20,8 +20,6 @@
          {{EmbedInteractiveExample("pages/css/border-inline-start.html")}}
          - -

          Constituent properties

          This property is a shorthand for the following CSS properties:

          @@ -109,8 +107,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-inline-start")}}

          See also

          diff --git a/files/en-us/web/css/border-inline-style/index.html b/files/en-us/web/css/border-inline-style/index.html index 3d2dc6853513879..18cf1ec6a3b15f8 100644 --- a/files/en-us/web/css/border-inline-style/index.html +++ b/files/en-us/web/css/border-inline-style/index.html @@ -84,8 +84,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-inline-style")}}

          See also

          diff --git a/files/en-us/web/css/border-inline-width/index.html b/files/en-us/web/css/border-inline-width/index.html index 7b5dc7c082b7f36..0104fa9869b20a4 100644 --- a/files/en-us/web/css/border-inline-width/index.html +++ b/files/en-us/web/css/border-inline-width/index.html @@ -84,8 +84,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-inline-width")}}

          See also

          diff --git a/files/en-us/web/css/border-inline/index.html b/files/en-us/web/css/border-inline/index.html index 69cd346cb03c92b..f9dcdc439deb132 100644 --- a/files/en-us/web/css/border-inline/index.html +++ b/files/en-us/web/css/border-inline/index.html @@ -106,8 +106,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-inline")}}

          See also

          diff --git a/files/en-us/web/css/border-left-color/index.html b/files/en-us/web/css/border-left-color/index.html index 40e77da4dee3ae6..1938ce5228a7d8f 100644 --- a/files/en-us/web/css/border-left-color/index.html +++ b/files/en-us/web/css/border-left-color/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-left-color.html")}}
          - -

          Syntax

          /* <color> values */
          @@ -103,8 +101,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-left-color")}}

          See also

          diff --git a/files/en-us/web/css/border-left-style/index.html b/files/en-us/web/css/border-left-style/index.html index 5b9e3205a002ab8..f296e538ea0e781 100644 --- a/files/en-us/web/css/border-left-style/index.html +++ b/files/en-us/web/css/border-left-style/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-left-style.html")}}
          - -
          Note: The specification doesn't define how borders of different styles connect in the corners.

          Syntax

          @@ -126,8 +124,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-left-style")}}

          See also

          diff --git a/files/en-us/web/css/border-left-width/index.html b/files/en-us/web/css/border-left-width/index.html index b61d5eb772e72d1..3babba64f8ccad2 100644 --- a/files/en-us/web/css/border-left-width/index.html +++ b/files/en-us/web/css/border-left-width/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-left-width.html")}}
          - -

          Syntax

          /* Keyword values */
          @@ -137,8 +135,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-left-width")}}

          See also

          diff --git a/files/en-us/web/css/border-left/index.html b/files/en-us/web/css/border-left/index.html index 2d668c95cb13d2e..c915bce2be9dff5 100644 --- a/files/en-us/web/css/border-left/index.html +++ b/files/en-us/web/css/border-left/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-left.html")}}
          - -

          As with all shorthand properties, border-left always sets the values of all of the properties that it can set, even if they are not specified. It sets those that are not specified to their default values. This means that ...

          border-left-style: dotted;
          diff --git a/files/en-us/web/css/border-radius/index.html b/files/en-us/web/css/border-radius/index.html
          index 0f614d609ac1394..7c3e52111f6e188 100644
          --- a/files/en-us/web/css/border-radius/index.html
          +++ b/files/en-us/web/css/border-radius/index.html
          @@ -216,8 +216,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-radius")}}

          See also

          diff --git a/files/en-us/web/css/border-right-color/index.html b/files/en-us/web/css/border-right-color/index.html index 89cdd6b2d237d1f..63cf4540a528f88 100644 --- a/files/en-us/web/css/border-right-color/index.html +++ b/files/en-us/web/css/border-right-color/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-right-color.html")}}
          - -

          Syntax

          /* <color> values */
          @@ -103,8 +101,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-right-color")}}

          See also

          diff --git a/files/en-us/web/css/border-right-style/index.html b/files/en-us/web/css/border-right-style/index.html index a72659dd29e7570..3d42a81cc2c045c 100644 --- a/files/en-us/web/css/border-right-style/index.html +++ b/files/en-us/web/css/border-right-style/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-right-style.html")}}
          - -
          Note: The specification doesn't define how borders of different styles connect in the corners.

          Syntax

          @@ -126,8 +124,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-right-style")}}

          See also

          diff --git a/files/en-us/web/css/border-right-width/index.html b/files/en-us/web/css/border-right-width/index.html index 6d4241197ef796e..05d985028ec2165 100644 --- a/files/en-us/web/css/border-right-width/index.html +++ b/files/en-us/web/css/border-right-width/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-right-width.html")}}
          - -

          Syntax

          /* Keyword values */
          @@ -137,8 +135,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-right-width")}}

          See also

          diff --git a/files/en-us/web/css/border-right/index.html b/files/en-us/web/css/border-right/index.html index 9f7a14a3308445a..635bf0483f61062 100644 --- a/files/en-us/web/css/border-right/index.html +++ b/files/en-us/web/css/border-right/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-right.html")}}
          - -

          As with all shorthand properties, border-right always sets the values of all of the properties that it can set, even if they are not specified. It sets those that are not specified to their default values. This means that ...

          border-right-style: dotted;
          diff --git a/files/en-us/web/css/border-spacing/index.html b/files/en-us/web/css/border-spacing/index.html
          index d8a294d9899f33f..0d920546750f882 100644
          --- a/files/en-us/web/css/border-spacing/index.html
          +++ b/files/en-us/web/css/border-spacing/index.html
          @@ -14,8 +14,6 @@
           
           
          {{EmbedInteractiveExample("pages/css/border-spacing.html")}}
          - -

          The border-spacing value is also used along the outside edge of the table, where the distance between the table's border and the cells in the first/last column or row is the sum of the relevant (horizontal or vertical) border-spacing and the relevant (top, right, bottom, or left) {{cssxref("padding")}} on the table.

          @@ -121,8 +119,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-spacing")}}

          See also

          diff --git a/files/en-us/web/css/border-start-end-radius/index.html b/files/en-us/web/css/border-start-end-radius/index.html index d94fbd7c8d5ccfe..ce71976e38f6624 100644 --- a/files/en-us/web/css/border-start-end-radius/index.html +++ b/files/en-us/web/css/border-start-end-radius/index.html @@ -100,8 +100,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-start-end-radius")}}

          See also

          diff --git a/files/en-us/web/css/border-start-start-radius/index.html b/files/en-us/web/css/border-start-start-radius/index.html index 878de3e5cfbaa1e..5bbce46d711eac3 100644 --- a/files/en-us/web/css/border-start-start-radius/index.html +++ b/files/en-us/web/css/border-start-start-radius/index.html @@ -100,8 +100,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-start-start-radius")}}

          See also

          diff --git a/files/en-us/web/css/border-style/index.html b/files/en-us/web/css/border-style/index.html index 11073fca575256e..870b231719ba657 100644 --- a/files/en-us/web/css/border-style/index.html +++ b/files/en-us/web/css/border-style/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-style.html")}}
          - -

          Constituent properties

          This property is a shorthand for the following CSS properties:

          @@ -244,8 +242,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-style")}}

          See also

          diff --git a/files/en-us/web/css/border-top-color/index.html b/files/en-us/web/css/border-top-color/index.html index b41b39772c2a9f5..64a7caea5d8360e 100644 --- a/files/en-us/web/css/border-top-color/index.html +++ b/files/en-us/web/css/border-top-color/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-top-color.html")}}
          - -

          Syntax

          /* <color> values */
          @@ -103,8 +101,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-top-color")}}

          See also

          diff --git a/files/en-us/web/css/border-top-left-radius/index.html b/files/en-us/web/css/border-top-left-radius/index.html index df27ca7c385246b..e5c0426d79c1278 100644 --- a/files/en-us/web/css/border-top-left-radius/index.html +++ b/files/en-us/web/css/border-top-left-radius/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-top-left-radius.html")}}
          - -

          The rounding can be a circle or an ellipse, or if one of the value is 0,no rounding is done and the corner is square.

          border-radius.png
          @@ -164,8 +162,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-top-left-radius")}}

          See also

          diff --git a/files/en-us/web/css/border-top-right-radius/index.html b/files/en-us/web/css/border-top-right-radius/index.html index 5a8fb39113a33d3..d69a5c956561afc 100644 --- a/files/en-us/web/css/border-top-right-radius/index.html +++ b/files/en-us/web/css/border-top-right-radius/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-top-right-radius.html")}}
          - -

          The rounding can be a circle or an ellipse, or if one of the value is 0 no rounding is done and the corner is square.

          border-top-right-radius.png
          @@ -166,8 +164,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-top-right-radius")}}

          See also

          diff --git a/files/en-us/web/css/border-top-style/index.html b/files/en-us/web/css/border-top-style/index.html index 98b2284072bca14..dd6960353f68269 100644 --- a/files/en-us/web/css/border-top-style/index.html +++ b/files/en-us/web/css/border-top-style/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-top-style.html")}}
          - -

          The specification doesn't define how borders of different styles connect in the corners.

          @@ -130,8 +128,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-top-style")}}

          See also

          diff --git a/files/en-us/web/css/border-top-width/index.html b/files/en-us/web/css/border-top-width/index.html index 6a6e7dd4a3470ba..1c64abdbb52359d 100644 --- a/files/en-us/web/css/border-top-width/index.html +++ b/files/en-us/web/css/border-top-width/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-top-width.html")}}
          - -

          Syntax

          /* Keyword values */
          @@ -135,8 +133,6 @@ 

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-top-width")}}

          See also

          diff --git a/files/en-us/web/css/border-top/index.html b/files/en-us/web/css/border-top/index.html index 709ca3cfa7fe9cb..5c586ec34f51b01 100644 --- a/files/en-us/web/css/border-top/index.html +++ b/files/en-us/web/css/border-top/index.html @@ -14,8 +14,6 @@
          {{EmbedInteractiveExample("pages/css/border-top.html")}}
          - -

          As with all shorthand properties, border-top always sets the values of all of the properties that it can set, even if they are not specified. It sets those that are not specified to their default values. This means that ...

          border-top-style: dotted;
          diff --git a/files/en-us/web/css/border-width/index.html b/files/en-us/web/css/border-width/index.html
          index 1bb46ac407fb698..1be898d07617d2a 100644
          --- a/files/en-us/web/css/border-width/index.html
          +++ b/files/en-us/web/css/border-width/index.html
          @@ -14,8 +14,6 @@
           
           
          {{EmbedInteractiveExample("pages/css/border-width.html")}}
          - -

          Constituent properties

          This property is a shorthand for the following CSS properties:

          @@ -181,8 +179,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border-width")}}

          See also

          diff --git a/files/en-us/web/css/border/index.html b/files/en-us/web/css/border/index.html index ac8b860b74c0a75..1bca9838d0a88b1 100644 --- a/files/en-us/web/css/border/index.html +++ b/files/en-us/web/css/border/index.html @@ -15,8 +15,6 @@
          {{EmbedInteractiveExample("pages/css/border.html")}}
          - -

          Constituent properties

          This property is a shorthand for the following CSS properties:

          @@ -145,8 +143,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.border")}}

          See also

          diff --git a/files/en-us/web/css/bottom/index.html b/files/en-us/web/css/bottom/index.html index 380f7546af0c6c6..00178ae198c01a1 100644 --- a/files/en-us/web/css/bottom/index.html +++ b/files/en-us/web/css/bottom/index.html @@ -144,8 +144,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.bottom")}}

          See also

          diff --git a/files/en-us/web/css/box-align/index.html b/files/en-us/web/css/box-align/index.html index 35406db6fce234a..816330b6e15b847 100644 --- a/files/en-us/web/css/box-align/index.html +++ b/files/en-us/web/css/box-align/index.html @@ -137,8 +137,6 @@

          Specifications

          Browser compatibility

          - -

          {{Compat("css.properties.box-align")}}

          See also

          diff --git a/files/en-us/web/css/box-decoration-break/index.html b/files/en-us/web/css/box-decoration-break/index.html index 80bfb66402690a8..97c84501652a93b 100644 --- a/files/en-us/web/css/box-decoration-break/index.html +++ b/files/en-us/web/css/box-decoration-break/index.html @@ -15,8 +15,6 @@
          {{EmbedInteractiveExample("pages/css/box-decoration-break.html")}}
          - -

          The specified value will impact the appearance of the following properties:

            @@ -146,8 +144,6 @@

            Specifications

            Browser compatibility

            - -

            {{Compat("css.properties.box-decoration-break")}}

            See also

            diff --git a/files/en-us/web/css/box-direction/index.html b/files/en-us/web/css/box-direction/index.html index 21e5c08e4a3ddc5..13dea151c731c85 100644 --- a/files/en-us/web/css/box-direction/index.html +++ b/files/en-us/web/css/box-direction/index.html @@ -85,8 +85,6 @@

            Specifications

            Browser compatibility

            - -

            {{Compat("css.properties.box-direction")}}

            See also

            diff --git a/files/en-us/web/css/box-flex-group/index.html b/files/en-us/web/css/box-flex-group/index.html index c75994f4950ce33..8fb02ce838080ce 100644 --- a/files/en-us/web/css/box-flex-group/index.html +++ b/files/en-us/web/css/box-flex-group/index.html @@ -64,8 +64,6 @@

            Specifications

            Browser compatibility

            - -
            {{Compat("css.properties.box-flex-group")}}

            See also

            diff --git a/files/en-us/web/css/box-flex/index.html b/files/en-us/web/css/box-flex/index.html index 95efbec5c16a057..42a382abace4096 100644 --- a/files/en-us/web/css/box-flex/index.html +++ b/files/en-us/web/css/box-flex/index.html @@ -104,8 +104,6 @@

            Specifications

            Browser compatibility

            - -
            {{Compat("css.properties.box-flex")}}

            See also

            diff --git a/files/en-us/web/css/box-lines/index.html b/files/en-us/web/css/box-lines/index.html index d831f778dcb4efe..5ab84c41d2bb26b 100644 --- a/files/en-us/web/css/box-lines/index.html +++ b/files/en-us/web/css/box-lines/index.html @@ -77,8 +77,6 @@

            Specifications

            Browser compatibility

            - -
            {{Compat("css.properties.box-lines")}}

            See also

            diff --git a/files/en-us/web/css/box-ordinal-group/index.html b/files/en-us/web/css/box-ordinal-group/index.html index 81a321ca655cf0c..07416db7d99d0f1 100644 --- a/files/en-us/web/css/box-ordinal-group/index.html +++ b/files/en-us/web/css/box-ordinal-group/index.html @@ -66,8 +66,6 @@

            Specifications

            Browser compatibility

            - -

            {{Compat("css.properties.box-ordinal-group")}}

            See also

            diff --git a/files/en-us/web/css/box-orient/index.html b/files/en-us/web/css/box-orient/index.html index b8b659329c46989..c50d22bdd8cdf84 100644 --- a/files/en-us/web/css/box-orient/index.html +++ b/files/en-us/web/css/box-orient/index.html @@ -93,8 +93,6 @@

            Specifications

            Browser compatibility

            - -

            {{Compat("css.properties.box-orient")}}

            See also

            diff --git a/files/en-us/web/css/box-pack/index.html b/files/en-us/web/css/box-pack/index.html index 46106a6c0abd03a..37b1583452f8fd5 100644 --- a/files/en-us/web/css/box-pack/index.html +++ b/files/en-us/web/css/box-pack/index.html @@ -135,8 +135,6 @@

            Specifications

            Browser compatibility

            - -
            {{Compat("css.properties.box-pack")}}

            See also

            diff --git a/files/en-us/web/css/box-shadow/index.html b/files/en-us/web/css/box-shadow/index.html index 43f288ebb3b1dc8..2cce539c52934e1 100644 --- a/files/en-us/web/css/box-shadow/index.html +++ b/files/en-us/web/css/box-shadow/index.html @@ -179,8 +179,6 @@

            Specifications

            Browser compatibility

            - -

            {{Compat("css.properties.box-shadow")}}

            See also

            diff --git a/files/en-us/web/css/box-sizing/index.html b/files/en-us/web/css/box-sizing/index.html index 5d2b03e6b097462..6b3a1031892fe3a 100644 --- a/files/en-us/web/css/box-sizing/index.html +++ b/files/en-us/web/css/box-sizing/index.html @@ -124,8 +124,6 @@

            Specifications

            Browser compatibility

            - -

            {{Compat("css.properties.box-sizing")}}

            See also

            diff --git a/files/en-us/web/css/break-after/index.html b/files/en-us/web/css/break-after/index.html index 23438b138547ef3..3ec7540272e3d4d 100644 --- a/files/en-us/web/css/break-after/index.html +++ b/files/en-us/web/css/break-after/index.html @@ -247,8 +247,6 @@

            Specifications

            Browser compatibility

            - -

            Support in multi-column layout

            {{Compat("css.properties.break-after.multicol_context")}}

            diff --git a/files/en-us/web/css/break-before/index.html b/files/en-us/web/css/break-before/index.html index 1795d8a1b382df8..9a1d11ae98559c4 100644 --- a/files/en-us/web/css/break-before/index.html +++ b/files/en-us/web/css/break-before/index.html @@ -247,8 +247,6 @@

            Specifications

            Browser compatibility

            - -

            Support in multi-column layout

            {{Compat("css.properties.break-before.multicol_context")}}

            diff --git a/files/en-us/web/css/break-inside/index.html b/files/en-us/web/css/break-inside/index.html index 02b056d50222806..a8e96bd87052868 100644 --- a/files/en-us/web/css/break-inside/index.html +++ b/files/en-us/web/css/break-inside/index.html @@ -195,8 +195,6 @@

            Specifications

            Browser compatibility

            - -

            {{Compat("css.properties.break-inside", 4)}}

            Notes on compatibility

            diff --git a/files/en-us/web/css/calc()/index.html b/files/en-us/web/css/calc()/index.html index 4a3cd9dca984ed4..693eeb71aaf088c 100644 --- a/files/en-us/web/css/calc()/index.html +++ b/files/en-us/web/css/calc()/index.html @@ -172,8 +172,6 @@

            Specifications

            Browser compatibility

            - -

            {{Compat("css.types.calc")}}

            See also

            diff --git a/files/en-us/web/css/caption-side/index.html b/files/en-us/web/css/caption-side/index.html index 8c83fd01355b53a..472d9246c33840e 100644 --- a/files/en-us/web/css/caption-side/index.html +++ b/files/en-us/web/css/caption-side/index.html @@ -14,8 +14,6 @@
            {{EmbedInteractiveExample("pages/css/caption-side.html")}}
            - -

            Syntax

            /* Directional values */
            @@ -145,9 +143,6 @@ 

            Specifications

        -

        Browser compatibility

        - -

        {{Compat("css.properties.caption-side")}}

        diff --git a/files/en-us/web/css/caret-color/index.html b/files/en-us/web/css/caret-color/index.html index 529a95f1b162abe..c194e5f00c753a6 100644 --- a/files/en-us/web/css/caret-color/index.html +++ b/files/en-us/web/css/caret-color/index.html @@ -22,8 +22,6 @@
        {{EmbedInteractiveExample("pages/css/caret-color.html")}}
        - -

        Note that the insertion caret is only one type of caret. For example, many browsers have a “navigation caret,” which acts similarly to an insertion caret but can be moved around in non-editable text. On the other hand, the mouse cursor image shown when hovering over text where the {{cssxref("cursor")}} property is auto, or when hovering over an element where the cursor property is text or vertical-text, though it sometimes looks like a caret, is not a caret (it’s a cursor).

        Syntax

        @@ -84,7 +82,6 @@

        CSS

        caret-color: red; } - p.custom { caret-color: green; } @@ -112,11 +109,8 @@

        Specifications

        -

        Browser compatibility

        - -

        {{Compat("css.properties.caret-color")}}

        See also

        diff --git a/files/en-us/web/css/child_combinator/index.html b/files/en-us/web/css/child_combinator/index.html index 76c838a8347ec16..d016559997e5779 100644 --- a/files/en-us/web/css/child_combinator/index.html +++ b/files/en-us/web/css/child_combinator/index.html @@ -81,8 +81,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.child")}}

        See also

        diff --git a/files/en-us/web/css/clamp()/index.html b/files/en-us/web/css/clamp()/index.html index 4c5ebd4b6f06f61..75223228796b691 100644 --- a/files/en-us/web/css/clamp()/index.html +++ b/files/en-us/web/css/clamp()/index.html @@ -20,8 +20,6 @@
        {{EmbedInteractiveExample("pages/css/function-clamp.html")}}
        - -

        Note that using clamp() for font sizes, as in these examples, allows you to set a font-size that grows with the size of the viewport, but doesn't go below a minimum font-size or above a maximum font-size. It has the same effect as the code in Fluid Typography but in one line, and without the use of media queries.

        Syntax

        @@ -114,8 +112,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.types.clamp")}}

        See also

        diff --git a/files/en-us/web/css/class_selectors/index.html b/files/en-us/web/css/class_selectors/index.html index f618e4a5a1ffd59..867d5e95a46c3b5 100644 --- a/files/en-us/web/css/class_selectors/index.html +++ b/files/en-us/web/css/class_selectors/index.html @@ -102,8 +102,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.class")}}

        See also

        diff --git a/files/en-us/web/css/clear/index.html b/files/en-us/web/css/clear/index.html index 8ab0b8d684c21a7..7e3f0f579a83546 100644 --- a/files/en-us/web/css/clear/index.html +++ b/files/en-us/web/css/clear/index.html @@ -14,8 +14,6 @@
        {{EmbedInteractiveExample("pages/css/clear.html")}}
        - -

        When applied to non-floating blocks, it moves the border edge of the element down until it is below the margin edge of all relevant floats. The non-floated block's top margin collapses.

        Vertical margins between two floated elements on the other hand will not collapse. When applied to floating elements, the margin edge of the bottom element is moved below the margin edge of all relevant floats. This affects the position of later floats, since later floats cannot be positioned higher than earlier ones.

        @@ -228,8 +226,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.clear")}}

        See also

        diff --git a/files/en-us/web/css/clip-path/index.html b/files/en-us/web/css/clip-path/index.html index f5be9c15154026f..b401d28b77023cb 100644 --- a/files/en-us/web/css/clip-path/index.html +++ b/files/en-us/web/css/clip-path/index.html @@ -16,8 +16,6 @@
        {{EmbedInteractiveExample("pages/css/clip-path.html")}}
        - -

        Syntax

        /* Keyword values */
        @@ -190,8 +188,6 @@ 

        Comparison of HTML and SVG

        </div> </div> - - <div class="note">clip-path: circle(25%)</div> <div class="row"> <div class="cell"> <span>HTML</span> @@ -603,8 +599,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.clip-path")}}

        See also

        diff --git a/files/en-us/web/css/clip/index.html b/files/en-us/web/css/clip/index.html index 7b261024d93a45d..1f3217fc1152263 100644 --- a/files/en-us/web/css/clip/index.html +++ b/files/en-us/web/css/clip/index.html @@ -73,7 +73,6 @@

        CSS

        clip: rect(0, 175px, 113px, 0); } - #middle { left: 280px; clip: rect(119px, 255px, 229px, 80px); @@ -123,8 +122,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.clip")}}

        See also

        diff --git a/files/en-us/web/css/color/index.html b/files/en-us/web/css/color/index.html index 5da2e05f1aa9fb5..93e5844487930b4 100644 --- a/files/en-us/web/css/color/index.html +++ b/files/en-us/web/css/color/index.html @@ -157,8 +157,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.color")}}

        See also

        diff --git a/files/en-us/web/css/color_value/index.html b/files/en-us/web/css/color_value/index.html index 50da0fd8c66fc70..6b231217355c524 100644 --- a/files/en-us/web/css/color_value/index.html +++ b/files/en-us/web/css/color_value/index.html @@ -1573,8 +1573,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.types.color")}}

        See also

        diff --git a/files/en-us/web/css/column-count/index.html b/files/en-us/web/css/column-count/index.html index eb0d3549634717e..c6e46f2118d32ae 100644 --- a/files/en-us/web/css/column-count/index.html +++ b/files/en-us/web/css/column-count/index.html @@ -17,8 +17,6 @@
        {{EmbedInteractiveExample("pages/css/column-count.html")}}
        - -

        Syntax

        /* Keyword value */
        @@ -91,11 +89,8 @@ 

        Specifications

        -

        Browser compatibility

        - -

        {{Compat("css.properties.column-count")}}

        See also

        diff --git a/files/en-us/web/css/column-fill/index.html b/files/en-us/web/css/column-fill/index.html index cccb845d4ed689c..0e70e57e2e8a905 100644 --- a/files/en-us/web/css/column-fill/index.html +++ b/files/en-us/web/css/column-fill/index.html @@ -14,8 +14,6 @@
        {{EmbedInteractiveExample("pages/css/column-fill.html")}}
        - -

        Syntax

        /* Keyword values */
        @@ -106,8 +104,6 @@ 

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.column-fill")}}

        diff --git a/files/en-us/web/css/column-gap/index.html b/files/en-us/web/css/column-gap/index.html index 108fa945d2cb31f..41bb61de3fb836b 100644 --- a/files/en-us/web/css/column-gap/index.html +++ b/files/en-us/web/css/column-gap/index.html @@ -176,8 +176,6 @@

        Specifications

        Browser compatibility

        - -

        Support in Flex layout

        {{Compat("css.properties.column-gap.flex_context")}}

        diff --git a/files/en-us/web/css/column-rule-color/index.html b/files/en-us/web/css/column-rule-color/index.html index 56cfc796ca7560d..fb48a13c7d65a93 100644 --- a/files/en-us/web/css/column-rule-color/index.html +++ b/files/en-us/web/css/column-rule-color/index.html @@ -19,8 +19,6 @@
        {{EmbedInteractiveExample("pages/css/column-rule-color.html")}}
        - -

        Syntax

        /* <color> values */
        @@ -94,11 +92,8 @@ 

        Specifications

        -

        Browser compatibility

        - -

        {{Compat("css.properties.column-rule-color")}}

        See also

        diff --git a/files/en-us/web/css/column-rule-style/index.html b/files/en-us/web/css/column-rule-style/index.html index 6069929ac78821d..8befb8e80d635c3 100644 --- a/files/en-us/web/css/column-rule-style/index.html +++ b/files/en-us/web/css/column-rule-style/index.html @@ -14,8 +14,6 @@
        {{EmbedInteractiveExample("pages/css/column-rule-style.html")}}
        - -

        Syntax

        /* <'border-style'> values */
        @@ -96,8 +94,6 @@ 

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.column-rule-style")}}

        See also

        diff --git a/files/en-us/web/css/column-rule-width/index.html b/files/en-us/web/css/column-rule-width/index.html index e7c5831593981e3..ec49fe2d1fd074f 100644 --- a/files/en-us/web/css/column-rule-width/index.html +++ b/files/en-us/web/css/column-rule-width/index.html @@ -14,8 +14,6 @@
        {{EmbedInteractiveExample("pages/css/column-rule-width.html")}}
        - -

        Syntax

        /* Keyword values */
        @@ -95,8 +93,6 @@ 

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.column-rule-width")}}

        See also

        diff --git a/files/en-us/web/css/column-rule/index.html b/files/en-us/web/css/column-rule/index.html index fd6d78ed912d72b..59de1cb10054a6c 100644 --- a/files/en-us/web/css/column-rule/index.html +++ b/files/en-us/web/css/column-rule/index.html @@ -14,8 +14,6 @@
        {{EmbedInteractiveExample("pages/css/column-rule.html")}}
        - -

        It is a shorthand property that sets the individual column-rule-* properties in a single, convenient declaration: {{Cssxref("column-rule-width")}}, {{Cssxref("column-rule-style")}}, and {{Cssxref("column-rule-color")}}.

        @@ -119,8 +117,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.column-rule")}}

        See also

        diff --git a/files/en-us/web/css/column-span/index.html b/files/en-us/web/css/column-span/index.html index e24c256beed9233..c6759e7f6faa1cc 100644 --- a/files/en-us/web/css/column-span/index.html +++ b/files/en-us/web/css/column-span/index.html @@ -102,11 +102,8 @@

        Specifications

        -

        Browser compatibility

        - -

        {{Compat("css.properties.column-span")}}

        See also

        diff --git a/files/en-us/web/css/column-width/index.html b/files/en-us/web/css/column-width/index.html index 3d64df596c50b8b..586e91f918540e5 100644 --- a/files/en-us/web/css/column-width/index.html +++ b/files/en-us/web/css/column-width/index.html @@ -14,8 +14,6 @@
        {{EmbedInteractiveExample("pages/css/column-width.html")}}
        - -

        This property can help you create responsive designs that fit different screen sizes. Especially in the presence of the {{cssxref("column-count")}} property (which has precedence), you must specify all related length values to achieve an exact column width. In horizontal text these are {{cssxref('width')}}, {{cssxref('column-width')}}, {{cssxref('column-gap')}}, and {{cssxref('column-rule-width')}}.

        Syntax

        @@ -100,8 +98,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.column-width")}}

        See also

        diff --git a/files/en-us/web/css/column_combinator/index.html b/files/en-us/web/css/column_combinator/index.html index d625718ab8abef9..f0642eadae91923 100644 --- a/files/en-us/web/css/column_combinator/index.html +++ b/files/en-us/web/css/column_combinator/index.html @@ -85,8 +85,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.selectors.column")}}

        See also

        diff --git a/files/en-us/web/css/columns/index.html b/files/en-us/web/css/columns/index.html index c3685a7b67ace18..7e7440dffe6bf48 100644 --- a/files/en-us/web/css/columns/index.html +++ b/files/en-us/web/css/columns/index.html @@ -14,8 +14,6 @@
        {{EmbedInteractiveExample("pages/css/columns.html")}}
        - -

        Constituent properties

        This property is a shorthand for the following CSS properties:

        @@ -107,8 +105,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.columns")}}

        See also

        diff --git a/files/en-us/web/css/compositing_and_blending/index.html b/files/en-us/web/css/compositing_and_blending/index.html index 982e7e31ce44b68..791d2b5ec8e1a02 100644 --- a/files/en-us/web/css/compositing_and_blending/index.html +++ b/files/en-us/web/css/compositing_and_blending/index.html @@ -57,7 +57,6 @@

        background-blend-mode prope
        -

        {{Compat("css.properties.background-blend-mode")}}

        diff --git a/files/en-us/web/css/conic-gradient()/index.html b/files/en-us/web/css/conic-gradient()/index.html index 6e34cc46f24cf06..a5f0b6d88ce466e 100644 --- a/files/en-us/web/css/conic-gradient()/index.html +++ b/files/en-us/web/css/conic-gradient()/index.html @@ -234,8 +234,6 @@

        Specifications

        Browser compatibility

        - -
        {{Compat("css.types.image.gradient.conic-gradient")}}

        See also

        diff --git a/files/en-us/web/css/contain-intrinsic-size/index.html b/files/en-us/web/css/contain-intrinsic-size/index.html index 4c63f5ad8e3d4cd..66d2e728647cd4b 100644 --- a/files/en-us/web/css/contain-intrinsic-size/index.html +++ b/files/en-us/web/css/contain-intrinsic-size/index.html @@ -37,8 +37,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.contain-intrinsic-size")}}

        See Also

        diff --git a/files/en-us/web/css/contain/index.html b/files/en-us/web/css/contain/index.html index b44599e733254c4..e82d66b6b623036 100644 --- a/files/en-us/web/css/contain/index.html +++ b/files/en-us/web/css/contain/index.html @@ -199,8 +199,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.contain")}}

        See also

        diff --git a/files/en-us/web/css/content-visibility/index.html b/files/en-us/web/css/content-visibility/index.html index 111574efa34e74d..4ad92082f0759ce 100644 --- a/files/en-us/web/css/content-visibility/index.html +++ b/files/en-us/web/css/content-visibility/index.html @@ -74,8 +74,6 @@

        Using hidden to manually ma contain: style layout paint; } - - <div class=hidden>... <div class=visible>... <div class=hidden>... @@ -103,8 +101,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.content-visibility")}}

        See Also

        diff --git a/files/en-us/web/css/content/index.html b/files/en-us/web/css/content/index.html index 9b5f5e6374ea764..c8f5c97f4f22cde 100644 --- a/files/en-us/web/css/content/index.html +++ b/files/en-us/web/css/content/index.html @@ -286,8 +286,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.content")}}

        See also

        diff --git a/files/en-us/web/css/counter()/index.html b/files/en-us/web/css/counter()/index.html index 96065f5e78e727c..ced2edb672d02ad 100644 --- a/files/en-us/web/css/counter()/index.html +++ b/files/en-us/web/css/counter()/index.html @@ -123,8 +123,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.types.counter")}}

        See also

        diff --git a/files/en-us/web/css/counter-increment/index.html b/files/en-us/web/css/counter-increment/index.html index 6851169df2ef6b8..4af13c7b5b88e38 100644 --- a/files/en-us/web/css/counter-increment/index.html +++ b/files/en-us/web/css/counter-increment/index.html @@ -15,8 +15,6 @@
        {{EmbedInteractiveExample("pages/css/counter-increment.html")}}
        - -

        Note: The counter's value can be reset to an arbitrary number using the {{cssxref("counter-reset")}} CSS property.

        @@ -104,8 +102,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.properties.counter-increment")}}

        See also

        diff --git a/files/en-us/web/css/counter-reset/index.html b/files/en-us/web/css/counter-reset/index.html index ed3aeac0386b7b1..4fdd75f8069522f 100644 --- a/files/en-us/web/css/counter-reset/index.html +++ b/files/en-us/web/css/counter-reset/index.html @@ -14,8 +14,6 @@
        {{EmbedInteractiveExample("pages/css/counter-reset.html")}}
        - -

        Note: The counter's value can be increased or decreased using the {{cssxref("counter-increment")}} CSS property.

        @@ -104,7 +102,6 @@

        Browser compatibility

        -

        {{Compat("css.properties.counter-reset")}}

        diff --git a/files/en-us/web/css/counter-set/index.html b/files/en-us/web/css/counter-set/index.html index 090d11063c20fe1..96b6797ba293212 100644 --- a/files/en-us/web/css/counter-set/index.html +++ b/files/en-us/web/css/counter-set/index.html @@ -96,7 +96,6 @@

        Browser compatibility

        -

        {{Compat("css.properties.counter-set")}}

        diff --git a/files/en-us/web/css/counters()/index.html b/files/en-us/web/css/counters()/index.html index 9f7edc38f306998..26160ce7b90854a 100644 --- a/files/en-us/web/css/counters()/index.html +++ b/files/en-us/web/css/counters()/index.html @@ -165,8 +165,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.types.counters")}}

        See also

        diff --git a/files/en-us/web/css/cross-fade()/index.html b/files/en-us/web/css/cross-fade()/index.html index 559ede2da2afb6f..a15f85eedceacd8 100644 --- a/files/en-us/web/css/cross-fade()/index.html +++ b/files/en-us/web/css/cross-fade()/index.html @@ -135,8 +135,6 @@

        Specifications

        Browser compatibility

        - -

        {{Compat("css.types.image.cross-fade")}}

        See also

        diff --git a/files/en-us/web/css/css_animations/index.html b/files/en-us/web/css/css_animations/index.html index 6923c2f0eef57b0..e0db1186383b2bd 100644 --- a/files/en-us/web/css/css_animations/index.html +++ b/files/en-us/web/css/css_animations/index.html @@ -75,7 +75,6 @@

        animation property

        -

        {{Compat("css.properties.animation")}}

        diff --git a/files/en-us/web/css/css_background_and_borders/border-image_generator/index.html b/files/en-us/web/css/css_background_and_borders/border-image_generator/index.html index 26f39be66b10e26..5b56536d8ed9ae7 100644 --- a/files/en-us/web/css/css_background_and_borders/border-image_generator/index.html +++ b/files/en-us/web/css/css_background_and_borders/border-image_generator/index.html @@ -122,7 +122,6 @@

        HTML Content

                        </div>             </div> -             <div id="output" class="category">                 <div class="title"> CSS Code </div>                 <div class="css-property"> @@ -203,7 +202,6 @@

        CSS Content

        width: 6.86%; } - /* SECTIONS * ========================================================================== */ @@ -216,7 +214,6 @@

        CSS Content

        /* GROUPING * ========================================================================== */ - .group:before, .group:after { content: ""; display: table; @@ -243,8 +240,6 @@

        CSS Content

        margin-left: 0; } /* all browsers except IE6 and lower */ - - /* * UI Component */ @@ -427,7 +422,6 @@

        CSS Content

        cursor: pointer; } - /*************************************************************************************/ /*************************************************************************************/ @@ -542,8 +536,6 @@

        CSS Content

        cursor: default; } - - /******************************************************************************/ /******************************************************************************/ @@ -731,7 +723,6 @@

        CSS Content

        cursor: s-resize; } - #subject .relative { position: relative; font-size: 12px; @@ -837,7 +828,6 @@

        CSS Content

        cursor: nw-resize; } - /* * General controls MENU */ @@ -942,7 +932,6 @@

        CSS Content

        border-radius: 2px; } - /* property */ #controls .property { @@ -1005,7 +994,6 @@

        CSS Content

        float: left; } - #controls .property .ui-checkbox { margin: 0 0 0 16px; float: left; @@ -1053,7 +1041,6 @@

        CSS Content

        /* border-image-slice */ - #border-slice-control .ui-dropdown-list { height: 4.3em; } @@ -1167,7 +1154,6 @@

        CSS Content

        user-select: text; } - @media (min-width: 880px) { #output { width: 63.33% !important; @@ -1180,7 +1166,6 @@

        CSS Content

        } } - #output .title { width: 100%; height: 30px; @@ -1483,7 +1468,6 @@

        JavaScript Content

        })(); - /** * UI-DropDown Select */ @@ -1496,7 +1480,6 @@

        JavaScript Content

        var visbility = ["hidden", "visible"]; - var DropDown = function DropDown(node) { var topic = node.getAttribute('data-topic'); var label = node.getAttribute('data-label'); @@ -1663,7 +1646,6 @@

        JavaScript Content

        })(); - /** * UI-ButtonManager */ @@ -1903,7 +1885,6 @@

        JavaScript Content

        var imgState = null; var selected = null; - var topics = ['slice', 'width', 'outset']; var properties = {}; properties['border1'] = { @@ -2002,7 +1983,6 @@

        JavaScript Content

        preview_area : 500, }; - var loadLocalImage = function loadLocalImage(source) { var location = "images/" + source; imgSource.src = location; @@ -2219,7 +2199,6 @@

        JavaScript Content

        InputSliderManager.setValue(topic, this.position); }; - GuideLine.prototype.updateGuidelinePos = function updateGuidelinePos() { if (this.unit === 0) this.position = this.value * ImageControl.getScale() | 0; @@ -2561,7 +2540,6 @@

        JavaScript Content

        preview = getElemById("preview"); preview_area = getElemById("preview_section"); - CSS_code['source'] = getElemById("out-border-source"); CSS_code['slice'] = getElemById("out-border-slice"); CSS_code['width'] = getElemById("out-border-width"); diff --git a/files/en-us/web/css/css_background_and_borders/border-radius_generator/index.html b/files/en-us/web/css/css_background_and_borders/border-radius_generator/index.html index 2fa1ecc9ada54ea..a003955afb5bc55 100644 --- a/files/en-us/web/css/css_background_and_borders/border-radius_generator/index.html +++ b/files/en-us/web/css/css_background_and_borders/border-radius_generator/index.html @@ -155,9 +155,6 @@

        CSS Content

        width: 6.86%; } - - - /* SECTIONS * ========================================================================== */ @@ -170,7 +167,6 @@

        CSS Content

        /* GROUPING * ========================================================================== */ - .group:before, .group:after { content: ""; display: table; @@ -197,7 +193,6 @@

        CSS Content

        margin-left: 0; } /* all browsers except IE6 and lower */ - /* * UI Component */ @@ -435,7 +430,6 @@

        CSS Content

        background: url("https://mdn.mozillademos.org/files/5677/resize-handle.png") bottom left no-repeat; } - .radius-container { position: absolute; display : block; @@ -446,7 +440,6 @@

        CSS Content

        box-sizing: border-box; } - /* TOP LEFT */ #top-left { top: 0; @@ -728,7 +721,6 @@

        CSS Content

        /******************************************************************************/ /******************************************************************************/ - #radius-lock { width: 200px; height: 75px; @@ -814,14 +806,12 @@

        CSS Content

        float: right; } -

        JavaScript Content

        'use strict';
         
        -
         /**
          * UI-InputSliderManager
          */
        @@ -1109,7 +1099,6 @@ 

        JavaScript Content

        })(); - window.addEventListener("load", function() { BorderRadius.init(); }); @@ -1206,7 +1195,6 @@

        JavaScript Content

        this.salect.value = value; } - var RadiusContainer = function RadiusContainer(node) { var radius = document.createElement('div'); var handle = document.createElement('div'); @@ -1487,7 +1475,6 @@

        JavaScript Content

        this.updateBorderRadius(); } - /** * Tool Manager */ @@ -1593,7 +1580,6 @@

        JavaScript Content

        })(); -
        diff --git a/files/en-us/web/css/css_background_and_borders/box-shadow_generator/index.html b/files/en-us/web/css/css_background_and_borders/box-shadow_generator/index.html index dae9a11fe6bca4b..6f7dcda6e9a5268 100644 --- a/files/en-us/web/css/css_background_and_borders/box-shadow_generator/index.html +++ b/files/en-us/web/css/css_background_and_borders/box-shadow_generator/index.html @@ -265,7 +265,6 @@

        CSS Content

        width: 6.86%; } - /* SECTIONS * ========================================================================== */ @@ -278,7 +277,6 @@

        CSS Content

        /* GROUPING * ========================================================================== */ - .group:before, .group:after { content: ""; display: table; @@ -471,7 +469,6 @@

        CSS Content

        box-sizing: border-box; } - /* container with shadows stacks */ #stack_container { height: 400px; @@ -498,7 +495,6 @@

        CSS Content

        box-sizing: border-box; } - #stack_container .title { text-align: center; font-weight: bold; @@ -507,7 +503,6 @@

        CSS Content

        color: #666; } - /* * Stack of Layers for shadow */ @@ -523,7 +518,6 @@

        CSS Content

        float: left; } - #layer_manager .button { width: 30%; height: 25px; @@ -643,7 +637,6 @@

        CSS Content

        display: block; } - #layer_manager .stack { padding: 0 5px; max-height: 90%; @@ -651,7 +644,6 @@

        CSS Content

        overflow-x: hidden; } - /* * Layer Menu */ @@ -713,7 +705,6 @@

        CSS Content

        display: block; } - /* * active element styling */ @@ -724,7 +715,6 @@

        CSS Content

        border: 1px solid #379B4A; } - /* Checkbox */ #layer_menu .ui-checkbox > label { @@ -739,7 +729,6 @@

        CSS Content

        display: none; } - /******************************************************************************/ /******************************************************************************/ /* @@ -752,7 +741,6 @@

        CSS Content

        } - #preview { width: 100%; height: 400px; @@ -781,7 +769,6 @@

        CSS Content

        position: relative; } - #obj-before { height: 100%; width: 100%; @@ -804,7 +791,6 @@

        CSS Content

        z-index: -1; } - /******************************************************************************/ /******************************************************************************/ @@ -841,7 +827,6 @@

        CSS Content

        } } - @media (max-width: 959px) { .wrap-left { @@ -853,13 +838,11 @@

        CSS Content

        } } - #controls { color: #444; margin: 10px 0 0 0; } - #controls .category { width: 500px; margin: 0 auto 20px; @@ -880,7 +863,6 @@

        CSS Content

        border-radius: 3px; } - /** * Color Picker */ @@ -1061,7 +1043,6 @@

        CSS Content

        box-sizing: border-box; } - /* * UI Components */ @@ -1479,7 +1460,6 @@

        JavaScript Content

        })(); - window.addEventListener("load", function(){ BoxShadow.init(); }); @@ -2194,7 +2174,6 @@

        JavaScript Content

        } - /** * Tool Manager */ @@ -2854,7 +2833,6 @@

        JavaScript Content

        })(); - /** * Init Tool */ @@ -2874,7 +2852,6 @@

        JavaScript Content

        })(); -
      diff --git a/files/en-us/web/css/css_charsets/index.html b/files/en-us/web/css/css_charsets/index.html index bef91252166fb46..ab685d1a748204e 100644 --- a/files/en-us/web/css/css_charsets/index.html +++ b/files/en-us/web/css/css_charsets/index.html @@ -47,6 +47,5 @@

      @charset rule

      -

      {{Compat("css.at-rules.charset")}}

      diff --git a/files/en-us/web/css/css_color/index.html b/files/en-us/web/css/css_color/index.html index b2696adb757352e..cea63c631b2d9e6 100644 --- a/files/en-us/web/css/css_color/index.html +++ b/files/en-us/web/css/css_color/index.html @@ -88,8 +88,6 @@

      Browser compatibility

      color property

      - -

      {{Compat("css.properties.color")}}

      color-adjust property

      diff --git a/files/en-us/web/css/css_colors/color_picker_tool/index.html b/files/en-us/web/css/css_colors/color_picker_tool/index.html index 78b7e930a26fa1d..ebd7e1dc06a789f 100644 --- a/files/en-us/web/css/css_colors/color_picker_tool/index.html +++ b/files/en-us/web/css/css_colors/color_picker_tool/index.html @@ -434,7 +434,6 @@

      CSS

      display: table; } - /** * Container */ @@ -768,7 +767,6 @@

      CSS

      background-position: center right; } - /** * Color Palette */ @@ -993,7 +991,6 @@

      CSS

      display: none; } - /** * Canvas controls */ @@ -1957,8 +1954,6 @@

      JavaScript Content

      })(); - - /** * UI-SlidersManager */ @@ -2222,7 +2217,6 @@

      JavaScript Content

      })(); - 'use strict'; window.addEventListener("load", function() { @@ -3072,7 +3066,6 @@

      JavaScript Content

      this.callback = func; }; - /** * Tool */ diff --git a/files/en-us/web/css/css_conditional_rules/index.html b/files/en-us/web/css/css_conditional_rules/index.html index 1e51068d0973975..36881dc892ddfb6 100644 --- a/files/en-us/web/css/css_conditional_rules/index.html +++ b/files/en-us/web/css/css_conditional_rules/index.html @@ -48,8 +48,6 @@

      Browser compatibility

      @document rule

      - -

      {{Compat("css.at-rules.document")}}

      @import rule

      diff --git a/files/en-us/web/css/css_containment/index.html b/files/en-us/web/css/css_containment/index.html index a789331f96439aa..00fefca2b13e5cd 100644 --- a/files/en-us/web/css/css_containment/index.html +++ b/files/en-us/web/css/css_containment/index.html @@ -142,8 +142,6 @@

      Specifications

      Browser compatibility

      - -

      {{Compat("css.properties.contain")}}

      diff --git a/files/en-us/web/css/css_counter_styles/index.html b/files/en-us/web/css/css_counter_styles/index.html index df90d465adea7f0..6991e8a1d097c7a 100644 --- a/files/en-us/web/css/css_counter_styles/index.html +++ b/files/en-us/web/css/css_counter_styles/index.html @@ -75,8 +75,6 @@

      Browser compatibility

      @counter-style rule

      - -

      {{Compat("css.at-rules.counter-style")}}

      counter-increment property

      diff --git a/files/en-us/web/css/css_device_adaptation/index.html b/files/en-us/web/css/css_device_adaptation/index.html index 6ce2a968810da54..a71e47bc9103a18 100644 --- a/files/en-us/web/css/css_device_adaptation/index.html +++ b/files/en-us/web/css/css_device_adaptation/index.html @@ -47,6 +47,5 @@

      @viewport rule

      -

      {{Compat("css.at-rules.viewport")}}

      diff --git a/files/en-us/web/css/css_grid_layout/index.html b/files/en-us/web/css/css_grid_layout/index.html index 1503844a1d70fdd..7081b64f5ca7705 100644 --- a/files/en-us/web/css/css_grid_layout/index.html +++ b/files/en-us/web/css/css_grid_layout/index.html @@ -208,8 +208,6 @@

      Specifications

      - -