mirror of
https://github.com/servo/servo.git
synced 2025-09-29 16:19:14 +01:00
parent
7a5f15f137
commit
1ae3bda172
17 changed files with 154 additions and 196 deletions
|
@ -124,3 +124,4 @@ flaky_gpu,flaky_linux == acid2_noscroll.html acid2_ref_broken.html
|
|||
== inline_block_baseline_a.html inline_block_baseline_ref.html
|
||||
== float_table_a.html float_table_ref.html
|
||||
== table_containing_block_a.html table_containing_block_ref.html
|
||||
== link_style_order.html link_style_order_ref.html
|
||||
|
|
11
tests/ref/link_style_order.html
Normal file
11
tests/ref/link_style_order.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<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>
|
10
tests/ref/link_style_order_ref.html
Normal file
10
tests/ref/link_style_order_ref.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue