1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/480880-1a.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +<!DOCTYPE html> 1.5 +<html style="display: table" class="reftest-wait"> 1.6 + <head> 1.7 + <script> 1.8 + window.addEventListener("MozReftestInvalidate", 1.9 + function() { 1.10 + var b = document.createElement("body"); 1.11 + b.style.background = "green"; 1.12 + document.documentElement.appendChild(b); 1.13 + document.documentElement.className = ""; 1.14 + }, false); 1.15 + </script> 1.16 + </head> 1.17 + <body style="background: red"> 1.18 + <script> 1.19 + document.documentElement.removeChild(document.body); 1.20 + </script> 1.21 + </body> 1.22 +</html>