|
1 <!DOCTYPE html> |
|
2 <html class="reftest-wait"> |
|
3 <head> |
|
4 <script> |
|
5 |
|
6 function boom() |
|
7 { |
|
8 var m = document.createElementNS("http://www.w3.org/1998/Math/MathML", "mrow"); |
|
9 document.body.appendChild(m); |
|
10 document.getElementById("a").style.display = "inline"; |
|
11 document.documentElement.removeAttribute("class"); |
|
12 } |
|
13 |
|
14 </script> |
|
15 </head> |
|
16 |
|
17 <body onload="setTimeout(boom, 0);"> |
|
18 |
|
19 <img usemap="#Map" src="data:image/gif,GIF87a%02%00%02%00%B3%00%00%00%00%00%FF%FF%FF%00%00%00%00%00%00%FF%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%2C%00%00%00%00%02%00%02%00%00%04%03%90H%12%00%3B"> |
|
20 |
|
21 <map name="Map"><area id="a"></map> |
|
22 |
|
23 </body> |
|
24 |
|
25 </html> |