mike: prep for update WD publication

mike: prep for update WD publication

http://dev.w3.org/cvsweb/html5/markup/spec.html?r1=1.217&r2=1.218&f=h

===================================================================
RCS file: /sources/public/html5/markup/meter.html,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -d -r1.51 -r1.52
--- meter.html 29 Mar 2010 18:46:41 -0000 1.51
+++ meter.html 24 Jun 2010 23:56:26 -0000 1.52
@@ -212,6 +212,25 @@
   readonly attribute <a href="http://dev.w3.org/html5/spec/#nodelist" title="">NodeList</a> <a href="http://dev.w3.org/html5/spec/#dom-lfe-labels" title="dom-lfe-labels">labels</a>;
 };</pre>
 </div>
+      <div class="no-number no-toc" id="meter-display">
+        <h2 class="element-subhead">Typical default display properties <a class="hash" href="#meter-display">#</a>
+</h2>
+        <div class="css-props" id="meter-css">
+<div class="selectors">
+<span class="selector">meter</span> {
+</div>
+<div class="properties">
+<div class="css-property">
+<span class="prop-name">display</span>: <span class="prop-value">inline-block</span>;</div>
+<div class="css-property">
+<span class="prop-name">height</span>: <span class="prop-value">1em</span>;</div>
+<div class="css-property">
+<span class="prop-name">width</span>: <span class="prop-value">5em</span>;</div>
+<div class="css-property">
+<span class="prop-name">vertical-align</span>: <span class="prop-value">-0.2em</span>; }</div>
+</div>
+</div>
+</div>
 </div>
 <hr class="footerbreak">
 <div class="nav">

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/markup/Overview.html,v
retrieving revision 1.418
retrieving revision 1.419
diff -u -d -r1.418 -r1.419
--- Overview.html 3 Jun 2010 04:52:01 -0000 1.418
+++ Overview.html 24 Jun 2010 23:56:26 -0000 1.419
@@ -10,7 +10,7 @@
 <div class="head">
 <div><a href="http://www.w3.org/"><img height="48" width="72" alt="W3C" src="http://www.w3.org/Icons/w3c_home"></a></div>
 <h1>HTML: The Markup Language</h1>
-<h2>W3C Editor&#8217;s Draft <em>3 June 2010</em>
+<h2>W3C Editor&#8217;s Draft <em>25 June 2010</em>
 </h2>
 <dl>
 <dt>Latest Editor&#8217;s Draft:</dt>
@@ -26,7 +26,8 @@
         <a href="spec.html">a single HTML file</a> with some
             additional cross-reference features.
           </p>
-<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> &#169; 2010 <a href="http://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a><sup>&#174;</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts Institute of Technology">MIT</abbr></a>, <a href="http://www.ercim.org/"><abbr title="European Research Consortium for Informatics and Mathematics">ERCIM</abbr></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p>
+<div class="main-license"><p class="copyright">
+              Copyright &#169; 2010 <span>Michael(tm) Smith</span></p></div>
 </div>
 <hr>
 <div id="tocjump" class="skip-link" style="text-align: center"><a href="Overview.html#unexpanded-toc">Skip to Table of Contents</a></div>
@@ -53,7 +54,7 @@
           reports index</a> at http://www.w3.org/TR/.
       </em></p>
     <p>
-        This document is the 3 June 2010 Editor&#8217;s Draft of 
+        This document is the 25 June 2010 Editor&#8217;s Draft of 
         <cite>HTML: The Markup Language</cite>.
       
       If you&#8217;d like to comment on this document, the preferred

Index: html.css
===================================================================
RCS file: /sources/public/html5/markup/html.css,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- html.css 29 Mar 2010 18:46:40 -0000 1.6
+++ html.css 24 Jun 2010 23:56:26 -0000 1.7
@@ -363,12 +363,19 @@
 input::-webkit-inner-spin-button {
     -webkit-appearance: inner-spin-button;
     display: inline-block;
+    -webkit-user-select: none;
 }
 
 input::-webkit-outer-spin-button {
     -webkit-appearance: outer-spin-button;
     display: inline-block;
     margin-left: 2px;
+    -webkit-user-select: none;
+}
+
+input::-webkit-input-speech-button {
+    -webkit-appearance: input-speech-button;
+    display: inline-block;
 }
 
 textarea {
@@ -516,6 +523,60 @@
     font-weight: normal;
 }
 
+/* meter */
+
+meter {
+    -webkit-appearance: meter;
+    display: inline-block;
+    height: 1em;
+    width: 5em;
+    vertical-align: -0.2em;
+}
+
+meter::-webkit-meter {
+    -webkit-appearance: meter;
+}
+
+meter::-webkit-meter-horizontal-bar {
+    -webkit-appearance: meter;
+    background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#ddd), color-stop(0.20, #eee), color-stop(0.45, #ccc), color-stop(0.55, #ccc));
+}
+
+meter::-webkit-meter-vertical-bar {
+    -webkit-appearance: meter;
+    background: -webkit-gradient(linear, left top, right top, from(#ddd), to(#ddd), color-stop(0.20, #eee), color-stop(0.45, #ccc), color-stop(0.55, #ccc));
+}
+
+meter::-webkit-meter-horizontal-optimum-value {
+    -webkit-appearance: meter;
+    background: -webkit-gradient(linear, left top, left bottom, from(#ad7), to(#ad7), color-stop(0.20, #cea), color-stop(0.45, #7a3), color-stop(0.55, #7a3));
+}
+
+meter::-webkit-meter-horizontal-suboptimal-value {
+    -webkit-appearance: meter;
+    background: -webkit-gradient(linear, left top, left bottom, from(#fe7), to(#fe7), color-stop(0.20, #ffc), color-stop(0.45, #db3), color-stop(0.55, #db3));
+}
+
+meter::-webkit-meter-horizontal-even-less-good-value {
+    -webkit-appearance: meter;
+    background: -webkit-gradient(linear, left top, left bottom, from(#f77), to(#f77), color-stop(0.20, #fcc), color-stop(0.45, #d44), color-stop(0.55, #d44));
+}
+
+meter::-webkit-meter-vertical-optimum-value {
+    -webkit-appearance: meter;
+    background: -webkit-gradient(linear, left top, right top, from(#ad7), to(#ad7), color-stop(0.20, #cea), color-stop(0.45, #7a3), color-stop(0.55, #7a3));
+}
+
+meter::-webkit-meter-vertical-suboptimal-value {
+    -webkit-appearance: meter;
+    background: -webkit-gradient(linear, left top, right top, from(#fe7), to(#fe7), color-stop(0.20, #ffc), color-stop(0.45, #db3), color-stop(0.55, #db3));
+}
+ 
+meter::-webkit-meter-vertical-even-less-good-value {
+    -webkit-appearance: meter;
+    background: -webkit-gradient(linear, left top, right top, from(#f77), to(#f77), color-stop(0.20, #fcc), color-stop(0.45, #d44), color-stop(0.55, #d44));
+}
+
 /* progress */
 
 progress {
@@ -668,4 +729,12 @@
     border: 2px inset
 }
 
+/* page */
+
+@page {
+    /* FIXME: Define the right default values for page properties. */
+    size: auto;
+    margin: 1in;
+}
+
 /* noscript is handled internally, as it depends on settings */

Index: spec.html
===================================================================
RCS file: /sources/public/html5/markup/spec.html,v
retrieving revision 1.217
retrieving revision 1.218
diff -u -d -r1.217 -r1.218
--- spec.html 3 Jun 2010 04:52:02 -0000 1.217
+++ spec.html 24 Jun 2010 23:56:26 -0000 1.218
@@ -10,7 +10,7 @@
 <div class="head">
 <div><a href="http://www.w3.org/"><img height="48" width="72" alt="W3C" src="http://www.w3.org/Icons/w3c_home"></a></div>
 <h1>HTML: The Markup Language</h1>
-<h2>W3C Editor&#8217;s Draft <em>3 June 2010</em>
+<h2>W3C Editor&#8217;s Draft <em>25 June 2010</em>
 </h2>
 <dl>
 <dt>Latest Editor&#8217;s Draft:</dt>
@@ -25,7 +25,8 @@
 <p>The content of this document is also available as
         <a href="Overview.html">multiple HTML files</a>.
           </p>
-<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> &#169; 2010 <a href="http://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a><sup>&#174;</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts Institute of Technology">MIT</abbr></a>, <a href="http://www.ercim.org/"><abbr title="European Research Consortium for Informatics and Mathematics">ERCIM</abbr></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p>
+<div class="main-license"><p class="copyright">
+              Copyright &#169; 2010 <span>Michael(tm) Smith</span></p></div>
 </div>
 <hr>
 <div id="tocjump" class="skip-link" style="text-align: center"><a href="spec.html#unexpanded-toc">Skip to Table of Contents</a></div>
@@ -52,7 +53,7 @@
           reports index</a> at http://www.w3.org/TR/.
       </em></p>
     <p>
-        This document is the 3 June 2010 Editor&#8217;s Draft of 
+        This document is the 25 June 2010 Editor&#8217;s Draft of 
         <cite>HTML: The Markup Language</cite>.
       
       If you&#8217;d like to comment on this document, the preferred
@@ -13727,6 +13728,25 @@
   readonly attribute <a href="http://dev.w3.org/html5/spec/#nodelist" title="">NodeList</a> <a href="http://dev.w3.org/html5/spec/#dom-lfe-labels" title="dom-lfe-labels">labels</a>;
 };</pre>
 </div>
+      <div class="no-number no-toc" id="meter-display">
+        <h2 class="element-subhead">Typical default display properties <a class="hash" href="#meter-display">#</a>
+</h2>
+        <div class="css-props" id="meter-css">
+<div class="selectors">
+<span class="selector">meter</span> {
+</div>
+<div class="properties">
+<div class="css-property">
+<span class="prop-name">display</span>: <span class="prop-value">inline-block</span>;</div>
+<div class="css-property">
+<span class="prop-name">height</span>: <span class="prop-value">1em</span>;</div>
+<div class="css-property">
+<span class="prop-name">width</span>: <span class="prop-value">5em</span>;</div>
+<div class="css-property">
+<span class="prop-name">vertical-align</span>: <span class="prop-value">-0.2em</span>; }</div>
+</div>
+</div>
+</div>
 </div>
 <div id="nav" class="section">
       <h2 class="element-head">

Received on Thursday, 24 June 2010 23:57:21 UTC