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 summary class from paragraphs, part 2 #8173

Merged
merged 1 commit into from
Aug 21, 2021
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion files/en-us/web/api/fontface/stretch/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
---
<div>{{APIRef("CSS Font Loading API")}}</div>

<p class="summary">The <strong><code>stretch</code></strong> property of the
<p>The <strong><code>stretch</code></strong> property of the
{{domxref("FontFace")}} interface retrieves or sets how the font stretches. It is
equivalent to the {{cssxref("@font-face/font-stretch", "font-stretch")}} descriptor.</p>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/fontface/style/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
---
<div>{{APIRef("CSS Font Loading API")}}</div>

<p class="summary">The <strong><code>style</code></strong> property of the
<p>The <strong><code>style</code></strong> property of the
{{domxref("FontFace")}} interface retrieves or sets the font's style. It is equivalent
to the {{cssxref("@font-face/font-style", "font-style")}} descriptor.</p>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/fontface/unicoderange/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
---
<div>{{APIRef("CSS Font Loading API")}}</div>

<p class="summary">The <strong><code>unicodeRange</code></strong> property of the
<p>The <strong><code>unicodeRange</code></strong> property of the
{{domxref("FontFace")}} interface retrieves or sets the range of unicode codepoints
encompassing the font. It is equivalent to the {{cssxref("@font-face/unicode-range",
"unicode-range")}} descriptor.</p>
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/fontface/variant/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
---
<div>{{APIRef("CSS Font Loading API")}}</div>

<p class="summary">The <strong><code>variant</code></strong> property of the
<p>The <strong><code>variant</code></strong> property of the
{{domxref("FontFace")}} interface programmatically retrieves or sets font variant
values. It is equivalent to the {{cssxref("@font-face/font-variant", "font-variant")}}
descriptor.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
---
<div>{{APIRef("CSS Font Loading API")}}</div>

<p class="summary">The <strong><code>variationSettings</code></strong> property of the
<p>The <strong><code>variationSettings</code></strong> property of the
{{domxref("FontFace")}} interface retrieves or sets low-level OpenType or TrueType font variations.
It is equivalent to the
{{cssxref("@font-face/font-variation-settings", "font-variation-settings")}} descriptor.</p>
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/fontface/weight/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
---
<div>{{APIRef("CSS Font Loading API")}}</div>

<p class="summary">The <strong><code>weight</code></strong> property of the
<p>The <strong><code>weight</code></strong> property of the
{{domxref("FontFace")}} interface retrieves or sets the weight of the font. It is
equivalent to the {{cssxref("@font-face/font-weight", "font-weight")}} descriptor.</p>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
---
<div>{{APIRef("XMLHttpRequest")}}</div>

<p class="summary">The <code><a href="/en-US/docs/Web/API/FormData">FormData</a></code> object lets you compile a set of key/value pairs to send using <code><a href="/en-US/docs/Web/API/XMLHttpRequest">XMLHttpRequest</a></code>. It is primarily intended for use in sending form data, but can be used independently from forms in order to transmit keyed data. The transmitted data is in the same format that the form's {{domxref("HTMLFormElement.submit","submit()")}} method would use to send the data if the form's encoding type were set to <code>multipart/form-data</code>.</p>
<p>The <code><a href="/en-US/docs/Web/API/FormData">FormData</a></code> object lets you compile a set of key/value pairs to send using <code><a href="/en-US/docs/Web/API/XMLHttpRequest">XMLHttpRequest</a></code>. It is primarily intended for use in sending form data, but can be used independently from forms in order to transmit keyed data. The transmitted data is in the same format that the form's {{domxref("HTMLFormElement.submit","submit()")}} method would use to send the data if the form's encoding type were set to <code>multipart/form-data</code>.</p>

<h2 id="Creating_a_FormData_object_from_scratch">Creating a FormData object from scratch</h2>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/gainnode/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<p>{{ APIRef("Web Audio API") }}</p>

<p class="summary">The <code>GainNode</code> interface represents a change in volume. It is an {{domxref("AudioNode")}} audio-processing module that causes a given gain to be applied to the input data before its propagation to the output. A <code>GainNode</code> always has exactly one input and one output, both with the same number of channels.</p>
<p>The <code>GainNode</code> interface represents a change in volume. It is an {{domxref("AudioNode")}} audio-processing module that causes a given gain to be applied to the input data before its propagation to the output. A <code>GainNode</code> always has exactly one input and one output, both with the same number of channels.</p>

<p>The gain is a unitless value, changing with time, that is multiplied to each corresponding sample of all input channels. If modified, the new gain is instantly applied, causing unaesthetic 'clicks' in the resulting audio. To prevent this from happening, never change the value directly but use the exponential interpolation methods on the {{domxref("AudioParam")}} interface.</p>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hid/getdevices/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>getDevices()</code></strong> method of the {{domxref("HID")}} interface gets a list of the connected HID devices.</p>
<p>The <strong><code>getDevices()</code></strong> method of the {{domxref("HID")}} interface gets a list of the connected HID devices.</p>

<h2 id="Syntax">Syntax</h2>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hid/onconnect/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>onconnect</code></strong> <a href="/en-US/docs/Web/Events/Event_handlers">event handler</a> of the {{domxref("HID")}} interface processes the events fired when the user agent connects to the HID device.</p>
<p>The <strong><code>onconnect</code></strong> <a href="/en-US/docs/Web/Events/Event_handlers">event handler</a> of the {{domxref("HID")}} interface processes the events fired when the user agent connects to the HID device.</p>

<h2 id="Syntax">Syntax</h2>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hid/ondisconnect/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>ondisconnect</code></strong> <a href="/en-US/docs/Web/Events/Event_handlers">event handler</a> of the {{domxref("HID")}} interface processes the events when the user agent disconnects from the HID device.</p>
<p>The <strong><code>ondisconnect</code></strong> <a href="/en-US/docs/Web/Events/Event_handlers">event handler</a> of the {{domxref("HID")}} interface processes the events when the user agent disconnects from the HID device.</p>

<h2 id="Syntax">Syntax</h2>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hid/requestdevice/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>requestDevice()</code></strong> method of the {{domxref("HID")}} interface requests access to a HID device.</p>
<p>The <strong><code>requestDevice()</code></strong> method of the {{domxref("HID")}} interface requests access to a HID device.</p>

<p>The user agent will present a permission dialog including a list of connected devices, and ask the user to select and grant permission to one of these devices.</p>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hidconnectionevent/device/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>device</code></strong> read-only property of the {{domxref("HIDConnectionEvent")}} interface returns the {{domxref("HIDDevice")}} associated with this connection event.</p>
<p>The <strong><code>device</code></strong> read-only property of the {{domxref("HIDConnectionEvent")}} interface returns the {{domxref("HIDDevice")}} associated with this connection event.</p>

<h2 id="Syntax">Syntax</h2>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>HIDConnectionEvent()</code></strong> constructor creates a new {{domxref("HIDConnectionEvent")}} object. Typically this constructor is not used as events are created when an input report is received.</p>
<p>The <strong><code>HIDConnectionEvent()</code></strong> constructor creates a new {{domxref("HIDConnectionEvent")}} object. Typically this constructor is not used as events are created when an input report is received.</p>

<h2 id="Syntax">Syntax</h2>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hidconnectionevent/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>HIDConnectionEvent</code></strong> interface of the {{domxref('WebHID API')}} represents HID connection events, and is the event type passed to {{domxref("HID.onconnect")}} and {{domxref("HID.ondisconnect")}} when an input report is received.</p>
<p>The <strong><code>HIDConnectionEvent</code></strong> interface of the {{domxref('WebHID API')}} represents HID connection events, and is the event type passed to {{domxref("HID.onconnect")}} and {{domxref("HID.ondisconnect")}} when an input report is received.</p>

<h2 id="Constructor">Constructor</h2>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hiddevice/close/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>close()</code></strong> method of the {{domxref("HIDDevice")}} interface closes the connection to the HID device.</p>
<p>The <strong><code>close()</code></strong> method of the {{domxref("HIDDevice")}} interface closes the connection to the HID device.</p>

<h2 id="Syntax">Syntax</h2>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hiddevice/collections/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>collections</code></strong> read-only property of the {{domxref("HIDDevice")}} interface returns an array of report formats </p>
<p>The <strong><code>collections</code></strong> read-only property of the {{domxref("HIDDevice")}} interface returns an array of report formats </p>

<h2 id="Syntax">Syntax</h2>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hiddevice/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>HIDDevice</code></strong> interface of the {{domxref('WebHID API')}} represents a HID Device. It provides properties for accessing information about the device, methods for opening and closing the connection, and the sending and receiving of reports.</p>
<p>The <strong><code>HIDDevice</code></strong> interface of the {{domxref('WebHID API')}} represents a HID Device. It provides properties for accessing information about the device, methods for opening and closing the connection, and the sending and receiving of reports.</p>

{{InheritanceDiagram}}

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hiddevice/oninputreport/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>oninputreport</code></strong> event handler of the {{domxref("HIDDevice")}} interface processes inputreport events.</p>
<p>The <strong><code>oninputreport</code></strong> event handler of the {{domxref("HIDDevice")}} interface processes inputreport events.</p>

<p> The event fires when a new report is received from the HID device.</p>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hiddevice/open/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>open()</code></strong> method of the {{domxref("HIDDevice")}} interface requests that the operating sytem opens the HID device.</p>
<p>The <strong><code>open()</code></strong> method of the {{domxref("HIDDevice")}} interface requests that the operating sytem opens the HID device.</p>

<div class="notecard note">
<h4>Note:</h4>
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hiddevice/opened/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>opened</code></strong> read-only property of the {{domxref("HIDDevice")}} interface returns true if the connection to the {{domxref("HIDDevice")}} is open and ready to transfer data.</p>
<p>The <strong><code>opened</code></strong> read-only property of the {{domxref("HIDDevice")}} interface returns true if the connection to the {{domxref("HIDDevice")}} is open and ready to transfer data.</p>

<h2 id="Syntax">Syntax</h2>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hiddevice/productid/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>productId</code></strong> read-only property of the {{domxref("HIDDevice")}} interface returns the product ID of the connected HID device.</p>
<p>The <strong><code>productId</code></strong> read-only property of the {{domxref("HIDDevice")}} interface returns the product ID of the connected HID device.</p>

<h2 id="Syntax">Syntax</h2>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hiddevice/productname/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>productName</code></strong> read-only property of the {{domxref("HIDDevice")}} interface returns the product name of the connected HID device.</p>
<p>The <strong><code>productName</code></strong> read-only property of the {{domxref("HIDDevice")}} interface returns the product name of the connected HID device.</p>

<h2 id="Syntax">Syntax</h2>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>receiveFeatureReport()</code></strong> method of the {{domxref("HIDDevice")}} interface receives a feature report from the HID device. Feature reports are a way for HID devices and applications to exchange non-standardized HID data.</p>
<p>The <strong><code>receiveFeatureReport()</code></strong> method of the {{domxref("HIDDevice")}} interface receives a feature report from the HID device. Feature reports are a way for HID devices and applications to exchange non-standardized HID data.</p>

<p>The <code>reportId</code> for each of the report formats that this device supports can be retrieved from {{domxref("HIDDevice.collections")}}.</p>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>sendFeatureReport()</code></strong> method of the {{domxref("HIDDevice")}} interface sends a feature report to the HID device. Feature reports are a way for HID devices and applications to exchange non-standardized HID data.</p>
<p>The <strong><code>sendFeatureReport()</code></strong> method of the {{domxref("HIDDevice")}} interface sends a feature report to the HID device. Feature reports are a way for HID devices and applications to exchange non-standardized HID data.</p>

<p>The <code>reportId</code> for each of the report formats that this device supports can be retrieved from {{domxref("HIDDevice.collections")}}.</p>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hiddevice/sendreport/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>sendReport()</code></strong> method of the {{domxref("HIDDevice")}} interface sends an output report to the HID device.</p>
<p>The <strong><code>sendReport()</code></strong> method of the {{domxref("HIDDevice")}} interface sends an output report to the HID device.</p>

<p>The <code>reportId</code> for each of the report formats that this device supports can be retrieved from {{domxref("HIDDevice.collections")}}.</p>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hiddevice/vendorid/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
---
<div>{{securecontext_header}}{{DefaultAPISidebar("WebHID API")}}</div>

<p class="summary">The <strong><code>vendorId</code></strong> read-only property of the {{domxref("HIDDevice")}} interface returns the vendor ID of the connected HID device. This identifies the vendor of the device.</p>
<p>The <strong><code>vendorId</code></strong> read-only property of the {{domxref("HIDDevice")}} interface returns the vendor ID of the connected HID device. This identifies the vendor of the device.</p>

<h2 id="Syntax">Syntax</h2>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/html_sanitizer_api/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
---
<div>{{draft}}{{securecontext_header}}{{DefaultAPISidebar("HTML Sanitizer API")}}</div>

<p class="summary">The HTML Sanitizer API allow developers to take untrusted strings of HTML, and sanitize them for safe insertion into a document’s DOM.</p>
<p>The HTML Sanitizer API allow developers to take untrusted strings of HTML, and sanitize them for safe insertion into a document’s DOM.</p>

<h2 id="Sanitizer_API_Concepts_and_Usage">Sanitizer API Concepts and Usage</h2>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlimageelement/image/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
---
<div>{{APIRef("HTML DOM")}}</div>

<p class="summary">The <strong><code>Image()</code></strong>
<p>The <strong><code>Image()</code></strong>
constructor creates a new {{DOMxRef("HTMLImageElement")}} instance. It is functionally
equivalent to {{DOMxRef("Document.createElement()",
"document.createElement('img')")}}.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
---
<p>{{APIRef("HTMLMediaElement")}}</p>

<p class="summary">The <code>ratechange</code> event is fired when the playback rate has changed.</p>
<p>The <code>ratechange</code> event is fired when the playback rate has changed.</p>

<table class="properties">
<tbody>
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlmenuitemelement/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
---
<p>{{APIRef("HTML DOM")}}{{Deprecated_Header}}</p>

<p class="summary">The <strong><code>HTMLMenuItemElement</code></strong> 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.</p>
<p>The <strong><code>HTMLMenuItemElement</code></strong> 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.</p>

<p>{{InheritanceDiagram(600,120)}}</p>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
---
<p>{{APIRef("HTML DOM")}}</p>

<p class="summary">The <strong><code>checkValidity()</code></strong> method of the
<p>The <strong><code>checkValidity()</code></strong> method of the
{{domxref("HTMLObjectElement")}} interface returns a boolean value that always
is true, because object objects are never candidates for constraint validation.</p>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
---
<div>{{APIRef("HTML DOM")}}</div>

<p class="summary">The <strong><code>contentDocument</code></strong> read-only property of
<p>The <strong><code>contentDocument</code></strong> read-only property of
the {{domxref("HTMLObjectElement")}} interface Returns a {{domxref("Document")}}
representing the active document of the object element's nested browsing context, if
any; otherwise null.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
---
<div>{{APIRef("HTML DOM")}}</div>

<p class="summary">The <strong><code>contentWindow</code></strong> read-only property of
<p>The <strong><code>contentWindow</code></strong> read-only property of
the {{domxref("HTMLObjectElement")}} interface returns a {{domxref("WindowProxy")}}
representing the window proxy of the object element's nested browsing context, if any;
otherwise null.</p>
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlobjectelement/data/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
---
<div>{{APIRef("HTML DOM")}}</div>

<p class="summary">The <strong><code>data</code></strong> property of the
<p>The <strong><code>data</code></strong> property of the
{{domxref("HTMLObjectElement")}} interface returns a {{domxref("DOMString")}} that
reflects the {{htmlattrxref("data", "object")}} HTML attribute, specifying the address
of a resource's data.</p>
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlobjectelement/form/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
---
<div>{{APIRef("HTML DOM")}}</div>

<p class="summary">The <strong><code>form</code></strong> read-only property of the
<p>The <strong><code>form</code></strong> read-only property of the
{{domxref("HTMLObjectElement")}} interface returns a {{domxref("HTMLFormElement")}}
representing the object element's form owner, or null if there isn't one.</p>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlobjectelement/height/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
---
<div>{{APIRef("HTML DOM")}}</div>

<p class="summary">The <strong><code>height</code></strong> property of the
<p>The <strong><code>height</code></strong> property of the
{{domxref("HTMLObjectElement")}} interface Returns a {{domxref("DOMString")}} that
reflects the {{htmlattrxref("height", "object")}} HTML attribute, specifying the
displayed height of the resource in CSS pixels.</p>
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlobjectelement/name/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
---
<div>{{APIRef("HTML DOM")}}</div>

<p class="summary">The <strong><code>name</code></strong> property of the
<p>The <strong><code>name</code></strong> property of the
{{domxref("HTMLObjectElement")}} interface returns a {{domxref("DOMString")}} that
reflects the {{htmlattrxref("name", "object")}} HTML attribute, specifying the name of
the browsing context.</p>
Expand Down
Loading