1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/360065-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,22 @@ 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" xml:lang="en"> 1.6 + <head> 1.7 + <title>table-cell Testcase</title> 1.8 + <style type="text/css"> 1.9 + 1.10 + /* Test case: */ 1.11 + .tablespan { 1.12 + display: inline-table; 1.13 + } 1.14 + .inlinediv { border: 1px solid blue; } 1.15 + .tablespan { border: 1px solid purple; } 1.16 + 1.17 + </style> 1.18 + </head> 1.19 + <body> 1.20 + 1.21 + <span class="inlinediv"> 1.22 + <span class="tablespan">x</span> 1.23 + </span> 1.24 + </body> 1.25 +</html>