Run word-spacing tests under wpt.

This commit is contained in:
Ms2ger 2015-08-10 15:09:06 +02:00
parent 5374812932
commit 727d89bb44
5 changed files with 30 additions and 1 deletions

View file

@ -357,7 +357,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>