1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/424465-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,52 @@ 1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 1.5 +<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait"> 1.6 + <head> 1.7 + <title>424465 testcase</title> 1.8 + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 1.9 + 1.10 + <style type="text/css"> 1.11 + .standardform { 1.12 + background-color: #00f000; 1.13 + border: 1px solid #000000; 1.14 + margin-bottom: 3px; /* Remove this line and bug disappears */ 1.15 + } 1.16 + </style> 1.17 + 1.18 + <script type="text/javascript"> 1.19 + //<![CDATA[ 1.20 + 1.21 + window.addEventListener("MozReftestInvalidate", showBug, false); 1.22 + 1.23 + function imageLoaded() 1.24 + { 1.25 + document.documentElement.className = ""; 1.26 + } 1.27 + 1.28 + function showBug() 1.29 + { 1.30 + document.getElementById("hiddenColumnBugged").innerHTML = 1.31 + "<div>.: See the bug ? :.<br /><img onload='imageLoaded()' src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANwAAAATCAIAAAB0hvS3AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAAB6JQAAgIMAAPn/AACA6AAAdTAAAOpgAAA6lwAAF2+XqZnUAAAAuUlEQVR4nGJkYPjPMApGwWACAAHENNAOGAWjAB0ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABNBoohwFgw4ABBgAsywBJafN/+UAAAAASUVORK5CYII=' /><\/div>"; 1.32 + } 1.33 + 1.34 + //]]> 1.35 + </script> 1.36 + 1.37 + </head> 1.38 + 1.39 + <body> 1.40 + 1.41 + <form method="get" action="#"> 1.42 + <table class="standardform" cellspacing="5"> 1.43 + <tbody> 1.44 + <tr> 1.45 + <td colspan="2" id="hiddenColumnBugged"> 1.46 + <input onclick="showBug(); return false;" value="Trigger Bug" type="button" /> 1.47 + </td> 1.48 + </tr> 1.49 + </tbody> 1.50 + 1.51 + </table> 1.52 + </form> 1.53 + </body> 1.54 + 1.55 +</html>