Move vertical_align_super_nested_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-14 00:13:37 -04:00
parent c3e8d5d47e
commit 18ae331f84
4 changed files with 25 additions and 1 deletions

View file

@ -663,6 +663,18 @@
"url": "/_mozilla/css/upper_id_attr.html"
}
],
"css/vertical_align_super_nested_a.html": [
{
"path": "css/vertical_align_super_nested_a.html",
"references": [
[
"/_mozilla/css/vertical_align_super_nested_ref.html",
"=="
]
],
"url": "/_mozilla/css/vertical_align_super_nested_a.html"
}
],
"css/vertical_align_text_bottom_a.html": [
{
"path": "css/vertical_align_text_bottom_a.html",
@ -2132,6 +2144,18 @@
"url": "/_mozilla/css/upper_id_attr.html"
}
],
"css/vertical_align_super_nested_a.html": [
{
"path": "css/vertical_align_super_nested_a.html",
"references": [
[
"/_mozilla/css/vertical_align_super_nested_ref.html",
"=="
]
],
"url": "/_mozilla/css/vertical_align_super_nested_a.html"
}
],
"css/vertical_align_text_bottom_a.html": [
{
"path": "css/vertical_align_text_bottom_a.html",

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='vertical_align_super_nested_ref.html'>
<!-- Tests that `vertical-align: baseline` inside `vertical-align: super` is laid out properly. -->
<style>
span {
vertical-align: baseline;
}
</style>
</head>
<body>
<p><sup><span>Yo</span></sup></p>
</body>
</html>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<!-- Tests that `vertical-align: baseline` inside `vertical-align: super` is laid out properly. -->
</head>
<body>
<p><sup>Yo</sup></p>
</body>
</html>