1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/table-bordercollapse/frame_border_rules_none_ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,52 @@ 1.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd"> 1.5 +<html lang="en"> 1.6 +<head> 1.7 + <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 1.8 + <title>Frame="border" and Rules="none"</title> 1.9 + <link rel="stylesheet" type="text/css" href="bordercol.css" /> 1.10 + <script language=javascript> 1.11 + function onReftestLoad() { 1.12 + document.getElementById('topRightMask').style.left = (document.getElementById('tablehead').getBoundingClientRect().right + 2) + 'px'; 1.13 + document.getElementById('topRightMask').style.top = (document.getElementById('tablehead').getBoundingClientRect().top - 3) + 'px'; 1.14 + document.getElementById('bottomLeftMask').style.top = (document.getElementById('tablefooter').getBoundingClientRect().bottom + 2) + 'px'; 1.15 + } 1.16 + </script> 1.17 +</head> 1.18 +<body onload='onReftestLoad();'> 1.19 +<div class="maskPixel" id="bottomLeftMask"></div> 1.20 +<div class="maskPixel" id="topRightMask"></div> 1.21 +<table class="leftLight topLight rightDark bottomDark"> 1.22 + <caption><a name="void-none">Frame="border" and Rules="none"</caption> 1.23 + <thead id="tablehead"> 1.24 + <tr> 1.25 + <td>Row 1, Cell 1</td> 1.26 + <td>Row 1, Cell 2</td> 1.27 + <td>Row 1, Cell 3</td> 1.28 + </tr> 1.29 + </thead> 1.30 + <tbody> 1.31 + <tr> 1.32 + <td rowspan="2">Row 2, Cell 1</td> 1.33 + <td colspan="2">Row 2, Cell 2</td> 1.34 + </tr> 1.35 + <tr> 1.36 + <td>Row 3, Cell 2</td> 1.37 + <td rowspan="2">Row 3, Cell 3</td> 1.38 + </tr> 1.39 + <tr> 1.40 + <td colspan="2">Row 4, Cell 1</td> 1.41 + </tr> 1.42 + </tbody> 1.43 + <tfoot id='tablefooter'> 1.44 + <tr> 1.45 + <td>Row 5, Cell 1</td> 1.46 + <td>Row 5, Cell 2</td> 1.47 + <td>Row 5, Cell 3</td> 1.48 + </tr> 1.49 + </tfoot> 1.50 +</table> 1.51 + 1.52 + 1.53 +</body> 1.54 + 1.55 +</html>