mirror of
https://github.com/servo/servo.git
synced 2025-09-30 16:49:16 +01:00
Move table_percentage_width_a.html to wpt reftests.
This commit is contained in:
parent
97d857c492
commit
63bb425e7d
4 changed files with 25 additions and 1 deletions
|
@ -615,6 +615,18 @@
|
|||
"url": "/_mozilla/css/table_expansion_to_fit_a.html"
|
||||
}
|
||||
],
|
||||
"css/table_percentage_width_a.html": [
|
||||
{
|
||||
"path": "css/table_percentage_width_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/table_percentage_width_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/table_percentage_width_a.html"
|
||||
}
|
||||
],
|
||||
"css/table_preferred_width_a.html": [
|
||||
{
|
||||
"path": "css/table_preferred_width_a.html",
|
||||
|
@ -2432,6 +2444,18 @@
|
|||
"url": "/_mozilla/css/table_expansion_to_fit_a.html"
|
||||
}
|
||||
],
|
||||
"css/table_percentage_width_a.html": [
|
||||
{
|
||||
"path": "css/table_percentage_width_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/table_percentage_width_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/table_percentage_width_a.html"
|
||||
}
|
||||
],
|
||||
"css/table_preferred_width_a.html": [
|
||||
{
|
||||
"path": "css/table_preferred_width_a.html",
|
||||
|
|
18
tests/wpt/mozilla/tests/css/table_percentage_width_a.html
Normal file
18
tests/wpt/mozilla/tests/css/table_percentage_width_a.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel='match' href='table_percentage_width_ref.html'>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table style="width: 500px; text-align: center;" cellpadding=0 cellspacing=0>
|
||||
<tr><td style="width: 30%; height: 50px; background: blue;"></td><td style="width: 70%; background: green;"></td></tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
17
tests/wpt/mozilla/tests/css/table_percentage_width_ref.html
Normal file
17
tests/wpt/mozilla/tests/css/table_percentage_width_ref.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div style="width: 500px; text-align: center;">
|
||||
<span style="display: inline-block; width: 150px; height: 50px; background: blue;"></span><span style="display: inline-block; width: 350px; height: 50px; background: green;"></span>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue