Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove parameters from InheritanceDiagram macro calls #11117

Merged
merged 2 commits into from
Jan 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ Now you should be ready to start writing your interface pages. Each interface re
- \\{{Non-standard_header}}

3. **Description**: the first paragraph of the interface page should provide a short concise description of the interface's overarching purpose. You may also want to include a couple more paragraphs if any additional description is required. If the interface is actually a dictionary, you should use that term instead of "interface".
4. **Inheritance diagram:** Use the [`InheritanceDiagram`](https://github.com/mdn/yari/blob/main/kumascript/macros/InheritanceDiagram.ejs) macro to embed an SVG inheritance diagram for the interface. For most interfaces, you won't need any parameters, but if the inheritance chain is long, you may need to use \\{{InheritanceDiagram(600, 120)}} to make room vertically for two rows of boxes.
4. **Inheritance diagram:** Use the [`InheritanceDiagram`](https://github.com/mdn/yari/blob/main/kumascript/macros/InheritanceDiagram.ejs) macro to embed an SVG inheritance diagram for the interface.
5. **List of properties, List of methods**: These sections should be titled  "Properties" and "Methods", and provide links (using the \\{{domxref}} macro) to a reference  page for each property/method of that interface, along with a description of what  each one does. These should be marked up using description/definition  lists, which can be created using the  "Definition List", "Definition  Term", and "Definition Description" buttons on the MDN editor toolbar. Each description should be short and concise — one sentence if possible. See the "Referencing other API features with the \\{{domxref}} macro" section for a quicker way to create links to other pages.

At the beginning of both sections, before the beginning of the list of properties/methods, indicate inheritance using the appropriate sentence, in italics:
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/audiobuffersourcenode/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The **`AudioBufferSourceNode`** interface is an {{domxref("AudioScheduledSourceN

This interface is especially useful for playing back audio which has particularly stringent timing accuracy requirements, such as for sounds that must match a specific rhythm and can be kept in memory rather than being played from disk or the network. To play sounds which require accurate timing but must be streamed from the network or played from disk, use a {{domxref("AudioWorkletNode")}} to implement its playback.

{{InheritanceDiagram(600, 140)}}
{{InheritanceDiagram}}

An `AudioBufferSourceNode` has no inputs and exactly one output, which has the same number of channels as the `AudioBuffer` indicated by its {{domxref("AudioBufferSourceNode.buffer", "buffer")}} property. If there's no buffer set—that is, if `buffer` is `null`—the output contains a single channel of silence (every sample is 0).

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/beforeinstallpromptevent/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The **`BeforeInstallPromptEvent`** is fired at the {{domxref("Window.onbeforein

This interface inherits from the {{domxref("Event")}} interface.

{{InheritanceDiagram(700, 60, 20)}}
{{InheritanceDiagram}}

## Constructor

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/beforeunloadevent/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The **`beforeunload`** event is fired when the window, the document and its reso

When a non-empty string is assigned to the `returnValue` Event property, a dialog box appears, asking the users for confirmation to leave the page (see example below). When no value is provided, the event is processed silently. Some implementations only show the dialog box if the frame or any embedded frame receives a user gesture or user interaction. See {{anch("Browser compatibility")}} for more information.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

<table class="properties">
<tbody>
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/cdatasection/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ of a CDATA section itself, `]]>`.

> **Note:* CDATA sections should not be used within HTML they are considered as comments and not displayed.
{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/errorevent/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ browser-compat: api.ErrorEvent

The **`ErrorEvent`** interface represents events providing information related to errors in scripts or in files.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/extendableevent/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ If {{domxref("ExtendableEvent.waitUntil","waitUntil()")}} is called outside of t
This interface inherits from the {{domxref("Event")}} interface.

{{InheritanceDiagram(700, 60, 20)}}
{{InheritanceDiagram}}

> **Note:** This interface is only available when the global scope is a {{domxref("ServiceWorkerGlobalScope")}}. It is not available when it is a {{domxref("Window")}}, or the scope of another kind of worker.
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlanchorelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ browser-compat: api.HTMLAnchorElement

The **`HTMLAnchorElement`** interface represents hyperlink elements and provides special properties and methods (beyond those of the regular {{domxref("HTMLElement")}} object interface that they inherit from) for manipulating the layout and presentation of such elements. This interface corresponds to [`<a>`](/en-US/docs/Web/HTML/Element/a) element; not to be confused with [`<link>`](/en-US/docs/Web/HTML/Element/link), which is represented by [`HTMLLinkElement`](/en-US/docs/Web/API/HTMLLinkElement))

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlareaelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ browser-compat: api.HTMLAreaElement

The **`HTMLAreaElement`** interface provides special properties and methods (beyond those of the regular object {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating the layout and presentation of {{HtmlElement("area")}} elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlaudioelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The **`HTMLAudioElement`** interface provides access to the properties of {{HTML

This element is based on, and inherits properties and methods from, the {{domxref("HTMLMediaElement")}} interface.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Constructor

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlbaseelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ browser-compat: api.HTMLBaseElement

The **`HTMLBaseElement`** interface contains the base URI for a document. This object inherits all of the properties and methods as described in the {{domxref("HTMLElement")}} interface.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlbodyelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser-compat: api.HTMLBodyElement

The **`HTMLBodyElement`** interface provides special properties (beyond those inherited from the regular {{ domxref("HTMLElement") }} interface) for manipulating {{HtmlElement("body")}} elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlbrelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ browser-compat: api.HTMLBRElement

The **`HTMLBRElement`** interface represents a HTML line break element ({{htmlelement("br")}}). It inherits from {{domxref("HTMLElement")}}.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlbuttonelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser-compat: api.HTMLButtonElement

The **`HTMLButtonElement`** interface provides properties and methods (beyond the regular {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating {{HTMLElement("button")}} elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlcanvaselement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser-compat: api.HTMLCanvasElement

The **`HTMLCanvasElement`** interface provides properties and methods for manipulating the layout and presentation of {{HtmlElement("canvas")}} elements. The `HTMLCanvasElement` interface also inherits the properties and methods of the {{domxref("HTMLElement")}} interface.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmldataelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ browser-compat: api.HTMLDataElement

The **`HTMLDataElement`** interface provides special properties (beyond the regular {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating {{HTMLElement("data")}} elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmldatalistelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ browser-compat: api.HTMLDataListElement

The **`HTMLDataListElement`** interface provides special properties (beyond the {{domxref("HTMLElement")}} object interface it also has available to it by inheritance) to manipulate {{ HTMLElement("datalist") }} elements and their content.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmldetailselement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ browser-compat: api.HTMLDetailsElement

The **`HTMLDetailsElement`** interface provides special properties (beyond the regular {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating {{HTMLElement("details")}} elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmldialogelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ browser-compat: api.HTMLDialogElement

The **`HTMLDialogElement`** interface provides methods to manipulate {{HTMLElement("dialog")}} elements. It inherits properties and methods from the {{domxref("HTMLElement")}} interface.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmldivelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser-compat: api.HTMLDivElement

The **`HTMLDivElement`** interface provides special properties (beyond the regular {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating {{HtmlElement("div")}} elements.

{{InheritanceDiagram(600,120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmldlistelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser-compat: api.HTMLDListElement

The **`HTMLDListElement`** interface provides special properties (beyond those of the regular {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating definition list ({{HtmlElement("dl")}}) elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlembedelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The **`HTMLEmbedElement`** interface provides special properties (beyond the reg

> **Note:** This topic describes the `HTMLEmbedElement` interface as defined in the standard. It does not address earlier, non-standardized version of the interface.
{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlfieldsetelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ browser-compat: api.HTMLFieldSetElement

The **`HTMLFieldSetElement`** interface provides special properties and methods (beyond the regular {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating the layout and presentation of {{ HTMLElement("fieldset") }} elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlformelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ browser-compat: api.HTMLFormElement

The **`HTMLFormElement`** interface represents a {{HTMLElement("form")}} element in the DOM. It allows access to—and, in some cases, modification of—aspects of the form, as well as access to its component elements.

{{InheritanceDiagram(600,120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlheadelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ browser-compat: api.HTMLHeadElement

The **`HTMLHeadElement`** interface contains the descriptive information, or metadata, for a document. This object inherits all of the properties and methods described in the {{domxref("HTMLElement")}} interface.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlheadingelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser-compat: api.HTMLHeadingElement

The **`HTMLHeadingElement`** interface represents the different heading elements, [`<h1>` through `<h6>`](/en-US/docs/Web/HTML/Element/Heading_Elements). It inherits methods and properties from the {{domxref("HTMLElement")}} interface.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlhrelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser-compat: api.HTMLHRElement

The **`HTMLHRElement`** interface provides special properties (beyond those of the {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating {{HTMLElement("hr")}} elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlhtmlelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The **`HTMLHtmlElement`** interface serves as the root node for a given HTML doc

You can retrieve the `HTMLHtmlElement` object for a given document by reading the value of the {{domxref("document.documentElement")}} property.

{{InheritanceDiagram(600,120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmliframeelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ browser-compat: api.HTMLIFrameElement

The **`HTMLIFrameElement`** interface provides special properties and methods (beyond those of the {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating the layout and presentation of inline frame elements.

{{InheritanceDiagram(600,120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlimageelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ browser-compat: api.HTMLImageElement

The **`HTMLImageElement`** interface represents an HTML {{HTMLElement("img")}} element, providing the properties and methods used to manipulate image elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Constructor

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlinputelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ browser-compat: api.HTMLInputElement

The **`HTMLInputElement`** interface provides special properties and methods for manipulating the options, layout, and presentation of {{HtmlElement("input")}} elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmllabelelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser-compat: api.HTMLLabelElement

The **`HTMLLabelElement`** interface gives access to properties specific to {{HTMLElement("label")}} elements. It inherits methods and properties from the base {{domxref("HTMLElement")}} interface.

{{InheritanceDiagram(600,120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmllegendelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser-compat: api.HTMLLegendElement

The **`HTMLLegendElement`** is an interface allowing to access properties of the {{HTMLElement("legend")}} elements. It inherits properties and methods from the {{domxref("HTMLElement")}} interface.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmllielement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser-compat: api.HTMLLIElement

The **`HTMLLIElement`** interface exposes specific properties and methods (beyond those defined by regular {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating list elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmllinkelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser-compat: api.HTMLLinkElement

The **`HTMLLinkElement`** interface represents reference information for external resources and the relationship of those resources to a document and vice-versa (corresponds to [`<link>`](/en-US/docs/Web/HTML/Element/link) element; not to be confused with [`<a>`](/en-US/docs/Web/HTML/Element/a), which is represented by [`HTMLAnchorElement`](/en-US/docs/Web/API/HTMLAnchorElement)). This object inherits all of the properties and methods of the {{domxref("HTMLElement")}} interface.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlmapelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ browser-compat: api.HTMLMapElement

The **`HTMLMapElement`** interface provides special properties and methods (beyond those of the regular object {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating the layout and presentation of map elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlmediaelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The **`HTMLMediaElement`** interface adds to {{domxref("HTMLElement")}} the prop

The {{domxref("HTMLVideoElement")}} and {{domxref("HTMLAudioElement")}} elements both inherit this interface.

{{InheritanceDiagram(600, 180)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 0 additions & 2 deletions files/en-us/web/api/htmlmediaelement/onencrypted/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ The **`onencrypted`** property of the

This interface inherits from the {{domxref("ExtendableEvent")}} interface.

{{InheritanceDiagram(700, 60, 20)}}

## Syntax

```js
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ for an encryption key.

This interface inherits from the {{domxref("ExtendableEvent")}} interface.

{{InheritanceDiagram(700, 60, 20)}}

## Syntax

```js
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlmenuelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ browser-compat: api.HTMLMenuElement

The **`HTMLMenuElement`** interface provides special properties (beyond those defined on the regular {{DOMxRef("HTMLElement")}} interface it also has available to it by inheritance) for manipulating {{HTMLElement("menu")}} elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Constructor

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlmenuitemelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ browser-compat: api.HTMLMenuItemElement

The **`HTMLMenuItemElement`** interface provides special properties (beyond those defined on the regular {{DOMxRef("HTMLElement")}} interface it also has available to it by inheritance) for manipulating {{HTMLElement("menuitem")}} elements.

{{InheritanceDiagram(600,120)}}
{{InheritanceDiagram}}

## Specifications

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlmetaelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ browser-compat: api.HTMLMetaElement

The **`HTMLMetaElement`** interface contains descriptive metadata about a document. It inherits all of the properties and methods described in the {{domxref("HTMLElement")}} interface.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlmeterelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser-compat: api.HTMLMeterElement

The HTML {{HTMLElement("meter")}} elements expose the **`HTMLMeterElement`** interface, which provides special properties and methods (beyond the {{domxref("HTMLElement")}} object interface they also have available to them by inheritance) for manipulating the layout and presentation of {{HTMLElement("meter")}} elements.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlmodelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ browser-compat: api.HTMLModElement

The **`HTMLModElement`** interface provides special properties (beyond the regular methods and properties available through the {{domxref("HTMLElement")}} interface they also have available to them by inheritance) for manipulating modification elements, that is {{HTMLElement("del")}} and {{HTMLElement("ins")}}.

{{InheritanceDiagram(600, 120)}}
{{InheritanceDiagram}}

## Properties

Expand Down
Loading