mirror of
https://github.com/servo/servo.git
synced 2025-10-01 00:59:15 +01:00
Move root_display_inline_a.html and root_display_without_style_a.html to wpt reftests.
This commit is contained in:
parent
ba62957368
commit
3d5e1130d5
5 changed files with 50 additions and 2 deletions
|
@ -3523,6 +3523,30 @@
|
|||
"url": "/_mozilla/css/restyle_hints_state.html"
|
||||
}
|
||||
],
|
||||
"css/root_display_inline_a.html": [
|
||||
{
|
||||
"path": "css/root_display_inline_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/root_display_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/root_display_inline_a.html"
|
||||
}
|
||||
],
|
||||
"css/root_display_without_style_a.html": [
|
||||
{
|
||||
"path": "css/root_display_without_style_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/root_display_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/root_display_without_style_a.html"
|
||||
}
|
||||
],
|
||||
"css/root_height_a.html": [
|
||||
{
|
||||
"path": "css/root_height_a.html",
|
||||
|
@ -8892,6 +8916,30 @@
|
|||
"url": "/_mozilla/css/restyle_hints_state.html"
|
||||
}
|
||||
],
|
||||
"css/root_display_inline_a.html": [
|
||||
{
|
||||
"path": "css/root_display_inline_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/root_display_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/root_display_inline_a.html"
|
||||
}
|
||||
],
|
||||
"css/root_display_without_style_a.html": [
|
||||
{
|
||||
"path": "css/root_display_without_style_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/root_display_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/root_display_without_style_a.html"
|
||||
}
|
||||
],
|
||||
"css/root_height_a.html": [
|
||||
{
|
||||
"path": "css/root_height_a.html",
|
||||
|
|
9
tests/wpt/mozilla/tests/css/root_display_inline_a.html
Normal file
9
tests/wpt/mozilla/tests/css/root_display_inline_a.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html style="display:inline">
|
||||
<head>
|
||||
<link rel=match href=root_display_ref.html>
|
||||
</head>
|
||||
<body>
|
||||
Hello world!
|
||||
</body>
|
||||
</html>
|
8
tests/wpt/mozilla/tests/css/root_display_ref.html
Normal file
8
tests/wpt/mozilla/tests/css/root_display_ref.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
Hello world!
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel=match href=root_display_ref.html>
|
||||
<script>
|
||||
document.removeChild(document.documentElement);
|
||||
root = document.createElementNS(null, "html");
|
||||
body = document.createElement("body");
|
||||
body.appendChild(document.createTextNode("Hello world!"));
|
||||
root.appendChild(body);
|
||||
document.appendChild(root);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue