Move text_decoration_propagation_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-12-02 15:47:17 +01:00
parent 1ff3424a8b
commit d8fe60ccb1
5 changed files with 29 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
# text_decoration_propagation_a.html text_decoration_propagation_b.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

View file

@ -1,20 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>I CAN'T LIVE ANOTHER DAY WITHOUT AIR CONDITIONING!</title>
<style>
#a {
text-decoration: underline;
}
</style>
</head>
<body>
<div id=a>
hi
<div id=b>
there
</div>
</div>
</body>
</html>

View file

@ -1,23 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>I CAN'T LIVE ANOTHER DAY WITHOUT AIR CONDITIONING!</title>
<style>
#a {
text-decoration: underline;
}
#b {
text-decoration: underline;
}
</style>
</head>
<body>
<div id=a>
hi
<div id=b>
there
</div>
</div>
</body>
</html>