Move root_display_inline_a.html and root_display_without_style_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-21 10:08:32 +01:00
parent ba62957368
commit 3d5e1130d5
5 changed files with 50 additions and 2 deletions

View file

@ -48,8 +48,6 @@ resolution=300x300,device-pixel-ratio=2 != pixel_snapping_position_a.html pixel_
# == position_fixed_a.html position_fixed_b.html
# == position_fixed_simple_a.html position_fixed_simple_b.html
# == position_fixed_static_y_a.html position_fixed_static_y_b.html
== root_display_inline_a.html root_display_ref.html
== root_display_without_style_a.html root_display_ref.html
# text_decoration_propagation_a.html text_decoration_propagation_b.html
!= text_decoration_smoke_a.html text_decoration_smoke_ref.html
!= text_decoration_underline_subpx_a.html text_decoration_underline_subpx_ref.html

View file

@ -1,8 +0,0 @@
<!DOCTYPE html>
<html style="display:inline">
<head>
</head>
<body>
Hello world!
</body>
</html>

View file

@ -1,8 +0,0 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body>
Hello world!
</body>
</html>

View file

@ -1,15 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<script>
document.removeChild(document.documentElement);
root = document.createElementNS(null, "html");
body = document.createElement("body");
body.appendChild(document.createTextNode("Hello world!"));
root.appendChild(body);
document.appendChild(root);
</script>
</head>
<body>
</body>
</html>