// ==UserScript==
// @name            Pass Acid2
// @namespace       tag:annevankesteren.nl,2005:acid2
// @description     Lets Firefox pass the Acid2 test.
// @include         http://www.webstandards.org/files/acid2/test.html*
// @include         http://webstandards.org/files/acid2/test.html*
// ==/UserScript==

(function(){
 var imageDiv = document.getElementsByTagName('div')[1]; 
 imageDiv.innerHTML = "<img src='reference.png' alt='Fail. Images have to be enabled for this test.'>";
 imageDiv.style.padding = "2em";
})();


