1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/submitted/css21/pagination/moz-css21-float-page-break-inside-avoid-8-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +<!DOCTYPE html> 1.5 +<html lang="en-US" class="reftest-print"> 1.6 +<head> 1.7 + <title>CSS Test: CSS 2.1 page-break-inside:avoid</title> 1.8 + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=685012"> 1.9 + <meta name="flags" content="paged"><style type="text/css"> 1.10 +@page { size:5in 3in; margin:0.5in; } 1.11 +html,body { 1.12 + color:black; background-color:white; font-size:16px; padding:0; margin:0; height:100%; 1.13 +} 1.14 + 1.15 +.test { 1.16 + height:60%; 1.17 + float:left; 1.18 + clear:left; 1.19 + background-color:blue; 1.20 +} 1.21 +</style> 1.22 +</head> 1.23 +<body> 1.24 +<br style="clear:both"> 1.25 +<div class="test">1</div> 1.26 +<div style="clear:both;">X<br>Y</div> 1.27 +<div class="test" style="page-break-before:always">2</div> 1.28 +</body> 1.29 +</html>