Entries from 2012-02-16 to 1 day

Web NotificationsとMountain LionのNotification Center

W3C

ちょっと前にwebkit-devにAppleの人がWeb Notificationsについてメールを投げていまして。 [webkit-dev] Web Notifications API I am interested in refactoring the API for web notifications, and would like your feedback. We are working on getting p…

XMLHttpRequestのHTMLサポート (responseType='document')

XHR2改めXHRではresponseType = 'document'でHTML文書を返してくれる。で、Firefox 11, Chrome 18, Safari 6から使えるようになっている。 var xhr = new XMLHttpRequest(); xhr.onload = function () { console.log(this.response instanceof HTMLDocument)…