- From: Mercurial notifier <cvsmail@w3.org>
- Date: Fri, 13 Jul 2012 19:47:06 +0000
- To: public-dap-commits@w3.org
changeset: 156:1e5571daf449
tag: tip
user: Marcos Caceres <w3c@marcosc.com>
date: Fri Jul 13 20:47:01 2012 +0100
files: temperature/Overview.html
description:
I removed .value and added .f, .c, .k (Fahrenheit, Celsius, Kelvin)
diff -r 9a98820c77fd -r 1e5571daf449 temperature/Overview.html
--- a/temperature/Overview.html Fri Jul 13 09:04:47 2012 +0100
+++ b/temperature/Overview.html Fri Jul 13 20:47:01 2012 +0100
@@ -120,10 +120,19 @@
<dl title="[Constructor (DOMString type, optional AmbientTemperatureEventInit eventInitDict)]
interface AmbientTemperatureEvent : Event"
class="idl" data-merge='AmbientTemperatureEventInit'>
- <dt>readonly attribute double value</dt>
+ <dt>readonly attribute double f</dt>
<dd>
- The <a>current ambient temperature</a>.
+ The <a>current temperature</a> expressed as fahrenheit.
</dd>
+ <dt>readonly attribute double c</dt>
+ <dd>
+ The <a>current temperature</a> as celsius.
+ </dd>
+ <dt>readonly attribute double k</dt>
+ <dd>
+ The <a>current temperature</a> expressed as kelvin.
+ </dd>
+
</dl>
<dl title="dictionary AmbientTempEventInit : EventInit" class='idl'>
<dt>
Received on Friday, 13 July 2012 19:47:07 UTC