[Bug 11601] New: <!-- 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

http://www.w3.org/Bugs/Public/show_bug.cgi?id=11601

           Summary: <!-- 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
           Product: HTML WG
           Version: unspecified
          Platform: Other
               URL: http://www.whatwg.org/specs/web-apps/current-work/#int
                    roduction-4
        OS/Version: other
            Status: NEW
          Severity: normal
          Priority: P3
         Component: HTML5 spec (editor: Ian Hickson)
        AssignedTo: ian@hixie.ch
        ReportedBy: contributor@whatwg.org
         QAContact: public-html-bugzilla@w3.org
                CC: mike@w3.org, public-html-wg-issue-tracking@w3.org,
                    public-html@w3.org


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

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

Received on Thursday, 23 December 2010 14:11:59 UTC