Skip to content

Commit

Permalink
[e] (0) rename TextTrackCue.linePosition and .textPosition to .line a…
Browse files Browse the repository at this point in the history
…nd .position respectively to match the setting names in VTT.

Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=14929
Affected topics: Video Text Tracks

git-svn-id: http://svn.whatwg.org/webapps@7007 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Feb 22, 2012
1 parent 7a73525 commit bd58808
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions complete.html
Expand Up @@ -33305,8 +33305,8 @@ <h6 id=text-track-api><span class=secno>4.8.10.12.5 </span>Text track API</h6>
attribute boolean <a href=#dom-texttrackcue-pauseonexit title=dom-TextTrackCue-pauseOnExit>pauseOnExit</a>;
attribute DOMString <a href=#dom-texttrackcue-direction title=dom-TextTrackCue-direction>direction</a>;
attribute boolean <a href=#dom-texttrackcue-snaptolines title=dom-TextTrackCue-snapToLines>snapToLines</a>;
attribute long <a href=#dom-texttrackcue-lineposition title=dom-TextTrackCue-linePosition>linePosition</a>;
attribute long <a href=#dom-texttrackcue-textposition title=dom-TextTrackCue-textPosition>textPosition</a>;
attribute long <a href=#dom-texttrackcue-line title=dom-TextTrackCue-line>line</a>;
attribute long <a href=#dom-texttrackcue-position title=dom-TextTrackCue-position>position</a>;
attribute long <a href=#dom-texttrackcue-size title=dom-TextTrackCue-size>size</a>;
attribute DOMString <a href=#dom-texttrackcue-align title=dom-TextTrackCue-align>align</a>;
attribute DOMString <a href=#dom-texttrackcue-text title=dom-TextTrackCue-text>text</a>;
Expand Down Expand Up @@ -33376,15 +33376,15 @@ <h6 id=text-track-api><span class=secno>4.8.10.12.5 </span>Text track API</h6>
<p>Can be set.</p>
</dd>

<dt><var title="">cue</var> . <a href=#dom-texttrackcue-lineposition title=dom-TextTrackCue-linePosition>linePosition</a> [ = <var title="">value</var> ]</dt>
<dt><var title="">cue</var> . <a href=#dom-texttrackcue-line title=dom-TextTrackCue-line>line</a> [ = <var title="">value</var> ]</dt>
<dd>
<p>Returns the <a href=#text-track-cue-line-position>text track cue line position</a>. In the
case of the value being <a href=#text-track-cue-automatic-line-position title="text track cue automatic
line position">auto</a>, the appropriate default is returned.</p>
<p>Can be set.</p>
</dd>

<dt><var title="">cue</var> . <a href=#dom-texttrackcue-textposition title=dom-TextTrackCue-textPosition>textPosition</a> [ = <var title="">value</var> ]</dt>
<dt><var title="">cue</var> . <a href=#dom-texttrackcue-position title=dom-TextTrackCue-position>position</a> [ = <var title="">value</var> ]</dt>
<dd>
<p>Returns the <a href=#text-track-cue-text-position>text track cue text position</a>.</p>
<p>Can be set.</p>
Expand Down Expand Up @@ -33539,7 +33539,7 @@ <h6 id=text-track-api><span class=secno>4.8.10.12.5 </span>Text track API</h6>
flag</a> must be set if the new value is true, and must be unset
otherwise.</p>

<p>The <dfn id=dom-texttrackcue-lineposition title=dom-TextTrackCue-linePosition><code>linePosition</code></dfn>
<p>The <dfn id=dom-texttrackcue-line title=dom-TextTrackCue-line><code>line</code></dfn>
attribute, on getting, must return the <a href=#text-track-cue-computed-line-position>text track cue computed
line position</a> of the <a href=#text-track-cue>text track cue</a> that the
<code><a href=#texttrackcue>TextTrackCue</a></code> object represents. On setting, if the
Expand All @@ -33552,7 +33552,7 @@ <h6 id=text-track-api><span class=secno>4.8.10.12.5 </span>Text track API</h6>
track cue line position</a> to the special default <a href=#text-track-cue-automatic-line-position title="text track cue automatic line position">auto</a>
value.</p>

<p>The <dfn id=dom-texttrackcue-textposition title=dom-TextTrackCue-textPosition><code>textPosition</code></dfn>
<p>The <dfn id=dom-texttrackcue-position title=dom-TextTrackCue-position><code>position</code></dfn>
attribute, on getting, must return the <a href=#text-track-cue-text-position>text track cue text
position</a> of the <a href=#text-track-cue>text track cue</a> that the
<code><a href=#texttrackcue>TextTrackCue</a></code> object represents. On setting, if the new
Expand Down
12 changes: 6 additions & 6 deletions index
Expand Up @@ -33305,8 +33305,8 @@ interface <dfn id=texttrackcue>TextTrackCue</dfn> : <a href=#eventtarget>EventTa
attribute boolean <a href=#dom-texttrackcue-pauseonexit title=dom-TextTrackCue-pauseOnExit>pauseOnExit</a>;
attribute DOMString <a href=#dom-texttrackcue-direction title=dom-TextTrackCue-direction>direction</a>;
attribute boolean <a href=#dom-texttrackcue-snaptolines title=dom-TextTrackCue-snapToLines>snapToLines</a>;
attribute long <a href=#dom-texttrackcue-lineposition title=dom-TextTrackCue-linePosition>linePosition</a>;
attribute long <a href=#dom-texttrackcue-textposition title=dom-TextTrackCue-textPosition>textPosition</a>;
attribute long <a href=#dom-texttrackcue-line title=dom-TextTrackCue-line>line</a>;
attribute long <a href=#dom-texttrackcue-position title=dom-TextTrackCue-position>position</a>;
attribute long <a href=#dom-texttrackcue-size title=dom-TextTrackCue-size>size</a>;
attribute DOMString <a href=#dom-texttrackcue-align title=dom-TextTrackCue-align>align</a>;
attribute DOMString <a href=#dom-texttrackcue-text title=dom-TextTrackCue-text>text</a>;
Expand Down Expand Up @@ -33376,15 +33376,15 @@ interface <dfn id=texttrackcue>TextTrackCue</dfn> : <a href=#eventtarget>EventTa
<p>Can be set.</p>
</dd>

<dt><var title="">cue</var> . <a href=#dom-texttrackcue-lineposition title=dom-TextTrackCue-linePosition>linePosition</a> [ = <var title="">value</var> ]</dt>
<dt><var title="">cue</var> . <a href=#dom-texttrackcue-line title=dom-TextTrackCue-line>line</a> [ = <var title="">value</var> ]</dt>
<dd>
<p>Returns the <a href=#text-track-cue-line-position>text track cue line position</a>. In the
case of the value being <a href=#text-track-cue-automatic-line-position title="text track cue automatic
line position">auto</a>, the appropriate default is returned.</p>
<p>Can be set.</p>
</dd>

<dt><var title="">cue</var> . <a href=#dom-texttrackcue-textposition title=dom-TextTrackCue-textPosition>textPosition</a> [ = <var title="">value</var> ]</dt>
<dt><var title="">cue</var> . <a href=#dom-texttrackcue-position title=dom-TextTrackCue-position>position</a> [ = <var title="">value</var> ]</dt>
<dd>
<p>Returns the <a href=#text-track-cue-text-position>text track cue text position</a>.</p>
<p>Can be set.</p>
Expand Down Expand Up @@ -33539,7 +33539,7 @@ interface <dfn id=texttrackcue>TextTrackCue</dfn> : <a href=#eventtarget>EventTa
flag</a> must be set if the new value is true, and must be unset
otherwise.</p>

<p>The <dfn id=dom-texttrackcue-lineposition title=dom-TextTrackCue-linePosition><code>linePosition</code></dfn>
<p>The <dfn id=dom-texttrackcue-line title=dom-TextTrackCue-line><code>line</code></dfn>
attribute, on getting, must return the <a href=#text-track-cue-computed-line-position>text track cue computed
line position</a> of the <a href=#text-track-cue>text track cue</a> that the
<code><a href=#texttrackcue>TextTrackCue</a></code> object represents. On setting, if the
Expand All @@ -33552,7 +33552,7 @@ interface <dfn id=texttrackcue>TextTrackCue</dfn> : <a href=#eventtarget>EventTa
track cue line position</a> to the special default <a href=#text-track-cue-automatic-line-position title="text track cue automatic line position">auto</a>
value.</p>

<p>The <dfn id=dom-texttrackcue-textposition title=dom-TextTrackCue-textPosition><code>textPosition</code></dfn>
<p>The <dfn id=dom-texttrackcue-position title=dom-TextTrackCue-position><code>position</code></dfn>
attribute, on getting, must return the <a href=#text-track-cue-text-position>text track cue text
position</a> of the <a href=#text-track-cue>text track cue</a> that the
<code><a href=#texttrackcue>TextTrackCue</a></code> object represents. On setting, if the new
Expand Down
12 changes: 6 additions & 6 deletions source
Expand Up @@ -36445,8 +36445,8 @@ interface <dfn>TextTrackCue</dfn> : <span>EventTarget</span> {
attribute boolean <span title="dom-TextTrackCue-pauseOnExit">pauseOnExit</span>;
attribute DOMString <span title="dom-TextTrackCue-direction">direction</span>;
attribute boolean <span title="dom-TextTrackCue-snapToLines">snapToLines</span>;
attribute long <span title="dom-TextTrackCue-linePosition">linePosition</span>;
attribute long <span title="dom-TextTrackCue-textPosition">textPosition</span>;
attribute long <span title="dom-TextTrackCue-line">line</span>;
attribute long <span title="dom-TextTrackCue-position">position</span>;
attribute long <span title="dom-TextTrackCue-size">size</span>;
attribute DOMString <span title="dom-TextTrackCue-align">align</span>;
attribute DOMString <span title="dom-TextTrackCue-text">text</span>;
Expand Down Expand Up @@ -36520,15 +36520,15 @@ interface <dfn>TextTrackCue</dfn> : <span>EventTarget</span> {
<p>Can be set.</p>
</dd>

<dt><var title="">cue</var> . <span title="dom-TextTrackCue-linePosition">linePosition</span> [ = <var title="">value</var> ]</dt>
<dt><var title="">cue</var> . <span title="dom-TextTrackCue-line">line</span> [ = <var title="">value</var> ]</dt>
<dd>
<p>Returns the <span>text track cue line position</span>. In the
case of the value being <span title="text track cue automatic
line position">auto</span>, the appropriate default is returned.</p>
<p>Can be set.</p>
</dd>

<dt><var title="">cue</var> . <span title="dom-TextTrackCue-textPosition">textPosition</span> [ = <var title="">value</var> ]</dt>
<dt><var title="">cue</var> . <span title="dom-TextTrackCue-position">position</span> [ = <var title="">value</var> ]</dt>
<dd>
<p>Returns the <span>text track cue text position</span>.</p>
<p>Can be set.</p>
Expand Down Expand Up @@ -36710,7 +36710,7 @@ interface <dfn>TextTrackCue</dfn> : <span>EventTarget</span> {
otherwise.</p>

<p>The <dfn
title="dom-TextTrackCue-linePosition"><code>linePosition</code></dfn>
title="dom-TextTrackCue-line"><code>line</code></dfn>
attribute, on getting, must return the <span>text track cue computed
line position</span> of the <span>text track cue</span> that the
<code>TextTrackCue</code> object represents. On setting, if the
Expand All @@ -36725,7 +36725,7 @@ interface <dfn>TextTrackCue</dfn> : <span>EventTarget</span> {
value.</p>

<p>The <dfn
title="dom-TextTrackCue-textPosition"><code>textPosition</code></dfn>
title="dom-TextTrackCue-position"><code>position</code></dfn>
attribute, on getting, must return the <span>text track cue text
position</span> of the <span>text track cue</span> that the
<code>TextTrackCue</code> object represents. On setting, if the new
Expand Down

0 comments on commit bd58808

Please sign in to comment.