layout/reftests/bugs/507762-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 <head>
     4 <style>
     5 @namespace url(test);
     6 div {
     7 background-color: red;
     8 }
     9 div[mixedCase=true] {
    10 background-color: green !important;
    11 }
    12 </style>
    13 <script>
    14 function f() {
    15 var elem = document.createElementNS("test","div");
    16 elem.setAttribute("mixedCase",true);
    17 elem.appendChild(document.createTextNode("text"));
    18 document.getElementsByTagName("body")[0].appendChild(elem); }
    19 </script>
    20 </head>
    21 <body onload="f();">
    22 </body>
    23 </html>

mercurial