hixie: rename TextTrackCue.linePosition and .textPosition to .line and .position respectively to match the setting names in VTT. (whatwg r7007)

hixie: rename TextTrackCue.linePosition and .textPosition to .line and
.position respectively to match the setting names in VTT. (whatwg r7007)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.5597&r2=1.5598&f=h
http://html5.org/tools/web-apps-tracker?from=7006&to=7007

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.5597
retrieving revision 1.5598
diff -u -d -r1.5597 -r1.5598
--- Overview.html 22 Feb 2012 20:04:50 -0000 1.5597
+++ Overview.html 22 Feb 2012 20:08:14 -0000 1.5598
@@ -28166,8 +28166,8 @@
            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>;
@@ -28235,7 +28235,7 @@
     <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
@@ -28243,7 +28243,7 @@
     <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>
@@ -28398,7 +28398,7 @@
   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
@@ -28411,7 +28411,7 @@
   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

Received on Wednesday, 22 February 2012 20:08:29 UTC