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

Fix content attribute links for the meter element #3481

Merged
merged 1 commit into from
Feb 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 10 additions & 7 deletions source
Expand Up @@ -51985,35 +51985,38 @@ and a height of &lt;meter value=2>2cm&lt;/meter>.&lt;/p> &lt;!-- <strong>BAD!</s
<p>The <dfn><code data-x="dom-meter-value">value</code></dfn> IDL attribute, on getting, must
return the <span data-x="concept-meter-actual">actual value</span>. On setting, the given value
must be converted to the <span>best representation of the number as a floating-point number</span>
and then the <code data-x="dom-meter-value">value</code> content attribute must be set to that
and then the <code data-x="attr-meter-value">value</code> content attribute must be set to that
string.</p>

<p>The <dfn><code data-x="dom-meter-min">min</code></dfn> IDL attribute, on getting, must return
the <span data-x="concept-meter-minimum">minimum value</span>. On setting, the given value must be
converted to the <span>best representation of the number as a floating-point number</span> and
then the <code data-x="dom-meter-min">min</code> content attribute must be set to that string.</p>
then the <code data-x="attr-meter-min">min</code> content attribute must be set to that
string.</p>

<p>The <dfn><code data-x="dom-meter-max">max</code></dfn> IDL attribute, on getting, must return
the <span data-x="concept-meter-maximum">maximum value</span>. On setting, the given value must be
converted to the <span>best representation of the number as a floating-point number</span> and
then the <code data-x="dom-meter-max">max</code> content attribute must be set to that string.</p>
then the <code data-x="attr-meter-max">max</code> content attribute must be set to that
string.</p>

<p>The <dfn><code data-x="dom-meter-low">low</code></dfn> IDL attribute, on getting, must return
the <span data-x="concept-meter-low">low boundary</span>. On setting, the given value must be
converted to the <span>best representation of the number as a floating-point number</span> and
then the <code data-x="dom-meter-low">low</code> content attribute must be set to that string.</p>
then the <code data-x="attr-meter-low">low</code> content attribute must be set to that
string.</p>

<p>The <dfn><code data-x="dom-meter-high">high</code></dfn> IDL attribute, on getting, must return
the <span data-x="concept-meter-high">high boundary</span>. On setting, the given value must be
converted to the <span>best representation of the number as a floating-point number</span> and
then the <code data-x="dom-meter-high">high</code> content attribute must be set to that
then the <code data-x="attr-meter-high">high</code> content attribute must be set to that
string.</p>

<p>The <dfn><code data-x="dom-meter-optimum">optimum</code></dfn> IDL attribute, on getting, must
return the <span data-x="concept-meter-optimum">optimum value</span>. On setting, the given value
must be converted to the <span>best representation of the number as a floating-point number</span>
and then the <code data-x="dom-meter-optimum">optimum</code> content attribute must be set to that
string.</p>
and then the <code data-x="attr-meter-optimum">optimum</code> content attribute must be set to
that string.</p>

<p>The <code data-x="dom-lfe-labels">labels</code> IDL attribute provides a list of the element's
<code>label</code>s.</p>
Expand Down