Auto merge of #7126 - Ms2ger:ref, r=jdm

Run word-spacing tests under wpt.



<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7126)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-08-11 02:16:24 -06:00
commit d0bb6d0c07
5 changed files with 30 additions and 1 deletions

View file

@ -358,7 +358,6 @@ experimental == viewport_rule.html viewport_rule_ref.html
== whitespace_pre.html whitespace_pre_ref.html
== width_nonreplaced_block_simple_a.html width_nonreplaced_block_simple_b.html
== word_break_a.html word_break_ref.html
== word_spacing_a.html word_spacing_ref.html
# This file must be sorted alphabetically.

View file

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

View file

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