Skip to content

Commit 703445f

Browse files
author
Simon Pieters
committed
[cssom-view] Editorial: Use 0.0 rather than 0 for MouseEventInit dict members. https://www.w3.org/Bugs/Public/show_bug.cgi?id=23079
1 parent a457e58 commit 703445f

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

cssom-view/Overview.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<h1>CSSOM View Module</h1>
1818

19-
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 23 August 2013</h2>
19+
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 27 August 2013</h2>
2020

2121
<dl>
2222

@@ -83,7 +83,7 @@ <h2 class="no-num no-toc" id="sotd">Status of This Document</h2>
8383
can be found in the <a href="http://www.w3.org/TR/">W3C technical reports
8484
index at http://www.w3.org/TR/.</a></em>
8585

86-
<p>This is the 23 August 2013 Editor's Draft of CSSOM View. Please send
86+
<p>This is the 27 August 2013 Editor's Draft of CSSOM View. Please send
8787
comments to
8888
<a href="mailto:www-style@w3.org?subject=%5Bcssom-view%5D%20">www-style@w3.org</a>
8989
(<a href="http://lists.w3.org/Archives/Public/www-style/">archived</a>)
@@ -1368,10 +1368,10 @@ <h2 id="extensions-to-the-mouseevent-interface"><span class="secno">10 </span>Ex
13681368
};
13691369

13701370
partial dictionary <a href="#mouseeventinit">MouseEventInit</a> {
1371-
double screenX = 0;
1372-
double screenY = 0;
1373-
double clientX = 0;
1374-
double clientY = 0;
1371+
double screenX = 0.0;
1372+
double screenY = 0.0;
1373+
double clientX = 0.0;
1374+
double clientY = 0.0;
13751375
};</pre>
13761376

13771377
<p>The <dfn id="dom-mouseevent-screenx" title="dom-MouseEvent-screenX"><code>screenX</code></dfn> attribute must return the x-coordinate of

cssom-view/Overview.src.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1330,10 +1330,10 @@ <h2>Extensions to the <code title>MouseEvent</code> Interface</h2>
13301330
};
13311331

13321332
partial dictionary <span>MouseEventInit</span> {
1333-
double screenX = 0;
1334-
double screenY = 0;
1335-
double clientX = 0;
1336-
double clientY = 0;
1333+
double screenX = 0.0;
1334+
double screenY = 0.0;
1335+
double clientX = 0.0;
1336+
double clientY = 0.0;
13371337
};</pre>
13381338

13391339
<p>The <dfn title=dom-MouseEvent-screenX><code>screenX</code></dfn> attribute must return the x-coordinate of

0 commit comments

Comments
 (0)