- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 20 Mar 2012 15:17:03 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv21079
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.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- load-timeout.js 20 Mar 2012 15:13:48 -0000 1.13
+++ load-timeout.js 20 Mar 2012 15:17:01 -0000 1.14
@@ -4,13 +4,13 @@
if (!currentAlert) {
currentAlert = document.createElement('div');
currentAlert.id = 'alert';
- var d = document.createElement('div');
var x = document.createElement('input');
+ var h = document.createElement('hr');
x.type = "button";
x.value = "Close";
x.onclick = closeAlert2;
- d.appendChild(x);
- currentAlert.appendChild(d);
+ currentAlert.appendChild(x);
+ currentAlert.appendChild(h);
currentAlert.appendChild(document.createElement('span'));
currentAlert.onmousemove = function () {
clearTimeout(currentAlertTimeout);
Received on Tuesday, 20 March 2012 15:17:10 UTC