Move vertical-lr-blocks.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-12-02 16:05:22 +01:00
parent d8fe60ccb1
commit 81a5948b23
5 changed files with 30 additions and 1 deletions

View file

@ -15,7 +15,6 @@ flaky_cpu == append_style_a.html append_style_b.html
resolution=300x300,device-pixel-ratio=2 != pixel_snapping_border_a.html pixel_snapping_border_ref.html
resolution=300x300,device-pixel-ratio=2 != pixel_snapping_position_a.html pixel_snapping_position_ref.html
flaky_cpu,prefs:"layout.writing-mode.enabled" == vertical-lr-blocks.html vertical-lr-blocks_ref.html
resolution=800x600 == viewport_percentage_vmin_vmax.html viewport_percentage_vmin_vmax_a.html
# resolution=600x800 == viewport_percentage_vmin_vmax.html viewport_percentage_vmin_vmax_b.html
resolution=800x600 == viewport_percentage_vw_vh.html viewport_percentage_vw_vh_a.html

View file

@ -1,18 +0,0 @@
<!doctype html>
<html>
<head>
<style>
html { writing-mode: vertical-rl }
body { margin: 10px }
div { border: blue solid 5px; line-height: 30px; height: 500px }
p { background: green; margin: 40px 20px }
p + p { margin-top: 60px }
</style>
</head>
<body>
<div>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</body>
</html>

View file

@ -1,18 +0,0 @@
<!doctype html>
<html>
<head>
<style>
div { border: blue solid 5px; position: absolute;
top: 10px; right: 10px; bottom: 10px; width: 120px; height: 500px }
p { background: green; margin: 0; position: absolute;
top: 40px; right: 20px; bottom: 40px; width: 30px }
p + p { right: 70px; top: 60px }
</style>
</head>
<body>
<div>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</body>
</html>