- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 20 Mar 2012 15:05:31 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv19282 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.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- load-timeout.js 20 Mar 2012 11:34:45 -0000 1.8 +++ load-timeout.js 20 Mar 2012 15:05:29 -0000 1.9 @@ -4,8 +4,9 @@ if (!currentAlert) { currentAlert = document.createElement('div'); currentAlert.id = 'alert'; - var x = document.createElement('button'); - x.textContent = '\u2573'; + var x = document.createElement('input'); + x.type = "button"; + x.value = "Xlose"; x.onclick = closeAlert2; currentAlert.appendChild(x); currentAlert.appendChild(document.createElement('span'));
Received on Tuesday, 20 March 2012 15:05:39 UTC