html5/spec load-timeout.js,1.14,1.15

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv21428

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.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- load-timeout.js	20 Mar 2012 15:17:01 -0000	1.14
+++ load-timeout.js	20 Mar 2012 15:18:27 -0000	1.15
@@ -5,12 +5,12 @@
     currentAlert = document.createElement('div');
     currentAlert.id = 'alert';
     var x = document.createElement('input');
-    var h = document.createElement('hr');
+    var br = document.createElement('br');
     x.type = "button";
     x.value = "Close";
     x.onclick = closeAlert2;
     currentAlert.appendChild(x);
-    currentAlert.appendChild(h);
+    currentAlert.appendChild(br);
     currentAlert.appendChild(document.createElement('span'));
     currentAlert.onmousemove = function () {
       clearTimeout(currentAlertTimeout);

Received on Tuesday, 20 March 2012 15:18:36 UTC