layout/reftests/bugs/507487-1.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     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;
    10 }
    11 #content > teST {
    12   display:block; width:100px; height:100px; background: green;
    13 }
    15 #content > test {
    16   display:block; width:100px; height:100px; background: blue;
    17 }
    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"));
    26   }
    27 </script>
    28 </head>
    29 <body onload="f();">
    30 <div id=content></div>
    31 </body>
    32 </html>

mercurial