Move upper_id_attr.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-13 23:23:00 -04:00
parent a3d799e8c6
commit 089fc93ff7
4 changed files with 25 additions and 1 deletions

View file

@ -603,6 +603,18 @@
"url": "/_mozilla/css/stacking_context_rtl.html"
}
],
"css/upper_id_attr.html": [
{
"path": "css/upper_id_attr.html",
"references": [
[
"/_mozilla/css/upper_id_attr_ref.html",
"=="
]
],
"url": "/_mozilla/css/upper_id_attr.html"
}
],
"css/vertical_align_text_top_a.html": [
{
"path": "css/vertical_align_text_top_a.html",
@ -2000,6 +2012,18 @@
"url": "/_mozilla/css/stacking_context_rtl.html"
}
],
"css/upper_id_attr.html": [
{
"path": "css/upper_id_attr.html",
"references": [
[
"/_mozilla/css/upper_id_attr_ref.html",
"=="
]
],
"url": "/_mozilla/css/upper_id_attr.html"
}
],
"css/vertical_align_text_top_a.html": [
{
"path": "css/vertical_align_text_top_a.html",

View file

@ -0,0 +1,10 @@
<!doctype html>
<link rel='match' href='upper_id_attr_ref.html'>
<style>
div { height: 2em; background: green; }
#id { background: red; }
</style>
<div></div>
<script>
document.body.firstChild.setAttributeNS("", "ID", "id");
</script>

View file

@ -0,0 +1,5 @@
<!doctype html>
<style>
div { height: 2em; background: green; }
</style>
<div></div>