mirror of
https://github.com/servo/servo.git
synced 2025-08-04 21:20:23 +01:00
Merge pull request #2874 from bjwbell/borders-ref-test
Modify borders ref test to work on OS X
This commit is contained in:
commit
39b9397c2b
3 changed files with 14 additions and 5 deletions
|
@ -16,7 +16,7 @@
|
||||||
== root_height_a.html root_height_b.html
|
== root_height_a.html root_height_b.html
|
||||||
== png_rgba_colorspace_a.html png_rgba_colorspace_b.html
|
== png_rgba_colorspace_a.html png_rgba_colorspace_b.html
|
||||||
== border_style_none_a.html border_style_none_b.html
|
== border_style_none_a.html border_style_none_b.html
|
||||||
# == borders_a.html borders_b.html
|
== borders_a.html borders_b.html
|
||||||
== acid1_a.html acid1_b.html
|
== acid1_a.html acid1_b.html
|
||||||
== text_decoration_cached.html text_decoration_cached_ref.html
|
== text_decoration_cached.html text_decoration_cached_ref.html
|
||||||
# text_decoration_propagation_a.html text_decoration_propagation_b.html
|
# text_decoration_propagation_a.html text_decoration_propagation_b.html
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 2 KiB |
|
@ -2,35 +2,44 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<style>
|
<style>
|
||||||
|
html {
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
#none{
|
#none{
|
||||||
border-style: none;
|
border-style: none;
|
||||||
border-width: 10px;
|
border-width: 10px;
|
||||||
border-color: green red yellow black;
|
border-color: green red yellow black;
|
||||||
|
width:4096px;
|
||||||
}
|
}
|
||||||
#hidden{
|
#hidden{
|
||||||
border-style: hidden;
|
border-style: hidden;
|
||||||
border-width: 10px;
|
border-width: 10px;
|
||||||
border-color: green red yellow black;
|
border-color: green red yellow black;
|
||||||
|
width:4096px;
|
||||||
}
|
}
|
||||||
#double{
|
#double{
|
||||||
border-style: double;
|
border-style: double;
|
||||||
border-width: 10px;
|
border-width: 10px;
|
||||||
border-color: yellow;
|
border-color: yellow;
|
||||||
|
width:4096px;
|
||||||
}
|
}
|
||||||
#solid{
|
#solid{
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-width: 10px;
|
border-width: 10px;
|
||||||
border-color: yellow;
|
border-color: yellow;
|
||||||
|
width:4096px;
|
||||||
}
|
}
|
||||||
#dashed{
|
#dashed{
|
||||||
border-style: dashed;
|
border-style: dashed;
|
||||||
border-width: 10px;
|
border-width: 10px;
|
||||||
border-color: green yellow black red;
|
border-color: green yellow black red;
|
||||||
|
width:4096px;
|
||||||
}
|
}
|
||||||
#dotted{
|
#dotted{
|
||||||
border-style: dotted;
|
border-style: dotted;
|
||||||
border-width: 10px;
|
border-width: 10px;
|
||||||
border-color: green red yellow black;
|
border-color: green red yellow black;
|
||||||
|
width:4096px;
|
||||||
}
|
}
|
||||||
#groove{
|
#groove{
|
||||||
border-style: groove;
|
border-style: groove;
|
||||||
|
@ -38,7 +47,7 @@
|
||||||
border-color: green red yellow black;
|
border-color: green red yellow black;
|
||||||
position: relative;
|
position: relative;
|
||||||
left: -30px;
|
left: -30px;
|
||||||
width:1024px;
|
width:4096px;
|
||||||
}
|
}
|
||||||
#ridge{
|
#ridge{
|
||||||
border-style: ridge;
|
border-style: ridge;
|
||||||
|
@ -46,7 +55,7 @@
|
||||||
border-color: green red yellow black;
|
border-color: green red yellow black;
|
||||||
position: relative;
|
position: relative;
|
||||||
left: -30px;
|
left: -30px;
|
||||||
width:1024px;
|
width:4096px;
|
||||||
}
|
}
|
||||||
#inset{
|
#inset{
|
||||||
border-style: inset;
|
border-style: inset;
|
||||||
|
@ -54,7 +63,7 @@
|
||||||
border-color: green red yellow black;
|
border-color: green red yellow black;
|
||||||
position: relative;
|
position: relative;
|
||||||
left: -30px;
|
left: -30px;
|
||||||
width:1024px;
|
width:4096px;
|
||||||
}
|
}
|
||||||
#outset{
|
#outset{
|
||||||
border-style: outset;
|
border-style: outset;
|
||||||
|
@ -62,7 +71,7 @@
|
||||||
border-color: green red yellow black;
|
border-color: green red yellow black;
|
||||||
position: relative;
|
position: relative;
|
||||||
left: -30px;
|
left: -30px;
|
||||||
width:1024px;
|
width:4096px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue