Skip to content

Commit

Permalink
forgot to add span.js
Browse files Browse the repository at this point in the history
  • Loading branch information
client9 committed Apr 13, 2010
1 parent 3cd95a8 commit cfaf98b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/html/span.js
@@ -0,0 +1,15 @@
/**
* HTML 5: 4.6.22 The span element
* http://dev.w3.org/html5/spec/Overview.html#the-span-element
*
*/
HTMLSpanElement = function(ownerDocument) {
HTMLElement.apply(this, arguments);
};
HTMLSpanElement.prototype = new HTMLElement();
__extend__(HTMLSpanElement.prototype, {
toString: function(){
return '[object HTMLSpanElement]';
}
});

0 comments on commit cfaf98b

Please sign in to comment.