Move font_face_attribute.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent fdfe2084f8
commit ddf2ef0da0
4 changed files with 25 additions and 1 deletions

View file

@ -899,6 +899,18 @@
"url": "/_mozilla/css/font_color_attribute_a.html"
}
],
"css/font_face_attribute.html": [
{
"path": "css/font_face_attribute.html",
"references": [
[
"/_mozilla/css/font_face_attribute_ref.html",
"=="
]
],
"url": "/_mozilla/css/font_face_attribute.html"
}
],
"css/font_style.html": [
{
"path": "css/font_style.html",
@ -4980,6 +4992,18 @@
"url": "/_mozilla/css/font_color_attribute_a.html"
}
],
"css/font_face_attribute.html": [
{
"path": "css/font_face_attribute.html",
"references": [
[
"/_mozilla/css/font_face_attribute_ref.html",
"=="
]
],
"url": "/_mozilla/css/font_face_attribute.html"
}
],
"css/font_style.html": [
{
"path": "css/font_style.html",

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='font_face_attribute_ref.html'>
</head>
<body>
<p><font face=monospace>Servo</font></p>
<p><font id=1>Servo</font></p>
<script>
document.getElementById("1").face = "monospace";
</script>
</body>
</html>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body style="font-family: monospace">
<p>Servo</p>
<p>Servo</p>
</body>
</html>