- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 20 Mar 2012 15:22:42 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv22704
Modified Files:
alert.css load-timeout.js
Log Message:
add dashed lines and change how Path objects work to instead use external line and font styles and transformation objects (whatwg r7028)
[updated by splitter]
Index: alert.css
===================================================================
RCS file: /sources/public/html5/spec/alert.css,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- alert.css 20 Mar 2012 11:18:03 -0000 1.1
+++ alert.css 20 Mar 2012 15:22:40 -0000 1.2
@@ -1,5 +1,5 @@
#alert { position: fixed; top: 20%; left: 20%; right: 20%; font-size: 2em; padding: 0.5em; z-index: 40; background: gray; background: rgba(32,32,32,0.9); color: white; border-radius: 1em; -moz-border-radius: 1em; -webkit-transition: opacity 1s linear; }
#alert.closed { opacity: 0; }
-#alert button { position: absolute; top: -1em; right: 2em; border-radius: 1em 1em 0 0; border: none; line-height: 0.9; color: white; background: rgb(64,64,64); font-size: 0.6em; font-weight: 900; cursor: pointer; }
+#alert input { position: absolute; top: -1em; right: 2em; border-radius: 1em 1em 0 0; border: none; line-height: 0.9; color: white; background: rgb(64,64,64); font-size: 0.6em; font-weight: 900; cursor: pointer; }
#alert :link, #alert :visited { color: white; }
#alert :link:hover, #alert :visited:hover { background: transparent; }
Index: load-timeout.js
===================================================================
RCS file: /sources/public/html5/spec/load-timeout.js,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- load-timeout.js 20 Mar 2012 15:20:42 -0000 1.17
+++ load-timeout.js 20 Mar 2012 15:22:40 -0000 1.18
@@ -9,7 +9,7 @@
x.value = "Close";
x.onclick = closeAlert2;
currentAlert.appendChild(x);
- currentAlert.appendChild(document.createElement('p'));
+ currentAlert.appendChild(document.createElement('span'));
currentAlert.onmousemove = function () {
clearTimeout(currentAlertTimeout);
currentAlert.className = '';
Received on Tuesday, 20 March 2012 15:22:49 UTC