forked from thierryc/add-html5-elements-to-dom-for-IE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html5_elements_to_dom.html
90 lines (73 loc) · 2.43 KB
/
html5_elements_to_dom.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>IE_dom</title>
</head>
<body>
<h5>HTML5</h5>
<h2>HTML 5 in 5 steps:</h2>
<ol>
<li>
<h4>The HTML5 minimum:</h4>
<p><br>
<!DOCTYPE html><br>
<html lang="en"><br>
<head><br>
<meta charset="utf-8" /><br>
<title>title</title><br>
</head><br>
<body><br>
</p><br>
<p><br>
</body><br>
</html><br>
</p><br>
</li>
<li>
<h4>New Semantic Elements in HTML5</h4>
<p>
<section>,<nav>,<article>,<aside>,<hgroup>,<header>,<footer>,<time>,<mark>...
</p>
</li>
<li>
<h4>Basic <canvas> support </h4>
<table>
<tr>
<th>IE</th> <th>Firefox</th> <th>Safari</th> <th>Chrome</th> <th>Opera</th> <th>iPhone</th> <th>Android</th>
</tr>
<tr>
<td>7.0+*</td> <td>3.0+</td> <td>3.0+</td> <td>3.0+</td> <td>10.0+</td> <td>1.0+</td> <td>1.0+ </td>
</tr>
</table>
<p>
* Internet Explorer 7 and 8 require the third-party <a href="http://code.google.com/p/explorercanvas/" title="explorer Canvas for IE">explorercanvas</a> library. Internet Explorer 9 supports <canvas> gradients natively.
</p>
</li>
<li>
<h3>Video Formats</h3>
<ul>
<li>H.264 video + AAC audio in an MP4 container</li>
<li>Ogg Theora + Vorbis in an Ogg container</li>
</ul>
</li>
<li>
<h3>More about HTML5</h3>
<ul>
<li><a href="http://diveintohtml5.info/" title="dive into html5">Dive into html5</a></li>
</ul>
</li>
</ol>
<hr>
<h3>More about HTML5 Canvas</h3>
<ul>
<li><a href="http://code.google.com/p/explorercanvas/" title="explorer Canvas for IE">explorercanvas</a></li>
<li><a href="https://developer.mozilla.org/en/Canvas_tutorial">Canvas tutorial</a> on Mozilla Developer Center</li>
<li><a href="http://dev.opera.com/articles/view/html-5-canvas-the-basics/"><abbr>HTML5</abbr> <code>canvas</code> — the basics</a>, by Mihai Sucan</li>
<li><a href="http://www.canvasdemos.com/">CanvasDemos.com</a>: demos, tools, and tutorials for the <abbr>HTML</abbr> <code>canvas</code> element</li>
<li><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html">The <code>canvas</code> element</a> in the <abbr>HTML5</abbr> draft standard</li>
<li><a href="http://msdn.microsoft.com/en-us/ie/ff468705.aspx#_HTML5_canvas">Internet Explorer 9 Guide for Developers: HTML5 <code>canvas</code> element</a></li>
</ul>
<script src="add_html5_elements_to_dom.js"></script>
</body>
</html>