Move link_style_order.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-19 18:34:07 -04:00
parent 1c59b74e67
commit 72176abbd3
4 changed files with 25 additions and 1 deletions

View file

@ -1007,6 +1007,18 @@
"url": "/_mozilla/css/linebreak_inline_span_a.html"
}
],
"css/link_style_order.html": [
{
"path": "css/link_style_order.html",
"references": [
[
"/_mozilla/css/link_style_order_ref.html",
"=="
]
],
"url": "/_mozilla/css/link_style_order.html"
}
],
"css/max_width_float_simple_a.html": [
{
"path": "css/max_width_float_simple_a.html",
@ -4440,6 +4452,18 @@
"url": "/_mozilla/css/linebreak_inline_span_a.html"
}
],
"css/link_style_order.html": [
{
"path": "css/link_style_order.html",
"references": [
[
"/_mozilla/css/link_style_order_ref.html",
"=="
]
],
"url": "/_mozilla/css/link_style_order.html"
}
],
"css/max_width_float_simple_a.html": [
{
"path": "css/max_width_float_simple_a.html",

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='link_style_order_ref.html'>
<meta charset="utf-8">
<title>link/style order test</title>
<link rel="stylesheet" href="data:text/css,body{background:red;}">
<style>body { background: green; }</style>
</head>
<body>
</body>
</html>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>link/style order test</title>
<style>body { background: green; }</style>
</head>
<body>
</body>
</html>