no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / bugs / 507487-2.xhtml
blob84bf023e1b4c930768231f4a06a8c5a59c2df2d0
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <!--
3 https://bugzilla.mozilla.org/show_bug.cgi?id=507487
4 -->
5 <head>
6 <style>
7 #content > * {
8 display:block; width:100px; height:100px; background: purple;
10 #content > teST {
11 display:block; width:100px; height:100px; background: green;
14 #content > test {
15 display:block; width:100px; height:100px; background: blue;
17 </style>
18 <script type="application/javascript">
19 <![CDATA[
20 function f() {
21 document.getElementById('content').appendChild(document.createElementNS("test", "test"));
22 document.getElementById('content').appendChild(document.createElementNS("test", "teST"));
23 document.getElementById('content').appendChild(document.createElementNS("http://www.w3.org/1999/xhtml", "test"));
24 document.getElementById('content').appendChild(document.createElementNS("http://www.w3.org/1999/xhtml", "teST"));
26 ]]>
27 </script>
28 </head>
29 <body onload="f();">
30 <div id="content"></div>
31 </body>
32 </html>