- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 20 Mar 2012 15:20:44 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv22093
Modified Files:
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: load-timeout.js
===================================================================
RCS file: /sources/public/html5/spec/load-timeout.js,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- load-timeout.js 20 Mar 2012 15:19:42 -0000 1.16
+++ load-timeout.js 20 Mar 2012 15:20:42 -0000 1.17
@@ -5,13 +5,11 @@
currentAlert = document.createElement('div');
currentAlert.id = 'alert';
var x = document.createElement('input');
- var br = document.createElement('br');
x.type = "button";
x.value = "Close";
x.onclick = closeAlert2;
currentAlert.appendChild(x);
- currentAlert.appendChild(br);
- currentAlert.appendChild(document.createElement('div'));
+ currentAlert.appendChild(document.createElement('p'));
currentAlert.onmousemove = function () {
clearTimeout(currentAlertTimeout);
currentAlert.className = '';
Received on Tuesday, 20 March 2012 15:20:49 UTC