layout/reftests/bugs/520421-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 class="reftest-wait">
     3   <head>
     4     <style>
     5       div {
     6         background-color: red;
     7       }
     8       div[mixedCase=true] {
     9         background-color: green !important;
    10       }
    11     </style>
    12     <script>
    13       function f() {
    14         document.getElementById("t").setAttribute("mixedCase", "true");
    15         document.documentElement.className = "";
    16       }
    17       window.addEventListener("MozReftestInvalidate", f, false);
    18     </script>
    19   </head>
    20   <body>
    21     <div id="t">text</div>
    22   </body>
    23 </html>

mercurial