gecko-dev/layout/reftests/pagination/table-page-break-before-left-1.html
Hiroyuki Ikezoe 08eb278be8 Bug 1625341 - Convert the newline from windows style to unix-like style in reftests in layout/reftests/pagination/. r=TYLin
find layout/reftests/pagination -type f  | xargs sed -i 's/^r//g'

Differential Revision: https://phabricator.services.mozilla.com/D68483

--HG--
extra : moz-landing-system : lando
2020-03-27 02:07:07 +00:00

22 lines
460 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US" class="reftest-paged">
<head>
<style type="text/css">
div.spacer { height: 50px; width: 50px; border:thin solid green;}
</style>
</head>
<body>
<table>
<tbody>
<tr><td><div class="spacer"></div></td></tr>
</tbody>
</table>
<table style="page-break-before:left">
<tbody>
<tr><td><div class="spacer"></div></td></tr>
</tbody>
</table>
</body>
</html>