Bug 575870 - Enable the firefox button on xp themed, classic, and aero basic. r=dao...
[mozilla-central.git] / layout / reftests / bugs / 507487-1.html
blob412b4843b042fcbc9ce9227dee18017fffb284ed
1 <!DOCTYPE html>
2 <html>
3 <!--
4 https://bugzilla.mozilla.org/show_bug.cgi?id=507487
5 -->
6 <head>
7 <style>
8 #content > * {
9 display:block; width:100px; height:100px; background: purple;
11 #content > teST {
12 display:block; width:100px; height:100px; background: green;
15 #content > test {
16 display:block; width:100px; height:100px; background: blue;
19 </style>
20 <script>
21 function f() {
22 document.getElementById('content').appendChild(document.createElementNS("test", "test"));
23 document.getElementById('content').appendChild(document.createElementNS("test", "teST"));
24 document.getElementById('content').appendChild(document.createElementNS("http://www.w3.org/1999/xhtml", "test"));
25 document.getElementById('content').appendChild(document.createElementNS("http://www.w3.org/1999/xhtml", "teST"));
27 </script>
28 </head>
29 <body onload="f();">
30 <div id=content></div>
31 </body>
32 </html>