Move incremental_letter_spacing_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-19 18:34:07 -04:00
parent 463ed5f0da
commit 42b2a9733e
4 changed files with 25 additions and 1 deletions

View file

@ -707,6 +707,18 @@
"url": "/_mozilla/css/incremental_float_a.html"
}
],
"css/incremental_letter_spacing_a.html": [
{
"path": "css/incremental_letter_spacing_a.html",
"references": [
[
"/_mozilla/css/incremental_letter_spacing_ref.html",
"=="
]
],
"url": "/_mozilla/css/incremental_letter_spacing_a.html"
}
],
"css/inline_absolute_hypothetical_clip_a.html": [
{
"path": "css/inline_absolute_hypothetical_clip_a.html",
@ -4380,6 +4392,18 @@
"url": "/_mozilla/css/incremental_float_a.html"
}
],
"css/incremental_letter_spacing_a.html": [
{
"path": "css/incremental_letter_spacing_a.html",
"references": [
[
"/_mozilla/css/incremental_letter_spacing_ref.html",
"=="
]
],
"url": "/_mozilla/css/incremental_letter_spacing_a.html"
}
],
"css/inline_absolute_hypothetical_clip_a.html": [
{
"path": "css/inline_absolute_hypothetical_clip_a.html",

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='incremental_letter_spacing_ref.html'>
<meta charset="UTF-8">
<title>Incremental layout letter-spacing test</title>
</head>
<body>
<p>Hello, world!</p>
<script>
window.addEventListener("load", function() {
document.querySelector("p").style.letterSpacing = "1em";
});
</script>
</body>
</html>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Incremental layout letter-spacing reference</title>
</head>
<body>
<p style="letter-spacing: 1em">Hello, world!</p>
</body>
</html>