Move letter_spacing_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 21:12:35 -04:00
parent 8bb3445565
commit 3b72bb6fce
4 changed files with 25 additions and 1 deletions

View file

@ -163,7 +163,6 @@ prefs:"layout.writing-mode.enabled" == iframe/size_attributes_vertical_writing_m
== legacy_cellspacing_attribute_a.html border_spacing_ref.html
== legacy_td_width_attribute_a.html legacy_td_width_attribute_ref.html
== legacy_th_width_attribute_a.html legacy_td_width_attribute_ref.html
== letter_spacing_a.html letter_spacing_ref.html
== li_absolute_containing_block_a.html li_absolute_containing_block_ref.html
== line_breaking_whitespace_collapse_a.html line_breaking_whitespace_collapse_ref.html
== line_height_a.html line_height_ref.html

View file

@ -1,17 +0,0 @@
<html>
<head>
<!-- Tests that `letter-spacing` works. -->
<link rel="stylesheet" type="text/css" href="css/ahem.css">
<style>
* {
letter-spacing: 100px;
color: blue;
}
body {
margin: 0;
}
</style>
<body>XXX</body>
</head>

View file

@ -1,26 +0,0 @@
<html>
<head>
<!-- Tests that `letter-spacing` works. -->
<style>
section, nav, main {
background-color: blue;
width: 100px;
height: 100px;
position: absolute;
top: 0;
}
section {
left: 0;
}
nav {
left: 200px;
}
main {
left: 400px;
}
</style>
<body><section></section><nav></nav><main></main></body>
</head>