This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 11601 - <!-- clock.html --> <!DOCTYPE HTML> <html> <head> <title>Clock</title> <script src="clock.js"></script> <link rel="stylesheet" href="clock.css"> </head> <body> <p>The time is: <output id="clock"></output></p> </body> </html> /* clo
Summary: <!-- clock.html --> <!DOCTYPE HTML> <html> <head> <title>Clock</title>...
Status: RESOLVED INVALID
Alias: None
Product: HTML WG
Classification: Unclassified
Component: LC1 HTML5 spec (show other bugs)
Version: unspecified
Hardware: Other other
: P3 normal
Target Milestone: ---
Assignee: Ian 'Hixie' Hickson
QA Contact: HTML WG Bugzilla archive list
URL: http://www.whatwg.org/specs/web-apps/...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-12-23 14:11 UTC by contributor
Modified: 2011-08-04 05:11 UTC (History)
4 users (show)

See Also:


Attachments

Description contributor 2010-12-23 14:11:54 UTC
Specification: http://www.whatwg.org/specs/web-apps/current-work/multipage/offline.html
Section: http://www.whatwg.org/specs/web-apps/current-work/#introduction-4

Comment:
<!-- clock.html -->  <!DOCTYPE HTML>  <html>   <head>	 <title>Clock</title> 
  <script src="clock.js"></script>    <link rel="stylesheet" href="clock.css">
  </head>   <body>    <p>The time is: <output id="clock"></output></p>	
</body>  </html>  /* clock.css */  output { font: 2em sans-serif; }  /*
clock.js */  setTimeout(function () {	  
document.getElementById('clock').value = new Date();

Posted from: 91.176.34.84
Comment 1 Michael[tm] Smith 2011-08-04 05:11:58 UTC
mass-move component to LC1