layout/reftests/bugs/507487-1.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     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