- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 20 Mar 2012 11:03:38 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv9671
Modified Files:
Makefile load-timeout.js single-page.html
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: single-page.html
===================================================================
RCS file: /sources/public/html5/spec/single-page.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- single-page.html 20 Mar 2012 10:51:48 -0000 1.7
+++ single-page.html 20 Mar 2012 11:03:35 -0000 1.8
@@ -353,7 +353,7 @@
return null;
}
</script><script src="load-timeout.js"></script>
-<body>
+<body onload="init()">
<div class="head" id="head">
<p><a href="http://www.w3.org/"><img alt="W3C" height="48" src="http://www.w3.org/Icons/w3c_home" width="72"></a></p>
Index: load-timeout.js
===================================================================
RCS file: /sources/public/html5/spec/load-timeout.js,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- load-timeout.js 20 Mar 2012 11:01:53 -0000 1.4
+++ load-timeout.js 20 Mar 2012 11:03:35 -0000 1.5
@@ -53,7 +53,8 @@
window.addEventListener('scroll', function (event) {
closeAlert();
}, false);
-alert("foo");
+function init() {
setTimeout(function () {
showAlert("Too slow? Try reading the multipage copy of the spec instead:", "./"), 6000);
}
+}
Index: Makefile
===================================================================
RCS file: /sources/public/html5/spec/Makefile,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- Makefile 20 Mar 2012 10:51:43 -0000 1.45
+++ Makefile 20 Mar 2012 11:03:35 -0000 1.46
@@ -44,7 +44,7 @@
$(PERL) $(PERLFLAGS) -pi -e 's/<\/dt><\/dt><\/dt><dd>/<\/dt><dd>/' $@
$(PERL) $(PERLFLAGS) -pi -e 's/<!DOCTYPE HTML PUBLIC "-\/\/W3C\/\/DTD HTML 4.01 Transitional\/\/EN" "http:\/\/www.w3.org\/TR\/html4\/loose\.dtd">/<!doctype html>\n/' $@
$(PERL) $(PERLFLAGS) -pi -e 's/^.*This is .+Revision: ([^ ]+) \$$.*$$/This is revision $(REVISION)\./' $@
- $(PERL) $(PERLFLAGS) -pi -e 's/<body/<script src="load-timeout.js"><\/script>\n<body/' $@
+ $(PERL) $(PERLFLAGS) -pi -e 's/<body/<script src="load-timeout.js"><\/script>\n<body onload="init()"/' $@
MANIFEST: single-page.html
$(PYTHON) $(PYTHONFLAGS) $(SPLITTER) $(SPLITTERFLAGS) $< . \
Received on Tuesday, 20 March 2012 11:03:44 UTC